Skip to main content

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

NameTypeDefaultDescription
POCsCountint2Number of consecutive joined POCs required

Signal Logic

DirectionCondition
allowedBar contains >= POCsCount consecutive POCs within 1 tick distance
NoneCondition not met

Example

var signal = new BarJoinedPOCsSignal(strategy,
MarketDataSource.Level1, SignalCalculate.OnEachTick);
signal.POCsCount = 3;

pattern.Signals.Root.Add(signal);