Thanks, SSP
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy to pick from list
Collapse
X
-
Strategy to pick from list
Could someone point me to a strategy example to pick the strongest or weakest symbol from a list of symbols based on an indicator value? For example, DJ-30 is a list, RSI14 is the indicator, each time frame (daily, weekly, monthly) the strategy re-evaluates the list and picks the one symbol with weakest RSI14 to purchase.
Thanks, SSPTags: None
-
Hello skidsteerpilot,
Thank you for your note.
I’m unaware of such strategy however you could add a data series for each symbol you’d like to check through using,
Then you would you could write a series of if statements to determine the weakest RSI, for example you check if the RSI of the 2nd series is lower than the third and 4th,
I would suggest seeing the SampleMultiInstrument strategy preloaded with NinjaTrader for a strategy with additional series added.Code:if(RSI(BarsArray[1], 10)[0] < RSI(BarsArray[2], 10)[0] && RSI(BarsArray[2], 10)[0] < RSI(BarsArray[3], 10)[0]) //use second instrument added.
Please let us know if you need further assistance.Alan P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
59 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
41 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
46 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
37 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|
||
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
157 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|

Comment