Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
identifying full range bars
Collapse
X
-
Tags: None
-
Hi Simon Thompson,
Shouldn't be too difficult, unless I misunderstand the exercise. No NinjaScript required. StrategyBuilder will do.
ad 1)
White Marubozu: Close > Open and Open = Low (+ optional offset) and Close = High (- optional offset)
Black Marubozu: Close < Open and Open = High (- optional offset) and Close = Low (+ optional offset).
If Marubozu, draw background and set your bool bMarubozu to true.
ad 2)
Then check your additional entry logic. If true, enter the trade and set your bool bMarubozu to false (to be able to start over).
If you wanted your Marubozu trigger only to be valid for a certain number of bars, add an int Input "valid for n bars" and a custom int variable "valid until".
When bMarubozu is true, grab the number of the current bar, add your "valid for n bars" and set your variable "valid until" accordingly.
Then, before enterering the trade while your bool bMarubozu is still true, check if the Marubozu signal is still "fresh" enough for a trade. If not, set bool bMarubozu back to false.
ad 3)
To exit a trade after a certain number of bars, enter another int Input e.g. "Exit After N Bars". When not flat, check if BarsSinceEntryExecution >= Exit After N Bars. If true, exit.
Additional thoughts: I myself would add a counter to see how often Marubozus occur. However, you will not be able to do this in the StrategyBuilder. This requires NinjaScript.
StrategyBuilder features are fairly limited, particularly in terms of counters or other calculations (for whatever reason).
NT-Roland
- Likes 1
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
134 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
75 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
119 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
114 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
92 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment