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

How to access indicators on a chart with multiple data series?

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

    How to access indicators on a chart with multiple data series?

    I have a single chart with 3 Data Series being plotted. Each one has the same 2 Indicators but with different parameters.

    I need to run a single strategy on it and need access to the 6 in total indicators. I am using a custom strategy that was initially created with the Strategy Builder.

    I use the following to get them using an undocumented feature. The indicators are added in a set sequence so I know what index that are at. If I call the following I get a pointer to the Indicator and the following fails with the CrossAbove test.

    Code:
    AxonStochastic = ChartControl.Indicators[0] as AxonStochastic;
    This returns a valid pointer and I can see from the debugger a count of 11000+ for the Data Series I have selected.

    Code:
    CrossAbove(AxonStochastic.A, AxonStochastic.B, 1);
    Error from above is:

    An exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll but was not handled in user code

    Additional information: Index was out of range. Must be non-negative and less than the size of the collection.

    #2
    Hello davemclaughlin,

    We may have a bug that needs to be reported, but I am not able to report errors that occur when using undocumented code.

    Are you able to reproduce this error using documented methods?
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by ender_wiggum, Today, 09:50 AM
    1 response
    5 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by rajendrasubedi2023, Today, 09:50 AM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by geotrades1, Today, 10:02 AM
    0 responses
    4 views
    0 likes
    Last Post geotrades1  
    Started by bmartz, Today, 09:30 AM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by geddyisodin, Today, 05:20 AM
    3 responses
    25 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X