fix build

This commit is contained in:
2025-04-30 13:55:40 +07:00
parent 5caf9e2197
commit 61e20356cd
5 changed files with 19 additions and 19 deletions

View File

@@ -158,7 +158,7 @@ namespace Managing.Application.Tests
Parallel.ForEach((Ticker[])Enum.GetValues(typeof(Ticker)), options, ticker =>
{
var candles = _exchangeService
.GetCandles(_account, ticker, DateTime.Now.AddDays(Convert.ToDouble(days)), timeframe).Result;
.GetCandles(_account, ticker, DateTime.Now.AddDays(Convert.ToDouble(days)), timeframe, true).Result;
if (candles == null || candles.Count == 0)
return;
@@ -268,7 +268,7 @@ namespace Managing.Application.Tests
Parallel.ForEach((Ticker[])Enum.GetValues(typeof(Ticker)), options, ticker =>
{
var candles = _exchangeService
.GetCandles(_account, ticker, DateTime.Now.AddDays(Convert.ToDouble(days)), timeframe).Result;
.GetCandles(_account, ticker, DateTime.Now.AddDays(Convert.ToDouble(days)), timeframe, true).Result;
if (candles == null || candles.Count == 0)
return;