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 pechtri, 06-22-2023, 02:31 AM
      10 responses
      124 views
      0 likes
      Last Post Leeroy_Jenkins  
      Started by judysamnt7, 03-13-2023, 09:11 AM
      4 responses
      59 views
      0 likes
      Last Post DynamicTest  
      Started by ScottWalsh, Yesterday, 06:52 PM
      4 responses
      36 views
      0 likes
      Last Post ScottWalsh  
      Started by olisav57, Yesterday, 07:39 PM
      0 responses
      7 views
      0 likes
      Last Post olisav57  
      Started by trilliantrader, Yesterday, 03:01 PM
      2 responses
      22 views
      0 likes
      Last Post helpwanted  
      Working...
      X