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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
163 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
82 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
125 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
206 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
185 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment