New to Ninja. I want to create a generic function like moving average but I want to be able to access it for different timeframes. How would I do that?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Data from another timeframe
Collapse
X
-
Data from another timeframe
Hello,
New to Ninja. I want to create a generic function like moving average but I want to be able to access it for different timeframes. How would I do that?Tags: None
-
Data from another timeframe
Hello sunman4008,
Thanks for writing in to our Support team.
You can use the BarsArray method to access data series that were added via the AddDataSeries() method.
For further reference, you can refer to this link to our help guide that goes over the BarsArray object:Code:protected override void OnStateChange() { if (State == State.SetDefaults) { Name = "Examples Indicator"; } else if (State == State.Configure) { // Add a 5 minute Bars object which is added to the BarArray // which will take index 1 since the primary Bars object of the strategy // will be index 0 AddDataSeries(BarsPeriodType.Minute, 5); } } protected override void OnBarUpdate() { // Ignore bar update events for the supplementary Bars object added above if (BarsInProgress == 1) return; // Pass in a Bars object as input for the simple moving average method // Evaluates if the 20 SMA of the primary Bars is greater than // the 20 SMA of the secondary Bars added above if (SMA(20)[0] > SMA(BarsArray[1], 20)[0]) EnterLong(); }
http://ninjatrader.com/support/helpG.../barsarray.htm
You can also refer to this forum post that goes over how to submit orders to different bar objects/time frames:
http://ninjatrader.com/support/forum...ead.php?t=5787
You should also keep in mind that when accessing a secondary data series it is sometimes necessary to wait for data using
Please let me know if I may be of any further assistance.Code:if(CurrentBars[0] < 1 || CurrentBars[1] < 1) return;
Alan S.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
81 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
55 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment