Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Question for Multiple MA crossover strategy

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Question for Multiple MA crossover strategy

    Is there a way to do a multiple MA crossovers with out having 2 of my slows/dummies crossing over at the same time? The blue requires a string, which cannot be conditional (but that is what I need). The red compiles, but does not work because it requires all to cross at the same time, not what I need.

    #region Variables
    private int fast = 5;
    private int dumb = 3;
    private int dumber = 2;
    private int slow = 17;


    protected override void OnBarUpdate()
    {

    if ((Bars.BarsSinceSession > Slow) && (CrossAbove(VWMA(Fast), VWMA(Slow), 1))&&((VWMA(Dumb)> VWMA(Slow)))&&((VWMA(Dumber)> VWMA(Slow))))
    EnterLong();

    else if ((Bars.BarsSinceSession > Slow) && (CrossBelow(VWMA(Fast), VWMA(Slow), 1))&&((VWMA(Dumb)> VWMA(Slow)))&&((VWMA(Dumber)> VWMA(Slow))))
    EnterShort();

    }

    {
    if ((Bars.BarsSinceSession > Slow) && (CrossAbove(VWMA(Fast), VWMA(Slow), 1))&&(CrossAbove(VWMA(Dumb), VWMA(Slow),1))&&(CrossAbove(VWMA(Dumber), VWMA(Slow),1)))
    EnterLong();

    else if ((Bars.BarsSinceSession > Slow) && (CrossBelow(VWMA(Fast), VWMA(Slow), 1))&&(CrossBelow(VWMA(Dumb),VWMA(Slow),1))&&(Cross Below(VWMA(Dumber), VWMA(Slow),1)))
    EnterShort();

    }

    TIA

    #2
    wprosser,

    Please see my response to your existing thread already started for this:
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    169 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    324 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    250 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    353 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    180 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X