chore(release): baseline zip hash update and tools classification adjustment
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"formula_id": "AUDIT_REPOSITORY_ENTROPY_V2",
|
"formula_id": "AUDIT_REPOSITORY_ENTROPY_V2",
|
||||||
"gate": "PASS",
|
"gate": "PASS",
|
||||||
"total_file_count": 1655,
|
"total_file_count": 1657,
|
||||||
"package_script_count": 16,
|
"package_script_count": 16,
|
||||||
"temp_json_count": 116,
|
"temp_json_count": 118,
|
||||||
"budget": {
|
"budget": {
|
||||||
"schema_version": "repository_entropy_budget.v1",
|
"schema_version": "repository_entropy_budget.v1",
|
||||||
"max_total_files": 2200,
|
"max_total_files": 2200,
|
||||||
@@ -15,5 +15,5 @@
|
|||||||
"keep package scripts within release envelope"
|
"keep package scripts within release envelope"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"source_zip_sha256": "1f7a6902eefc1e9f99c42266e2cd880593874990cb4afc419b345b5187ad0e17"
|
"source_zip_sha256": "6042cbf7bac87ada831bf2ff48797d15caa20ed40736dc4bd5483a8f72747857"
|
||||||
}
|
}
|
||||||
@@ -66,8 +66,8 @@ def _classify_horizon(
|
|||||||
if is_etf:
|
if is_etf:
|
||||||
return "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"
|
return "LONG"
|
||||||
|
|
||||||
# 과열 신호 → 단기
|
# 과열 신호 → 단기
|
||||||
@@ -84,8 +84,8 @@ def _classify_horizon(
|
|||||||
if grade == "C" and disparity <= -12 and rsi14 < 40 and atr_pct >= 9.0:
|
if grade == "C" and disparity <= -12 and rsi14 < 40 and atr_pct >= 9.0:
|
||||||
return "SHORT"
|
return "SHORT"
|
||||||
|
|
||||||
# 펀더멘털 A/B + 기술적 조건 → 장기
|
# 펀더멘털 B + 과열/약세가 아닌 눌림 구간은 장기 후보로 본다.
|
||||||
if grade in ("A", "B") and abs(disparity) <= 5 and atr_pct <= 3.0:
|
if grade == "B" and disparity <= 0 and abs(disparity) <= 5 and atr_pct <= 8.0:
|
||||||
return "LONG"
|
return "LONG"
|
||||||
|
|
||||||
# 펀더멘털 C/D → 중기
|
# 펀더멘털 C/D → 중기
|
||||||
|
|||||||
Reference in New Issue
Block a user