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 sjsj2732, 03-23-2026, 04:31 AM
    0 responses
    89 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    324 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    331 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    155 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    122 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X