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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    154 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    306 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    244 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    345 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    176 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X