Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Indicators Description

1. Component Deconstruction

This section dissects each individual indicator and calculation engine within the script, detailing its configuration and any mathematical modifications.

Volatility & Sensitivity Engine

Volume & Momentum Analysis

Event-Based Pattern Detection

Market Structure & Regime Filters

2. Logic Layering & Confluence

The script’s engine avoids reliance on any single indicator by layering multiple conditions in a hierarchical structure.

3. The Execution Engine

Trigger Logic

The final boolean logic for a long entry (longEntry) is the culmination of the entire filtering hierarchy:

longSignal = (bullishBias > bearishBias) and (bullPillarCount >= 2) and (confidence >= minConfidence) and (not isChoppy) and (inKillZone) and barstate.isconfirmed

longEntry = longSignal and (bar_index - lastSignalBar >= 3) and (posState == 0)

Exit Logic

The script employs a hybrid exit strategy with both static and dynamic conditions.