[Fix]修复QuantosDataService夜盘数据时间戳可能为负的bug
This commit is contained in:
parent
0b5d0a928c
commit
1a01937e6c
@ -66,7 +66,12 @@ def generateVtBar(row):
|
||||
sec=bar.time[4:6]
|
||||
if minute=="00":
|
||||
minute="59"
|
||||
hour=str(int(hour)-1).rjust(2,'0')
|
||||
|
||||
h = int(hour)
|
||||
if h == 0:
|
||||
h = 24
|
||||
|
||||
hour=str(h-1).rjust(2,'0')
|
||||
else:
|
||||
minute=str(int(minute)-1).rjust(2,'0')
|
||||
bar.time=hour+minute+sec
|
||||
|
Loading…
Reference in New Issue
Block a user