Change market end time

This commit is contained in:
2024-11-14 09:49:36 +09:00
parent e2ed178d87
commit 00f75821e2

View File

@@ -77,7 +77,7 @@ extension Domestic.Candle: @retroactive Equatable {
return false
}
let timeInSeconds = (hh * 3600 + mm * 60 + ss)
return 9 * 3600 <= timeInSeconds && timeInSeconds <= 16 * 3600
return 9 * 3600 <= timeInSeconds && timeInSeconds <= 18 * 3600
}
public static func == (lhs: Domestic.Candle, rhs: Domestic.Candle) -> Bool {