Jump to content

AndyS

⭐ V.I.P.
  • Posts

    246
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    ⭐ AndyS got a reaction from MrAdmin in II VIP Membership - FREE upgrade for OLD and ACTIVE Members   
    Thank you for the invitation. I look forward to it. 
  2. Like
    ⭐ AndyS reacted to ⭐ sherbaaz in [GET] stockbee 2023 euro bootcamp   
    below is the link to stockbee 2023 euro boot camp.
    thanks

  3. Like
    ⭐ AndyS reacted to indo37 in StrategyQuantX. Seems educated. Untested.   
    But there are others who claim successful usage of this program:
     
    https://www.statoasis.com/
     
  4. Like
    ⭐ AndyS reacted to indo37 in StrategyQuantX. Seems educated. Untested.   
    Nope! But I know members of his community who gave up on this expensive venture.
  5. Like
    ⭐ AndyS reacted to ninja_on_da_roof in Atl@s Line from D@yTr@deToWin   
    V.3 https://gofile.io/d/QWWE15
    V.4 https://gofile.io/d/LC8ATt
  6. Like
    ⭐ AndyS reacted to ninja_on_da_roof in Atl@s Line from D@yTr@deToWin   
    Did you change time to your time zone? Whatever time you want it to start calculating, that is when it starts to show alerts/signals.
    It works fine and dandy on my side. Just import indicator into your NT8 as normal. It is not "cracked". You don't copy and paste files into bin/custom folder.

  7. Like
    ⭐ AndyS reacted to ninja_on_da_roof in Atl@s Line from D@yTr@deToWin   
    I had this converted to open source code for NT8. You can certainly play with it to change the name of signals/alerts to anything you desire.
    They sell it for almost $1800.
    Here's a gift for you.
    Enjoy.
    https://gofile.io/d/DHoHS9
    PS: if I recall correctly, way way back then, many years ago, we had "legal issues" with this vendor...Administrators, please do remove this post quickly if it is still so, or not "allowed". Thank you.
     
  8. Like
    ⭐ AndyS reacted to ninja_on_da_roof in Atl@s Line from D@yTr@deToWin   
    Please do pull up Youtube to watch for basis stuff in order to use signals correctly as far as for profit targets and stops.
    They use ATR as a mean for targets and stops, as well as to learn about the "time-based" and "catastrophic" stops and so on...
    "S" and "P" are just extra entries stand for "strength" and "pull back". Don't get confused S for short.
  9. Like
    ⭐ AndyS got a reaction from ⭐ mangrad in Trade Module for NT8   
    The link is working, you just need to make sure the second "1" is also changed to "a"
     
  10. Like
    ⭐ AndyS got a reaction from ⭐ epictetus in Trade Module for NT8   
    The link is working, you just need to make sure the second "1" is also changed to "a"
     
  11. Like
    ⭐ AndyS reacted to Obicanobi in BarOver Lap - Chop   
    thanks bro!
  12. Like
    ⭐ AndyS got a reaction from Obicanobi in BarOver Lap - Chop   
    New--->NinjaScript Editor--> click on indicator, then new, then paste
  13. Like
    ⭐ AndyS 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 } }
  14. Like
    ⭐ AndyS reacted to ⭐ laser1000it in BarOver Lap - Chop   
    I have 4Plus at now I don't see any difference (for my use) maybe more faster
  15. Like
    ⭐ AndyS got a reaction from ⭐ aotegaoteg in BarOver Lap - Chop   
    Did you try asking ChatGPT?
  16. Like
    ⭐ AndyS reacted to ⭐ gadfly in Winning in Options with Elliott Waves   
    Unfortunately, the files and links I've been posting here are being shared on Telegram, which does not inspire me to continue sharing. 🙁
     
     
     
  17. Like
    ⭐ AndyS reacted to ⭐ gadfly in Winning in Options with Elliott Waves   
    Todd Gordon - Crash or Correction Class:
    [spoiler=EW-CC]1) http://www.mediafire.com/file/h9iuqwbcyjf47ku
    2) http://www.mediafire.com/file/lio6jq38d7wfcra
    3) http://www.mediafire.com/file/dg46zirlpf5qjjx
     
    Todd Gordon - Hedge Fund Strategies for Trading Options on ETFs:
    [spoiler=ETF-Options]1) https://www.mediafire.com/file/gs6gmpknq8r1udf
    2) https://www.mediafire.com/file/systf99mky878c4
     
    And I had a couple of others, I'll look for them....
  18. Like
    ⭐ AndyS reacted to ⭐ gadfly in [GET} m@rk minervini MTP 2@22   
    Technical analysis based stock pickers like Minervini and the IBD folks results have been dreadful in the current market.
  19. Like
    ⭐ AndyS reacted to ⭐ noyp in Dynamic Trader 8   
    For DT and ASCII Data
     
    hxxps://www.mediafire.com/file/mrpyyf2yvpj7zr5/DTandASCIIData.pdf/file
     
    For DT and eSignal
     
    hxxps://www.mediafire.com/file/k0mmgrhcuyja52y/DTandeSignal.pdf/file
     
    For DT and EOD MetastockDownloader
     
    hxxps://www.mediafire.com/file/u6n1b3lhxjz6xcu/DTandMetastockDownloader.pdf/file
     
    For DT and Tradestation Utility
     
    hxxps://www.mediafire.com/file/hzhgeehhif07f3w/DTandTradeStationUtility.pdf/file
     
    For DT and Genesis EOD Data
     
    hxxps://www.mediafire.com/file/kcsv4mff7yy4jx1/DTandGenesisEODData.pdf/file
     
    For DT and Qcollector
    hxxps://www.mediafire.com/file/66bli56tevysj9j/DTandQcollector.pdf/file
     
  20. Like
    ⭐ AndyS reacted to djanihd in AMS Trading   
    https://e1.pcloud.link/publink/show?code=XZ5H5mZahphxDtrNPHKuPMTDd5axBKdOwrV
  21. Like
    ⭐ AndyS reacted to ⭐ laser1000it in [REQ] [EDUCATE] Flux Trigger Pack (v7.0.1000.14)   
    1=FluxTriggerPack_v7.0.1000.14_[CRACKED]
     
    2=BacktotheFuture FluxCapacitor v.1.2 for Ninjatrader
     
    h**s://[email protected]/file/69ki75jq4bhcxg4/1.zip/file
     
    h**ps://[email protected]/file/nw6ndh8ytemf7e6/2.zip/file
  22. Like
    ⭐ AndyS reacted to traderretail in Thoughts on running NT8 on M1 macbook   
    install a mac with intel i9, if possible with all the supported ram, install windows as operating system, install all the software you need.... its faster than a convecional pc
  23. Like
    ⭐ AndyS reacted to Shenong in Motivewave 6.2.4   
    THANX a Lot to every Bro here, especially to the posters...
     
    Was ill since more than 1 year...
     
    Better NOW...You did all a great JOB...
  24. Like
    ⭐ AndyS got a reaction from Cart Lee in [REQ] Multicharts->Tradestation order bridge   
    I used his bridge that took orders from TS9.5 to IB's TWS. It worked very well. He also fast with support.
  25. Like
    ⭐ AndyS reacted to ⭐ ajeet in ordeflows 3.0   
    ..............................
×
×
  • Create New...