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:

    BertrandNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by burtoninlondon, Today, 12:38 AM
    0 responses
    10 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    14 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    11 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    14 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,983 views
    3 likes
    Last Post jhudas88  
    Working...
    X