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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
569 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
548 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
548 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment