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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
570 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
548 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
548 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment