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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
81 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
55 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment