Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to get data from OrderFlow Chart Indicator
Collapse
X
-
How to get data from OrderFlow Chart Indicator
Hello everyone! I am using 3d party OrderFlow Chart indicator for my automated strategy and i wonder if anyone knows how to get certain data from the indicator and save it to a variable. Thank you. -
Hello Sharkomax,
Thank you for your inquiry and welcome to the NinjaTrader Support forum!
To answer your question:
To obtain data from an indicator in a strategy, you will want to call that indicator. Here's an example to assign a variable to the current value of a 40 period SMA:
Please, let us know if we may be of further assistance.Code:private double indicatorValue; protected override void OnBarUpdate() { indicatorValue = SMA(40)[0]; }Zachary G.NinjaTrader Customer Service
-
How do i know what is the name of the 3rd party indicator which didnt come with standart NinjaTrader indicators?Originally posted by NinjaTrader_ZacharyG View PostHello Sharkomax,
Thank you for your inquiry and welcome to the NinjaTrader Support forum!
To answer your question:
To obtain data from an indicator in a strategy, you will want to call that indicator. Here's an example to assign a variable to the current value of a 40 period SMA:
Please, let us know if we may be of further assistance.Code:private double indicatorValue; protected override void OnBarUpdate() { indicatorValue = SMA(40)[0]; }
Comment
-
Hello Sharkomax,
Please open a chart and open the Indicators window by right-clicking on the chart and selecting Indicators.
The indicator name you will use for your third party indicator will be listed here.
Please, let us know if we may be of further assistance.Zachary G.NinjaTrader Customer Service
Comment
-
Originally posted by Sharkomax View PostHello everyone! I am using 3d party OrderFlow Chart indicator for my automated strategy and i wonder if anyone knows how to get certain data from the indicator and save it to a variable. Thank you.
SOLVED!
Adding a Reference - You will now be able to access the indicator methods provided by the 3rd party vendor
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
27 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
183 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
335 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
260 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment