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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
635 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
365 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
106 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
567 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
571 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment