MRO (() => Highs[1][0] > Closes[1][0]), that it won't recognize the Highs[1][0] or Closes[1][0] of the secondary series?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
MRO and LRO method for secondary series
Collapse
X
-
MRO and LRO method for secondary series
I see in the Help guide that the MRO and LRO methods do NOT work on multi-series strategies and indicators. So does this mean that if I add a secondary series and have the following:
MRO (() => Highs[1][0] > Closes[1][0]), that it won't recognize the Highs[1][0] or Closes[1][0] of the secondary series?Tags: None
-
Hello Lance El Camino,
MRO / LRO will be looping back on the primary series and not on the secondary series.
Sure you can use those values from the other series, but they may be not the bar relative to the primary bar you think it is and you could run into index errors.
In other words, as it loops back to the previous Closes[0][0] bar, Closes[1][0] may not be the previous bar, depending on if its using the same interval as the primary.Chelsea B.NinjaTrader Customer Service
-
Thanks for the confirmation. A simple workaround is to create a bool that is true on the primary series when a condition is met on the secondary series and apply MRO/LRO to when that variable was last true.
Comment
-
Hello Lance El Camino,
If you need to know when the condition is true looping through the added series indexes, you might just use a loop.
Thats what MRO and LRO are doing internally.
int conditionFoundBarsAgo = -1;
for (int index = 0; index < 10; index++)
{
if ( Highs[1][index] < Closes[1][index] )
{
conditionFoundBarsAgo = index;
}
}
Print(conditionFoundBarsAgo);Chelsea B.NinjaTrader Customer Service
Comment
-
Thank you. Do LowestBar and HighestBar operate in the same way, not being able to use secondary series?
Comment
-
Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by PH_GMT, 02-12-2025, 12:40 PM
|
6 responses
36 views
0 likes
|
Last Post
![]()
by PH_GMT
Today, 10:20 AM
|
||
Started by defa0009, 12-13-2024, 09:19 AM
|
24 responses
263 views
1 like
|
Last Post
![]()
by adtsystems
Today, 10:01 AM
|
||
Started by gustavobp, Yesterday, 05:30 AM
|
2 responses
20 views
0 likes
|
Last Post
![]()
by gustavobp
Today, 07:02 AM
|
||
Started by preqc, 04-10-2022, 01:26 PM
|
2 responses
208 views
0 likes
|
Last Post
![]() |
||
Started by srtrader, 02-12-2025, 09:01 PM
|
3 responses
28 views
0 likes
|
Last Post
![]()
by rockmanx00
Yesterday, 10:21 PM
|
Comment