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

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 GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,227 views
    0 likes
    Last Post xiinteractive  
    Started by andrewtrades, Today, 04:57 PM
    1 response
    13 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    7 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    440 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    12 views
    0 likes
    Last Post FAQtrader  
    Working...
    X