Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 Vietanhnguyen2hotmailcom, Yesterday, 10:29 AM
    4 responses
    23 views
    0 likes
    Last Post Vietanhnguyen2hotmailcom  
    Started by PhillT, 04-19-2024, 02:16 PM
    4 responses
    35 views
    0 likes
    Last Post PhillT
    by PhillT
     
    Started by ageeholdings, 05-01-2024, 05:22 AM
    5 responses
    37 views
    0 likes
    Last Post ageeholdings  
    Started by reynoldsn, Today, 02:34 PM
    0 responses
    13 views
    0 likes
    Last Post reynoldsn  
    Started by nightstalker, Today, 02:05 PM
    0 responses
    23 views
    0 likes
    Last Post nightstalker  
    Working...
    X