This commit is contained in:
2026-09-15 11:37:09 +09:00
parent 3998cf159a
commit 442cdf0877
2 changed files with 120 additions and 119 deletions
@@ -354,7 +354,7 @@ class TechnicalAnalyzer {
// 🌟 3. 3개 중 2개 이상 만족 시 반등 임박(Approaching)으로 판단
val passedConditions = listOf(isPriceDropped, isPastMinTime, isWithinMaxTime).count { it }
//A. 진입 하락률 기준checkReboundApproaching 3개 중 2개 만족 시 통과 가격 하락 조건(isPriceDropped)을 필수 조건(AND)으로 고정
return passedConditions >= 2
return passedConditions > 2
}
fun calculateMFI(candles: List<CandleData>, period: Int = 14): Double {