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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
59 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
143 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
161 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
97 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
276 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment