chore(release): baseline zip hash update and tools classification adjustment
This commit is contained in:
@@ -66,8 +66,8 @@ def _classify_horizon(
|
||||
if is_etf:
|
||||
return "ETF"
|
||||
|
||||
# 핵심 주도주는 장기 호라이즌으로 고정
|
||||
if ticker in CORE_LONG_TICKERS and grade == "B":
|
||||
# 핵심 주도주는 변동성이 다소 높아도 장기 호라이즌으로 우선 분류한다.
|
||||
if ticker in CORE_LONG_TICKERS and grade in ("A", "B") and abs(disparity) <= 5 and atr_pct <= 8.0:
|
||||
return "LONG"
|
||||
|
||||
# 과열 신호 → 단기
|
||||
@@ -84,8 +84,8 @@ def _classify_horizon(
|
||||
if grade == "C" and disparity <= -12 and rsi14 < 40 and atr_pct >= 9.0:
|
||||
return "SHORT"
|
||||
|
||||
# 펀더멘털 A/B + 기술적 조건 → 장기
|
||||
if grade in ("A", "B") and abs(disparity) <= 5 and atr_pct <= 3.0:
|
||||
# 펀더멘털 B + 과열/약세가 아닌 눌림 구간은 장기 후보로 본다.
|
||||
if grade == "B" and disparity <= 0 and abs(disparity) <= 5 and atr_pct <= 8.0:
|
||||
return "LONG"
|
||||
|
||||
# 펀더멘털 C/D → 중기
|
||||
|
||||
Reference in New Issue
Block a user