{
  "module": "STRATEGY_LAYER",
  "version": "1.0",
  "description": "The Brain of Calculatiks – Three strategies, one truth: the spread.",
  "mantra": "The bot wins. The protocol wins. The human wins. Win-Win-Win.",
  "strategies": {
    "SPREAD_V1": {
      "name": "The Art of Arbitrage",
      "formula": "profit_net = gross_spread - round_trip_taxes - slippage - gas",
      "green": "profit_net >= 0.001 USD",
      "red": "otherwise",
      "parameters": {
        "min_spread_percent": 0.1,
        "min_profit_usd": 0.001,
        "max_volume_per_trade": 0.1,
        "slippage_percent": 0.5,
        "gas_cost_usd_max": 1.0,
        "adaptive_threshold": true,
        "volatility_factor": 2.0,
        "max_triangular_hops": 3
      }
    },
    "HOLDING_V1": {
      "name": "The Wisdom of Time",
      "signal_formula": {
        "STRONG_HOLD": "fundamentals >= 70 AND rarity >= 70",
        "HOLD": "fundamentals >= 50 AND rarity >= 50",
        "NEUTRAL": "fundamentals >= 30 AND rarity >= 30",
        "REDUCE_RISK": "otherwise"
      },
      "parameters": {
        "burn_rate_weight": 0.4,
        "supply_reduction_weight": 0.3,
        "energy_flow_weight": 0.3
      }
    },
    "TRADING_V1": {
      "name": "The Dance of the Market",
      "signal_formula": {
        "BUY": "score >= 70",
        "SELL": "score <= 30",
        "NEUTRAL": "30 < score < 70"
      },
      "parameters": {
        "score_threshold_buy": 70,
        "score_threshold_sell": 30,
        "momentum_period_hours": 24,
        "volume_weight": 0.4,
        "price_change_weight": 0.3,
        "spread_weight": 0.3
      }
    }
  },
  "golden_ratio": {
    "value": "1.83",
    "bot_equation": "Profit = Price Difference - 0.68%"
  },
  "delegation_limits": {
    "max_profit_per_trade_usd": 10,
    "max_daily_trades_delegated": 5,
    "max_volume_per_trade_delegated": 0.05,
    "max_slippage_percent_delegated": 0.3,
    "max_gas_cost_usd_delegated": 0.5,
    "min_profit_usd": 0.001,
    "allowed_tokens": ["CCTIKS", "TIKS", "GIKS", "MIKS", "PIKS"],
    "allowed_pools": ["uniswap", "sushiswap", "aerodrome"],
    "emergency_stop": true
  },
  "note": "Don't be fooled by the color of the candles. Observe the progression of the liquid battery."
}