Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Strategy adding MTF indicators to chart

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

    Strategy adding MTF indicators to chart

    Hi there,

    I am trying to add a multi-time-frame indicator to my strategy to be displayed on the chart, but currently get display issues when adding the indicator.

    I have the following code under State == State.DataLoaded

    Code:
    testRsi = RSI(BarsArray[1], 14, 3);
    AddChartIndicator(testRsi);
    When calling testRsi in the strategy logic, it is calling the correct data series and entries appear to be ok so know the above BarsArray[1] is working.
    However the AddChartIndicator doesnt seem to reflect the new dataseries/BarsArray on the chart. Only half the RSI is shown historically and is clearly still calculating the RSI on the primary dataseries.

    Am i missing a step here?

    Thanks

    #2
    Hello mr_trade,

    From the help guide:
    "An indicator being added via AddChartIndicator() cannot use any additional data series hosted by the calling strategy, but can only use the strategy's primary data series. If you wish to use a different data series for the indicator's input, you can add the series in the indicator itself and explicitly reference it in the indicator code (please make sure though the hosting strategy has the same AddDataSeries() call included as well)"


    This means to use AddDataSeries() you would not be able to supply BarsArray[1]. Instead, internally add the series with AddDataSeries() in the indicator and strategy.
    Below is a link to an example.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks Chelsea, i did have this downloaded but your explanation around this now makes more sense what I need to do. Thank you! Will give it a go.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Today, 05:17 AM
      0 responses
      23 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      120 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      63 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      41 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      45 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X