브랜치 분리 방식: A / B / C

A 선택 시 커밋 메시지: 위 초안 OK / 수정 / 직접 작성
작업 시점: 지금 / 운영 데이터 1~2일 쌓고 / 주말
This commit is contained in:
2026-05-05 21:04:17 +09:00
parent c2b2b711e0
commit f61c471aac
58 changed files with 803502 additions and 1430 deletions

View File

@@ -0,0 +1,12 @@
"""kis_trader.strategies — 전략 모듈 (각 전략 = 독립 쓰레드)."""
from .base import BaseStrategy
from .breakout import BreakoutStrategy
from .scalping import ScalpingStrategy
from .tail_catch import TailCatchStrategy
__all__ = [
"BaseStrategy",
"ScalpingStrategy",
"TailCatchStrategy",
"BreakoutStrategy",
]