Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Help converting Tradestation ELA

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

    Help converting Tradestation ELA

    Can anyone please help me converting this Tradestation indicator to NT7?

    It plots 60 minute EMA on 5 minute chart.

    I'm moving over from TS to NT and this is the only one I don't have for NT7 now.

    I know I can use 2nd pane of 60 minute chart and overlay it on 5 minute chart but it looks

    a little awkward and slows down.


    TIA

    Here's ELA code.



    Inputs: length(20);


    If CurrentBar = 240 then Value1 = xaverage(C, 240);

    If CurrentBar > 240 then begin

    If Fracportion((time - 30)/100) = 0 or time =1315 then begin

    value1 = value1[1] + (2 / ( Length + 1 )) * ( C - value1[1] );
    Value2 = value1;
    Plot1(value1, "60 min 20EMA");

    end
    else begin
    Value2 = value1 + (2 / ( Length + 1 )) * ( C - value1[1] );
    Plot1(value2, "60 min 20EMA");
    end;end;
    Last edited by kalalex; 07-01-2011, 04:22 PM.

    #2
    Hi kalalex, we could unfortunately not convert this for you to NinjaScript, but a complete set of tutorials to get started programming custom scripts is located here which should help you get going in this area:

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    24 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    115 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    69 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    225 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    411 views
    0 likes
    Last Post CaptainJack  
    Working...
    X