Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

confused about accessing another indicator's values

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

    confused about accessing another indicator's values

    I would like to simply get values of another indicator that is already on the Chart.

    All examples I've come across seem to be calculating a new indicator.

    I just want to access values that are displayed in the DataBox.

    How can I do this?

    I don't want to create a new instance at runtime of the indicator just to read the data, because the properties will not be configured the same as on the chart, unless I code that in.

    How can I do this?

    #2
    Hello NinjaCustomer,

    Thank you for your post.

    There is no supported method to accomplish this.

    However, there is an unsupported method for going through the ChartControl.Indicators collection and checking for certain indicators and then getting their values.
    Code:
    			foreach(Indicator i in ChartControl.Indicators)
    			{
    				if(i.Name == "SMA")
    					Print(i.Value[0]);
    			}
    Please note that due to unsupported code I would not be able to assist in debugging or have any documentation on the subject.

    Let me know if I can be of further assistance.
    Cal H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    563 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    329 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    547 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    548 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X