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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    72 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    39 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X