Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Multi timeframe indicator

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

    Multi timeframe indicator

    Hello

    I am trying to create a simple multi time frame indicator. Lets say I want to calculate 3 day and 5 day moving averages so I did the following:

    In Initialize():

    Add(PeriodType.Day, 3);
    Add(PeriodType.Day, 5);

    In OnBarUpdate()

    if (CurrentBar< 30) return;

    if (BarsInProgress == 1)
    Plot1.Set(EMA(BarsArray[1], 10)[0]);
    else if (BarsInProgress == 2)
    Plot2.Set(EMA(BarsArray[2], 10)[0]);

    So if current time interval for the chart is "day", I get empty space in indicator, but if current time frame is "week" or "month", I get 2 lines as expected. However, one line has breaks (empty spaces). Please see attached images.

    My goal is to have these two EMAs for charts with any time interval.

    And I use ver 7.
    Attached Files

    #2
    Hi sergeysamsonov,

    In this case, you will not want to Plot from each BIP, rather just each Plot.Set() in the smallest (lowest interval) BIP.
    TimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    43 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    25 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    163 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    98 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    158 views
    2 likes
    Last Post CaptainJack  
    Working...
    X