This commit is contained in:
2026-03-04 16:39:21 +09:00
parent 80a9aa574d
commit eb2dc0efd0
3 changed files with 10 additions and 3 deletions
@@ -362,8 +362,8 @@ object FinancialAnalyzer {
val isDebtSafe = fs.debtRatio < 200.0 // 부채비율 200% 미만
val isLiquiditySafe = fs.quickRatio > 80.0 // 당좌비율 80% 이상
val isNotDeficit = fs.isNetIncomePositive // 당기순이익은 일단 흑자여야 함
//&& isNotDeficit
return isDebtSafe && isLiquiditySafe
return isDebtSafe && isLiquiditySafe && isNotDeficit
}
/**