Other than using files, what's the best way for indicator1 to access simple data in indicator2?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
indicator communication
Collapse
X
-
indicator communication
if I have indicator1 on the price chart and indicator2 in a separate panel.
Other than using files, what's the best way for indicator1 to access simple data in indicator2?Tags: None
-
-
Any and all data that you want to read external to the class/indicator, you should expose as public.Originally posted by futurenets View Postif I have indicator1 on the price chart and indicator2 in a separate panel.
Other than using files, what's the best way for indicator1 to access simple data in indicator2?
Comment
-
-
Hello futurenets,
Thanks for posting today.
The methods and ideas sledge and koganam have provided will allow you to do what you are trying to accomplish.
Any indicator can access data from another indicator by simply calling it in the indicator method call as the input series.
Here is a sample code from the help guide.
Here is a link to help guide documentation on valid input data for indicator methods. http://www.ninjatrader.com/support/h..._indicator.htmCode:// Printing the current value of the 20 period simple moving average of a 14 period RSI // using a data series of closing prices double value = SMA(RSI(Close, 14), 20)[0]; Print("The current SMA value is " + value.ToString());
Please let us know if we may be of further assistance for anything NinjaTrader.Alex G.NinjaTrader Customer Service
Comment
-
ok thanks. to summarize ...
a chart with IndicatorA and IndicatorB where IndicatorA needs access to IndicatorB data then easiest solution is for IndicatorA to construct another instance of IndicatorB.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
164 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
318 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment