ㅇ 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.
29 lines
920 B
Python
29 lines
920 B
Python
"""kis_trader.strategies — 전략 모듈 (각 전략 = 독립 쓰레드).
|
|
|
|
신호 엔진: ``kis_trader.engine`` (tail_engine, scalping_engine)
|
|
WS 시세: ``kis_trader.ws`` (kis_ws, kiwoom_ws)
|
|
"""
|
|
from . import updow_buy # noqa: F401 — 직전봉 하락·다음봉 시가 매수 (UPDOW 전용, engine 폴더와 별도)
|
|
from .base import BaseStrategy
|
|
from .breakout import BreakoutStrategy
|
|
from .range_break import RangeBreakStrategy
|
|
from .momentum import MomentumStrategy
|
|
from .scalping import ScalpingStrategy
|
|
from .tail_catch import TailCatchStrategy
|
|
from .updow_strategy import UpdowStrategy
|
|
from .dbband_strategy import DbBandStrategy
|
|
from .dart_strategy import DartStrategy
|
|
|
|
__all__ = [
|
|
"BaseStrategy",
|
|
"ScalpingStrategy",
|
|
"TailCatchStrategy",
|
|
"BreakoutStrategy",
|
|
"RangeBreakStrategy",
|
|
"MomentumStrategy",
|
|
"UpdowStrategy",
|
|
"DbBandStrategy",
|
|
"DartStrategy",
|
|
"updow_buy",
|
|
]
|