feat: Add DART strategy and related configurations

ㅇ
Changes:
- Introduced the DART strategy to the trading system, including its configuration and integration into the existing framework.
- Updated the database schema to include DART-specific tables for disclosures and watchlists.
- Enhanced the backtesting and parameter search functionalities to support the DART strategy.
- Implemented new rules for browser verification and API interactions to ensure compliance with the updated DART strategy.

Impact:
- These additions expand the trading capabilities of the system, allowing for more comprehensive analysis and execution of DART-related strategies, while maintaining system integrity and performance.
This commit is contained in:
Your Name
2026-07-21 07:50:24 +09:00
parent 74db49149f
commit 61bec4bd1d
86 changed files with 4811 additions and 297 deletions

View File

@@ -68,6 +68,7 @@ MOMENTUM_CONFIG_KEYS = frozenset({
"MOMENTUM_BACKTEST_USE_TICK_EXIT",
"MOMENTUM_BACKTEST_USE_TICK_ENTRY",
"MOMENTUM_BACKTEST_TICK_FALLBACK_OHLC",
"MOMENTUM_BACKTEST_WALLCLOCK_LAST_PRICE",
"MOMENTUM_BACKTEST_POLL_MS",
"MOMENTUM_BACKTEST_SELL_SLIP_PCT",
"MOMENTUM_BACKTEST_BUY_SLIP_PCT",
@@ -77,6 +78,7 @@ MOMENTUM_CONFIG_KEYS = frozenset({
"MOMENTUM_BACKTEST_SCAN_SEC",
"MOMENTUM_BACKTEST_UNIVERSE_SCAN_AT",
"MOMENTUM_BACKTEST_CANDLE_WARMUP_BARS",
"MOMENTUM_PREV_DAY_OPEN_HM_MAX",
"MOMENTUM_UNIVERSE_EXIT_DEBOUNCE_SEC",
"MOMENTUM_LIVE_SIGNAL_LOOKBACK_BARS",
"MOMENTUM_LIVE_MIN_CANDLES",