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 habeebft, Today, 07:27 AM
      0 responses
      1 view
      0 likes
      Last Post habeebft  
      Started by Tim-c, Today, 03:54 AM
      1 response
      7 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by rocketman7, Today, 01:00 AM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by wzgy0920, 04-23-2024, 09:53 PM
      3 responses
      76 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by JonesJoker, 04-22-2024, 12:23 PM
      9 responses
      46 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Working...
      X