Files
kis_bot/kis_trader/backtest/momentum_tick_loader.py
2026-07-30 18:05:07 +09:00

20 lines
528 B
Python

#!/usr/bin/env python3
"""모멘텀 백테 틱 로더 — breakout_tick_loader 와 동일 (KR=ws_ticks / US=ws_ticks_us)."""
from __future__ import annotations
from kis_trader.backtest.breakout_tick_loader import (
entry_before_first_tick,
first_tick_minute_key,
load_breakout_ticks_by_code,
tick_coverage_stats,
)
load_momentum_ticks_by_code = load_breakout_ticks_by_code
__all__ = [
"load_momentum_ticks_by_code",
"tick_coverage_stats",
"first_tick_minute_key",
"entry_before_first_tick",
]