claude/interesting-mcnulty #3

Merged
gihyeon merged 4 commits from claude/interesting-mcnulty into main 2026-03-03 21:20:59 +09:00
2 changed files with 10 additions and 11 deletions
Showing only changes of commit 0aeb15ecfb - Show all commits

View File

@@ -60,11 +60,10 @@ class Indicators:
last = df.iloc[-1]
prev = df.iloc[-2]
# ADX 횡보장 필터: ADX < 25이면 추세 부재로 판단하여 진입 차단
# ADX 로깅 (ML 피처로 위임, 하드필터 제거)
adx = last.get("adx", None)
if adx is not None and not pd.isna(adx) and adx < 25:
logger.debug(f"ADX 필터: {adx:.1f} < 25 — HOLD")
return "HOLD"
if adx is not None and not pd.isna(adx):
logger.debug(f"ADX: {adx:.1f}")
long_signals = 0
short_signals = 0

View File

@@ -54,21 +54,21 @@ def test_adx_column_exists(sample_df):
assert (valid >= 0).all()
def test_adx_filter_blocks_low_adx(sample_df):
"""ADX < 25일 때 가중치와 무관하게 HOLD를 반환해야 한다."""
def test_adx_low_does_not_block_signal(sample_df):
"""ADX < 25여도 시그널이 차단되지 않는다 (ML에 위임)."""
ind = Indicators(sample_df)
df = ind.calculate_all()
# 강한 LONG 신호가 나오도록 지표 조작
df.loc[df.index[-1], "rsi"] = 20 # RSI 과매도 → +1
df.loc[df.index[-2], "macd"] = -1 # MACD 골든크로스 → +2
df.loc[df.index[-1], "rsi"] = 20
df.loc[df.index[-2], "macd"] = -1
df.loc[df.index[-2], "macd_signal"] = 0
df.loc[df.index[-1], "macd"] = 1
df.loc[df.index[-1], "macd_signal"] = 0
df.loc[df.index[-1], "volume"] = df.loc[df.index[-1], "vol_ma20"] * 2 # 거래량 서지
# ADX를 강제로 낮은 값으로 설정
df.loc[df.index[-1], "volume"] = df.loc[df.index[-1], "vol_ma20"] * 2
df["adx"] = 15.0
signal = ind.get_signal(df)
assert signal == "HOLD"
# ADX 낮아도 지표 조건 충족 시 LONG 반환 (ML이 최종 판단)
assert signal == "LONG"
def test_adx_nan_falls_through(sample_df):