diff --git a/CryptoExchange.Net/Converters/SystemTextJson/DateTimeConverter.cs b/CryptoExchange.Net/Converters/SystemTextJson/DateTimeConverter.cs index 1400560..bfb0bfb 100644 --- a/CryptoExchange.Net/Converters/SystemTextJson/DateTimeConverter.cs +++ b/CryptoExchange.Net/Converters/SystemTextJson/DateTimeConverter.cs @@ -57,6 +57,7 @@ namespace CryptoExchange.Net.Converters.SystemTextJson var stringValue = reader.GetString(); if (string.IsNullOrWhiteSpace(stringValue) || stringValue == "-1" + || stringValue == "0001-01-01T00:00:00Z" || double.TryParse(stringValue, out var doubleVal) && doubleVal == 0) { return default;