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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
47 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
15 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
21 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
23 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment