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 CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
52 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
32 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
194 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
355 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
274 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment