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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
51 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
142 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
160 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
96 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
275 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment