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 bortz, 11-06-2023, 08:04 AM
    47 responses
    1,605 views
    0 likes
    Last Post aligator  
    Started by jaybedreamin, Today, 05:56 PM
    0 responses
    8 views
    0 likes
    Last Post jaybedreamin  
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    18 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    4 views
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    13 views
    0 likes
    Last Post Javierw.ok  
    Working...
    X