Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
price touches bollinger. but would like 5 ticks before
Collapse
X
-
price touches bollinger. but would like 5 ticks before
i'm attempting to code a strategy that has a candle come close to a bollinger line that calls for an entry. the thing is i don't want to enter on price touching the line. i want to enter on price within 5 ticks of the line. is there logic for this?Tags: None
-
Hello SteveReiza,
Thanks for your post.
You could consider offsetting the Bollinger indicator by 5 ticks to see if the current market price (Close) is say equal to that value.
TickSize would be used to offset a value by a set number of ticks.
For example, Bollinger(2, 20).Lower[0] - 5 * TickSize would be 5 ticks below the lower Bollinger band.
if (Close[0] == Bollinger(2, 20).Lower[0] - 5 * TickSize)
{
//do something
}
See the help guide documentation below for more information.
Bollinger Bands: https://ninjatrader.com/support/help...nger_bands.htm
TickSize: https://ninjatrader.com/support/help...8/ticksize.htm<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
54 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
25 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
17 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
23 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
24 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment