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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    57 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    78 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    41 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    101 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    61 views
    0 likes
    Last Post PaulMohn  
    Working...
    X