aveSecondary = SMA(BarsArray[1], secondaryPeriod)[0];
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Calculating an indicator on a secondary instrument with BarsArray
Collapse
X
-
Calculating an indicator on a secondary instrument with BarsArray
When I use the BarsArray to calculate a moving average of a secondary instrument, what data is it using? That is, given the code below, is this an SMA of the Close? What if I want to calculate the SMA of the Typical price instead?
aveSecondary = SMA(BarsArray[1], secondaryPeriod)[0];Tags: None
-
Hi RandomTask,
Thank you for posting.
You are correct, the SMA will use the closing price to calculate the moving average by default unless otherwise specified.
If you want to change the value to a Typical price instead, you will need to changed the BarsArray[1] to -
I made the change in the color red.Code:SMA([COLOR="Red"]Typicals[/COLOR][1], secondaryPeriod)[0];
I am attaching a link to the online help guide on the Typicals series, as well as using Multi-Time frame & Instruments.
http://www.ninjatrader.com/support/h...l?typicals.htm
http://www.ninjatrader.com/support/h...nstruments.htm
Please let me know if I can be of further assistanceCal H.NinjaTrader Customer Service
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
175 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
331 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
253 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
356 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
183 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment