변경 사항 ---- - _test_kiwoom_condition_list.py: 키움 웹소켓 조건검색 '목록조회' 기능을 단독으로 테스트하는 스크립트 추가 - _test_kiwoom_condition_realtime.py: 'momentum' 조건식을 실시간으로 등록하고 초기 매칭 종목 리스트 및 실시간 편입/이탈을 수신하는 테스트 스크립트 추가 - _verify_columnar_bitid.py, _verify_shared_e2e_breakout.py, _verify_shared_e2e.py: 공유 메모리 및 dict 간의 데이터 일관성을 검증하는 테스트 추가 영향 ---- - 신규 테스트 스크립트 추가로 키움 웹소켓 API의 기능 검증 및 안정성을 높임 - 기존 기능에 대한 영향 없음 Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
567 B
Python
23 lines
567 B
Python
"""kis_trader.ws — KIS·키움 WebSocket 시세·봉 집계."""
|
|
from .kis_ws import (
|
|
CandleAggregator,
|
|
KISWebSocketPriceCache,
|
|
KiwoomTokenManager,
|
|
get_kiwoom_candles_df,
|
|
_get_kiwoom_creds,
|
|
_get_kiwoom_token_cached,
|
|
)
|
|
from .kiwoom_ws import KiwoomWebSocketPriceCache
|
|
from .tick_recorder import TickRecorder
|
|
|
|
__all__ = [
|
|
"CandleAggregator",
|
|
"KISWebSocketPriceCache",
|
|
"KiwoomTokenManager",
|
|
"KiwoomWebSocketPriceCache",
|
|
"TickRecorder",
|
|
"get_kiwoom_candles_df",
|
|
"_get_kiwoom_creds",
|
|
"_get_kiwoom_token_cached",
|
|
]
|