if ( Condition1 && current price < EMA+10ticks )
{
Enterlong()
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
enter if within x ticks of EMA
Collapse
X
-
enter if within x ticks of EMA
I'd like to add a condition where a trade will trigger long only if it is 10 ticks or fewer away from the EMA.
What would be the correct/best way to write this?Code:Tags: None
-
Hello,
Thanks for your post.
if (Condition1 && Close[0] < (EMA(period)[0] + 10 * TickSize))
{
EnterLong();
}
In the code example, period would be whatever period of EMA you are using. The example shows using the Close price, you could also substitute High or Low depending on your needs.
Reference: http://ninjatrader.com/support/helpG...m?ticksize.htm
Edit: Added helpguide reference to TickSize
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
386 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
253 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
212 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
299 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
263 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment