Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 junkone, 04-28-2024, 02:19 PM
      8 responses
      90 views
      1 like
      Last Post brucerobinson  
      Started by mkouitra, 10-23-2021, 04:40 PM
      17 responses
      1,961 views
      0 likes
      Last Post NinjaTrader_Jason  
      Started by Vietanhnguyen2hotmailcom, 05-03-2024, 10:29 AM
      4 responses
      29 views
      0 likes
      Last Post Vietanhnguyen2hotmailcom  
      Started by PhillT, 04-19-2024, 02:16 PM
      4 responses
      37 views
      0 likes
      Last Post PhillT
      by PhillT
       
      Started by ageeholdings, 05-01-2024, 05:22 AM
      5 responses
      39 views
      0 likes
      Last Post ageeholdings  
      Working...
      X