Skip to content

Configuration Reference

Complete reference for all configuration options.

See Getting Started > Configuration for detailed setup guide.

Files

File Purpose
config/edge_config.yaml ML and backtest settings
config/risk_limits.yaml Risk management (create if needed)
.env Environment variables (API keys)
mkdocs.yml Documentation settings

Pine Script Settings

See indicator settings panel in TradingView.

Python Settings

edge_config.yaml

edge_stack:
  quality_weight: 0.4
  time_weight: 0.2
  sweep_weight: 0.2
  nested_weight: 0.1
  htf_weight: 0.1

backtest:
  initial_capital: 10000
  commission_per_trade: 0.50
  slippage_ticks: 1

model:
  type: lightgbm
  params:
    n_estimators: 200
    max_depth: 6
    learning_rate: 0.05

gates:
  min_sharpe_oos: 0.8
  max_drawdown: 0.08
  min_win_rate: 0.50