Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      578 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      334 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
      554 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