BarJoinedPOCsSignal
Detects a specified number of consecutive joined POCs (Point of Control levels within 1 tick of each other) in the current footprint bar. Returns the allowed direction when the condition is met.
Namespace: MZpack.NT8.Algo.Signals
Inheritance: BarJoinedPOCsSignal : Signal
Data source: Level1 | Calculate: OnEachTick
Indicator: StrategyFootprintIndicator
Source: [INSTALL PATH]/API/Signals/BarJoinedPOCsSignal.cs
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
POCsCount | int | 2 | Number of consecutive joined POCs required |
Signal Logic
| Direction | Condition |
|---|---|
| allowed | Bar contains >= POCsCount consecutive POCs within 1 tick distance |
| None | Condition not met |
Example
var signal = new BarJoinedPOCsSignal(strategy,
MarketDataSource.Level1, SignalCalculate.OnEachTick);
signal.POCsCount = 3;
pattern.Signals.Root.Add(signal);