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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
332 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment