So I wanted to ask, How I can place a Buy order (Long-Position) if the intraday-high is higher then the last 5 days intraday-high?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Order when Intraday high is higher then the last 5 days
Collapse
X
-
So:
would be correct?Code:protected override void OnBarUpdate() { if(PriorDayOHLC().PriorHigh[0] > PriorDayOHLC().PriorHigh[5]) { EnterLong("order placed!"); } }
Originally posted by NinjaTrader_ChrisL View PostHello SpaceGrey,
Thanks for the note.
You can do this with the PriorDayOHLC indicator to get the high for each day, for 5 days
Once you have the High values for each day, compare each value to the High[0] value.
Please let me know if I can assist further.
Comment
-
Hello SpaceGrey,
Thanks for the reply.
It would look something more like this.
Please let me know if I can assist further.Code:private bool flag = false; // at the class level ... protected override void OnBarUpdate() { if(CurrentBars[0] < 5) return; for(int i = 1; i <= 5; ++i) { Print(PriorDayOHLC().PriorHigh[i]); if(PriorDayOHLC().PriorHigh[i] < High[0]) { flag = true; //Enter long if(flag) } else { continue; } } ... }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
54 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
29 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
40 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
47 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment