You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for above code, if set live-binance mode, bar_handler will be triggered every 5 minutes. when compared the bar with Binance data, the provided bar from bar_handler will always miss the fifth-minute trading data. that's to say, bar_handler will got me a TradeBar only contains the first 4 minutes trading data.
The related code is as follows:
after changing currentLocalTime - _workingBar.Time >= _period.Value && GetRoundedBarTime(currentLocalTime) > _lastEmit) as currentLocalTime - _workingBar.Time > _period.Value && GetRoundedBarTime(currentLocalTime) > _lastEmit), I will get exactly identical living 5-minute candles with Binance.
please help have a check, is it a bug?
The text was updated successfully, but these errors were encountered:
for above code, if set
live-binance
mode,bar_handler
will be triggered every 5 minutes. when compared thebar
with Binance data, the provided bar frombar_handler
will always miss the fifth-minute trading data. that's to say,bar_handler
will got me aTradeBar
only contains the first 4 minutes trading data.The related code is as follows:
after changing
currentLocalTime - _workingBar.Time >= _period.Value && GetRoundedBarTime(currentLocalTime) > _lastEmit)
ascurrentLocalTime - _workingBar.Time > _period.Value && GetRoundedBarTime(currentLocalTime) > _lastEmit)
, I will get exactly identical living 5-minute candles with Binance.please help have a check, is it a bug?
The text was updated successfully, but these errors were encountered: