Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SMA EMA Cross

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

    SMA EMA Cross

    Hi,

    I want to add to my strategy something like

    if ema xy crosses sma xy during the last 30 days
    do something

    does anyone know how the correct syntax looks like ?

    regards ali

    #2
    Hello ali321,

    You can use CrossAbove() or CrossBelow() to define a crossing condition.

    An SMA crossing above and EMA within the last 30 bars looks like this:
    Code:
     
     
    if (CrossAbove(SMA(14), EMA(14), 30))
    If you don't care about the direction of the crossing, you could add || to look for crossing in both directions.

    Code:
    if (CrossAbove(SMA(14), EMA(14), 30) || CrossBelow(SMA(14), EMA(14), 30))
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    574 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    332 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    553 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    551 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X