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 geddyisodin, Today, 05:20 AM
      1 response
      11 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by Max238, Today, 01:28 AM
      3 responses
      32 views
      0 likes
      Last Post Max238
      by Max238
       
      Started by timko, Today, 06:45 AM
      2 responses
      13 views
      0 likes
      Last Post NinjaTrader_ChristopherJ  
      Started by habeebft, Today, 07:27 AM
      0 responses
      6 views
      0 likes
      Last Post habeebft  
      Started by Tim-c, Today, 03:54 AM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X