From a7600e8db13363801c0ad1f3d0f83f360d39ef71 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 1 Mar 2026 11:54:54 +0000 Subject: [PATCH] Add V5.2 strategy configuration files --- backend/strategies/v51_baseline.json | 19 +++++++++++++++++++ backend/strategies/v52_8signals.json | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 backend/strategies/v51_baseline.json create mode 100644 backend/strategies/v52_8signals.json diff --git a/backend/strategies/v51_baseline.json b/backend/strategies/v51_baseline.json new file mode 100644 index 0000000..814d6bf --- /dev/null +++ b/backend/strategies/v51_baseline.json @@ -0,0 +1,19 @@ +{ + "name": "v51_baseline", + "version": "5.1", + "threshold": 75, + "weights": { + "direction": 45, + "crowding": 20, + "environment": 15, + "confirmation": 15, + "auxiliary": 5 + }, + "accel_bonus": 5, + "tp_sl": { + "sl_multiplier": 2.0, + "tp1_multiplier": 1.5, + "tp2_multiplier": 3.0 + }, + "signals": ["cvd", "p99", "accel", "ls_ratio", "oi", "coinbase_premium"] +} diff --git a/backend/strategies/v52_8signals.json b/backend/strategies/v52_8signals.json new file mode 100644 index 0000000..5589f92 --- /dev/null +++ b/backend/strategies/v52_8signals.json @@ -0,0 +1,19 @@ +{ + "name": "v52_8signals", + "version": "5.2", + "threshold": 75, + "weights": { + "direction": 40, + "crowding": 25, + "environment": 15, + "confirmation": 20, + "auxiliary": 5 + }, + "accel_bonus": 5, + "tp_sl": { + "sl_multiplier": 2.0, + "tp1_multiplier": 1.5, + "tp2_multiplier": 3.0 + }, + "signals": ["cvd", "p99", "accel", "ls_ratio", "oi", "coinbase_premium", "funding_rate", "liquidation"] +}