Skip to content

Indicator Explorer

No-op strategy for indicator exploration.

IndicatorExplorer exists solely to register indicators dynamically and let the Orchestrator / RunRecorder pipeline process bars identically to a real backtest. It performs no trading logic.

IndicatorExplorer

Bases: StrategyBase

setup()

Source code in src/onesecondtrader/strategies/indicator_explorer.py
def setup(self) -> None:
    pass  # Indicators are registered dynamically via configured subclass

on_bar(event)

Source code in src/onesecondtrader/strategies/indicator_explorer.py
def on_bar(self, event: events.market.BarReceived) -> None:
    pass  # No trading logic -- pure indicator computation