Jump to content

aotegaoteg

⭐ V.I.P.
  • Posts

    233
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    ⭐ aotegaoteg got a reaction from MrAdmin in II VIP Membership - FREE upgrade for OLD and ACTIVE Members   
    I would appreciate to be upgraded to VIP Thank you
  2. Like
    ⭐ aotegaoteg reacted to ⭐ levelupdown in Can anybody educate best0rderflow.com trial indicator?   
    Hi here i am attaching the bestorderflow.com trial.
    can anyone deobfuscate it and share?
    https://best0rderflow.com/images/tri...rflowTRIAL.zip
    replace 0 with o (alphabet o) in the url
  3. Like
    ⭐ aotegaoteg got a reaction from ⭐ tick in Binance ninja trader 8 connector   
    https://ninjacoding.net/ninjatrader/adapters/Binance
  4. Like
    ⭐ aotegaoteg got a reaction from hybrid76 in Rightline trading EDU   
    https://www.sendspace.com/file/en4m4a
     
    untest, provide your feedback
  5. Like
    ⭐ aotegaoteg got a reaction from ⭐ Azazel in Emini-Watch TradeStation   
    https://www.sendspace.com/file/fjsswb
  6. Like
    ⭐ aotegaoteg got a reaction from khnco in Emini-Watch TradeStation   
    https://www.sendspace.com/file/fjsswb
  7. Like
    ⭐ aotegaoteg got a reaction from ⭐ mesagio in Emini-Watch TradeStation   
    https://www.sendspace.com/file/fjsswb
  8. Like
    ⭐ aotegaoteg got a reaction from ⭐ al2008 in [GET] @dvanced get soft+pdf+python   
    correct link https://www.mediafire.com/file/oomgv671n7rfic6/Advanced_GET_9.1_EOD_Dashboard_Edition_Work.rar/file
  9. Like
    ⭐ aotegaoteg got a reaction from ⭐ option trader in [GET] @dvanced get soft+pdf+python   
    correct link https://www.mediafire.com/file/oomgv671n7rfic6/Advanced_GET_9.1_EOD_Dashboard_Edition_Work.rar/file
  10. Like
    ⭐ aotegaoteg reacted to johnwick in Viper Trading Systems   
    https://gofile.io/d/ZxzFbm
     
    https://www.sendspace.com/file/qmuzjp
     
    ENJOY
  11. Like
    ⭐ aotegaoteg reacted to imfm in BarOver Lap - Chop   
    enjoy! FULL NT8 COMPATIBLE
     

     

    #region Using declarations using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; using System.Windows.Media; using System.Xml.Serialization; using NinjaTrader.Cbi; using NinjaTrader.Gui; using NinjaTrader.Gui.Chart; using NinjaTrader.Gui.SuperDom; using NinjaTrader.Gui.Tools; using NinjaTrader.Data; using NinjaTrader.NinjaScript; using NinjaTrader.Core.FloatingPoint; using NinjaTrader.NinjaScript.DrawingTools; using NinjaTrader.NinjaScript.Indicators; using System.Windows.Shapes; using NinjaTrader.Gui.Chart; using NinjaTrader.NinjaScript.DrawingTools; #endregion // This namespace holds all indicators and is required. Do not change it. namespace NinjaTrader.NinjaScript.Indicators { /// <summary> /// The bar overlap indicator counts the number of bars that overlap with the current bar's range. /// </summary> public class BarOverlap : Indicator { #region Variables private int period = 100; private double numStdDev = 2.0; private Brush baseColor = Brushes.SlateBlue; private Brush signalColor = Brushes.Red; private int plot0Width = 4; private PlotStyle plot0Style = PlotStyle.Bar; private DashStyleHelper dash0Style = DashStyleHelper.Solid; #endregion protected override void OnStateChange() { if (State == State.SetDefaults) { Description = "The bar overlap indicator counts the number of bars that overlap with the current bar's range."; Name = "BarOverlap"; AddPlot(new Stroke(baseColor, plot0Width), plot0Style, "Overlap"); IsOverlay = false; } else if (State == State.DataLoaded) { // SetPlotAppearance(Plots[0], baseColor, plot0Width, dash0Style); } } protected override void OnBarUpdate() { int n = 0; while (n < CurrentBar) { if (Low[0] >= High[n] || High[0] <= Low[n]) break; n = n + 1; } Value[0] = n; if (Value[0] > SMA(Value, period)[0] + numStdDev * StdDev(Value, period)[0]) PlotBrushes[0][0] = signalColor; else PlotBrushes[0][0] = baseColor; } private void SetPlotAppearance(Plot plot, Brush brush, int width, DashStyleHelper dashStyle) { plot.Pen = new Pen(brush, width) { DashStyle = DashStyleHelperToDashStyle(dashStyle) }; } private DashStyle DashStyleHelperToDashStyle(DashStyleHelper dashStyleHelper) { switch (dashStyleHelper) { case DashStyleHelper.Dash: return DashStyles.Dash; case DashStyleHelper.DashDot: return DashStyles.DashDot; case DashStyleHelper.DashDotDot: return DashStyles.DashDotDot; case DashStyleHelper.Dot: return DashStyles.Dot; case DashStyleHelper.Solid: return DashStyles.Solid; default: return DashStyles.Solid; } } protected override void OnRender(ChartControl chartControl, ChartScale chartScale) { base.OnRender(chartControl, chartScale); Plots[0].Pen = new Pen(baseColor, plot0Width) { DashStyle = DashStyleHelperToDashStyle(dash0Style) }; } #region Properties [browsable(false)] [XmlIgnore()] public Series<double> Overlap { get { return Values[0]; } } [NinjaScriptProperty] [Display(Name = "NumStdDev", GroupName = "NinjaScriptParameters", Order = 1)] public double NumStdDev { get { return numStdDev; } set { numStdDev = Math.Max(0, value); } } [NinjaScriptProperty] [Display(Name = "BaseColor", GroupName = "NinjaScriptParameters", Order = 2)] public Brush BaseColor { get { return baseColor; } set { baseColor = value; } } [NinjaScriptProperty] [Display(Name = "SignalColor", GroupName = "NinjaScriptParameters", Order = 3)] public Brush SignalColor { get { return signalColor; } set { signalColor = value; } } [NinjaScriptProperty] [Display(Name = "Plot0Width", GroupName = "NinjaScriptParameters", Order = 4)] public int Plot0Width { get { return plot0Width; } set { plot0Width = Math.Max(1, value); } } [NinjaScriptProperty] [Display(Name = "Plot0Style", GroupName = "NinjaScriptParameters", Order = 5)] public PlotStyle Plot0Style { get { return plot0Style; } set { plot0Style = value; } } [NinjaScriptProperty] [Display(Name = "Dash0Style", GroupName = "NinjaScriptParameters", Order = 6)] public DashStyleHelper Dash0Style { get { return dash0Style; } set { dash0Style = value; } } #endregion } }
  12. Like
    ⭐ aotegaoteg reacted to ⭐ AndyS in BarOver Lap - Chop   
    Did you try asking ChatGPT?
  13. Like
    ⭐ aotegaoteg reacted to Traderbeauty in REQ: Neurostreet -ARC indicators   
    Hello Friends
    Neurostreet ( which had a differnet name before-cant remember it lol ) either changed their name again to ARC or maybe partnered with them.
    They do have new indicators like Anchored Vwap and some automatic algos.
    Would love any of you to share some feedback and maybe even the indicators if possible.
    Thank you all in advance
    Traderbeauty-Jane
     
     
    https://architectsai.com/
  14. Like
    ⭐ aotegaoteg reacted to ⭐ MOF NET in SHARE..MY CRISTMAST GIFT TO ALL INDO FRIENDS (Sentient Trader CRACKED)..enjoy   
    here is new mirror

    https://multiup.org/730fb6e4b1c86283f4fad6fcfade492d https://multiup.org/41c414711cabf2b45f3095b6807c4e9b
  15. Like
    ⭐ aotegaoteg reacted to ⭐ Aurel88 in Videos Trader Dale   
    Hello everyone, Here are the videos of Trader Dale
     
    https://mega.nz/folder/EEFGnZob#GSt3V9E4FkpqFHURWdbFmA
     
    Good day and good trading to all
  16. Like
    ⭐ aotegaoteg reacted to ⭐ laser1000it in (Req) rext v4 reitmic crack data feed   
    Learning Reversal Engineering is not easy, it takes a lot of study and I believe that hard work should be compensated.
     
    What I detest is that someone became rich thanks to this forum, which has many members because in the past there were many who helped it grow with their free contributions.
  17. Like
    ⭐ aotegaoteg reacted to ⭐ apmoo in altostrading.com/tradetrend   
    https://workupload.com/file/aB6RwpM2sGE
    Enjoy
  18. Like
    ⭐ aotegaoteg reacted to incomehack in NinjaTrader 8 - Devil Pack & CRACKED NINJATRADER 8   
    NinjaTrader 8 - Devil Pack & CRACKED NINJATRADER 8
    https://tradedevils-indicators.com/collections/packages
     
    Link download: https://mega.nz/file/qchgXT5L#_2yBqKHMpzpAa57W_LefkH_teZjtAwA4FXYvhfUhjK8
     
    Have fun. Longtime don't show up in forum. I would love share something good
  19. Like
    ⭐ aotegaoteg reacted to ⭐ topstep in UltimateScalper   
    https://[email protected]/file/g7felx @=a Enjoy
  20. Like
    ⭐ aotegaoteg got a reaction from ⭐ chullankallan in A small gift plus a reuest   
    https://www.sendspace.com/filegroup/...U3PMv6wXZ%2BUw
  21. Like
    ⭐ aotegaoteg got a reaction from TraderGJ in A small gift plus a reuest   
    https://www.sendspace.com/filegroup/...U3PMv6wXZ%2BUw
  22. Like
    ⭐ aotegaoteg got a reaction from fx1trader in A small gift plus a reuest   
    https://www.sendspace.com/filegroup/...U3PMv6wXZ%2BUw
  23. Like
    ⭐ aotegaoteg got a reaction from ⭐ al2008 in Anton Kreil – IPLT Introduction to Professional Level Trading 2021   
    https://hot4share.com/3qn0tgrudfs0/ProfessionalLevelTrading2021.part1.rar.html
    https://hot4share.com/0x18hjwi913u/ProfessionalLevelTrading2021.part2.rar.html
    https://hot4share.com/jqrpgd6hqs7t/ProfessionalLevelTrading2021.part3.rar.html
    Rapidgator-->Click Link PeepLink Below Here Contains Rapidgator
    http://peeplink.in/decf529ceb2d
    Uploadgig
    https://uploadgig.com/file/download/C7e9913444613466/ProfessionalLevelTrading2021.part1.rar
    https://uploadgig.com/file/download/fb70e2B8d8ea1E0A/ProfessionalLevelTrading2021.part2.rar
    https://uploadgig.com/file/download/36928b34fb97F1a8/ProfessionalLevelTrading2021.part3.rar
    NitroFlare
    https://nitro.download/view/3FB8FF6CE8E6BDA/ProfessionalLevelTrading2021.part1.rar
    https://nitro.download/view/0EF34150D79F1D9/ProfessionalLevelTrading2021.part2.rar
    https://nitro.download/view/969F907D3EC91A7/ProfessionalLevelTrading2021.part3.rar
  24. Like
    ⭐ aotegaoteg got a reaction from ⭐ moneyshare in Using Tradestation as NT8 datafeed   
    https://ninjatrader.com/support/helpGuides/nt8/?tradestation_email_integration.htm
     
    https://ninjatrader.com/support/forum/forum/ninjatrader-8/platform-technical-support-aa/1109916-tradestation-as-data-feed-realtime-and-historical-for-nt8
  25. Like
    ⭐ aotegaoteg got a reaction from Esprit1 in Ultimate Renko NT8   
    https://onedrive.live.com/?authkey=%21AITV2dlhneOGvXw&id=F9FE83F179D99584%21484&cid=F9FE83F179D99584
×
×
  • Create New...