Why are we using double for BaseCurrencyVolume and QuoteCurrencyVolume in MarketCandle?
Shouldn't we use decimal instead?
I've noticed that casting baseVolume and convertVolume to double the precision is lost.
|
candle.BaseCurrencyVolume = (double)baseVolume; |
|
candle.QuoteCurrencyVolume = (double)convertVolume; |

Why are we using
doubleforBaseCurrencyVolumeandQuoteCurrencyVolumeinMarketCandle?Shouldn't we use
decimalinstead?I've noticed that casting
baseVolumeandconvertVolumeto double the precision is lost.ExchangeSharp/src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs
Line 1099 in 1729aaf
ExchangeSharp/src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs
Line 1100 in 1729aaf