Can someone create this for me and post it. I'd be very grateful. Thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
ninjatrader won't allow me to make a basic strategy
Collapse
X
-
ninjatrader won't allow me to make a basic strategy
Trying to make a strategy that plays an alert when the high of the current bar is <= the high of the previous bar AND when the low of the current bar is >= the low of the previous bar.
Can someone create this for me and post it. I'd be very grateful. Thanks.Tags: None
-
Mattismyth,
I am happy to assist you.
Are wanting to program this strategy or are you relying on the Strategy Wizard? Will the strategy do anything other than alerts? If not, please use the strategy I created for you attached.
In the Strategy Wizard, after you get past the "General" and "User Defined Inputs" sections by clicking "next", you can create a condition by selecting "Add", then setting up a current High is <= the High of previous bar condition. Then in the "Do the following" section, click "Add" > go to Misc > Alert. Then you can set up all the necessary parameters such as its priority, the message it displays, the sound it makes when triggered, etc.
If you are trying to code it yourself, you will want something like the following :
For more information on the Strategy Wizard, please see the link below.Code:if ( High[0] <= High[1] ) { Alert("Current High <= previous High!", NinjaTrader.Cbi.Priority.High, "H0<=H1", "Alert1.wav",10, Color.Red, Color.Yellow); } if ( Low[0] >= Low[1] ) { Alert("Current Low >= previous Low!", NinjaTrader.Cbi.Priority.High, "L0>=L1", "Alert1.wav",10, Color.Blue, Color.Yellow); }
For more information on Alert(), please see the link below.
Please let me know if I can assist further.Attached FilesAdam P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
60 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
146 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
161 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
97 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
284 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment