if (Position.MarketPosition == MarketPosition.Flat && CrossAbove(Close, highestHigh, 1)) EnterLong();
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
CrossAbove
Collapse
X
-
could you tell me what the difference would be in terms of catching a cross above?
CrossAbove(Close, highestHigh, 0) vs CrossAbove(Close, highestHigh, 1)
maybe this should be another topic? but would
if (Time[0].TimeOfDay >= endOfDay.TimeOfDay)
catch the end of day as soon as the current tick time was >= endOfDay.TimeOfDay?Last edited by dibDab; 10-16-2023, 09:33 AM.
Comment
-
Hello dibDab,
You would have to make a condition that checks if the Close is less than or greater than a variable. After doing that check you would set the close to the variable again to repeat that process. The CrossAbove and Below rely on the bar data, you never would be comparing two ticks when using bar data as you only have access to the current tick or the previous bars close depending on the BarsAgo used.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
58 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
34 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
195 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
361 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
281 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment