Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Help with converting code

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

    Help with converting code

    Hi How do I do this is Ninja Trader XAverage(Close,MAFast) - XAverage(Close,MASlow) > MAD, is just subtracting two moving averages this is tradestation code

    Thank You

    RM

    #2
    Hello RMin101,

    I went ahead and moved this to a new thread, in the future please ensure to ask new questions you have as new threads instead of replying to older posts.

    To do what you are asking you can essentially use the code you have shown, you just need to use indicators that you have in NinjaTrader. I am not sure what XAverage is, if that is similar to a moving average you could use a SMA or EMA:

    Code:
    double subtractedValue = SMA(MAFast)[0] - SMA(MASlow)[0];
    
    if(subtractedValue > MAD)
    MAD would need to be some kind of double variable, that could be a user input, variable or other indicator.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    599 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    344 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    558 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    557 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X