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

Nested moving averages?

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

    Nested moving averages?

    Greetings,

    I'm trying to convert the following line of code to NT, it's a bit confusing because it uses "nested" EMA's:

    SMI:= 100 * (Mov(Mov(C-(0.5 * (HHV(H,lp) + LLV(L,lp))),sm,E),dsmp,E) / (0.5 * Mov(Mov(HHV(H,lp) - LLV(L,lp),sm,E),dsmp,E)));

    Here's what I wrote, it compiles just fine but my question is whether the logic has been properly duplicated?

    FirstInside.Set(Close[0] - (0.5 * (MAX(High, Lp)[0] + MIN(Low, Lp)[0])));
    Inside1 = EMA(FirstInside, Sm)[0];
    FirstInside2.Set(Inside1);
    Inside12 = EMA(FirstInside2, Dsmp)[0];
    SecondInside.Set(MAX(High, Lp)[0] - MIN(Low, Lp)[0]);
    Inside2 = EMA(SecondInside, Sm)[0];
    SecondInside2.Set(Inside2);
    Inside22 = 0.5 * (EMA(SecondInside2, Dsmp)[0]);

    SMI_VALUE = 100 * (Inside12 / Inside22);

    Thanks in advance for any confirmation/comments..etc...

    #2
    Metastock code? I am not too familiar with metastock functions, but the code you have produced looks correct to me.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Thanks for the response. Actually the code is VT Trader...

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by f.saeidi, Today, 08:01 PM
      0 responses
      1 view
      0 likes
      Last Post f.saeidi  
      Started by Rapine Heihei, Today, 07:51 PM
      0 responses
      3 views
      0 likes
      Last Post Rapine Heihei  
      Started by frslvr, 04-11-2024, 07:26 AM
      5 responses
      96 views
      1 like
      Last Post caryc123  
      Started by algospoke, 04-17-2024, 06:40 PM
      6 responses
      49 views
      0 likes
      Last Post algospoke  
      Started by arvidvanstaey, Today, 02:19 PM
      4 responses
      11 views
      0 likes
      Last Post arvidvanstaey  
      Working...
      X