Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

aotegaoteg

⭐ V.I.P.
  • Posts

    267
  • Joined

  • Last visited

Reputation Activity

  1. Like
    ⭐ aotegaoteg got a reaction from ⭐ Azazel in Emini-Watch TradeStation   
    https://www.sendspace.com/file/fjsswb
  2. Like
    ⭐ aotegaoteg got a reaction from babeonidi 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
  3. 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
  4. Like
    ⭐ aotegaoteg reacted to johnwick in Viper Trading Systems   
    https://gofile.io/d/ZxzFbm
     
    https://www.sendspace.com/file/qmuzjp
     
    ENJOY
  5. 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 } }
  6. Like
    ⭐ aotegaoteg reacted to ⭐ AndyS in BarOver Lap - Chop   
    Did you try asking ChatGPT?
  7. 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/
  8. 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
  9. 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
  10. 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.
  11. Like
    ⭐ aotegaoteg reacted to ⭐ apmoo in altostrading.com/tradetrend   
    https://workupload.com/file/aB6RwpM2sGE
    Enjoy
  12. 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
  13. Like
    ⭐ aotegaoteg reacted to ⭐ topstep in UltimateScalper   
    https://[email protected]/file/g7felx @=a Enjoy
  14. Like
    ⭐ aotegaoteg got a reaction from ⭐ chullankallan in A small gift plus a reuest   
    https://www.sendspace.com/filegroup/...U3PMv6wXZ%2BUw
  15. Like
    ⭐ aotegaoteg got a reaction from TraderGJ in A small gift plus a reuest   
    https://www.sendspace.com/filegroup/...U3PMv6wXZ%2BUw
  16. Like
    ⭐ aotegaoteg got a reaction from fx1trader in A small gift plus a reuest   
    https://www.sendspace.com/filegroup/...U3PMv6wXZ%2BUw
  17. 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
  18. 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
  19. Like
    ⭐ aotegaoteg got a reaction from Esprit1 in Ultimate Renko NT8   
    https://onedrive.live.com/?authkey=%21AITV2dlhneOGvXw&id=F9FE83F179D99584%21484&cid=F9FE83F179D99584
  20. Like
    ⭐ aotegaoteg got a reaction from ⭐ goldeneagle1 in Ultimate Renko NT8   
    https://onedrive.live.com/?authkey=%21AITV2dlhneOGvXw&id=F9FE83F179D99584%21484&cid=F9FE83F179D99584
  21. Like
    ⭐ aotegaoteg got a reaction from Traderbeauty in Ultimate Renko NT8   
    https://onedrive.live.com/?authkey=%21AITV2dlhneOGvXw&id=F9FE83F179D99584%21484&cid=F9FE83F179D99584
  22. Like
    ⭐ aotegaoteg got a reaction from jeank819 in Ultimate Renko NT8   
    https://onedrive.live.com/?authkey=%21AITV2dlhneOGvXw&id=F9FE83F179D99584%21484&cid=F9FE83F179D99584
  23. Like
    ⭐ aotegaoteg got a reaction from jeank819 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
  24. Like
    ⭐ aotegaoteg reacted to ⭐ apmoo in lizardindicators.com   
    https://www43.zippyshare.com/v/h2G1F8dy/file.html
    For those of us with normal ninja LOL
    Thanks for hitting the like
    Be nice if someone can load up the free ones for me Thanks
  25. Like
    ⭐ aotegaoteg reacted to ⭐ apmoo in phoenixtraders.ca   
    https://www77.zippyshare.com/v/69qVo9lx/file.html
    Thanks for hitting the like button.
    Enjoy

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...