mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-11-30 02:48:57 +08:00
update for import kdata
This commit is contained in:
parent
8a33fb9dae
commit
205e84a392
@ -247,8 +247,8 @@ def import_one_stock_data(
|
||||
row['highPrice'] = bar['high'] * 1000
|
||||
row['lowPrice'] = bar['low'] * 1000
|
||||
row['closePrice'] = bar['close'] * 1000
|
||||
row['transAmount'] = int(bar['amount'] * 0.001)
|
||||
row['transCount'] = bar['vol']
|
||||
row['transAmount'] = round(bar['amount'] * 0.001)
|
||||
row['transCount'] = round(bar['vol'])
|
||||
row.append()
|
||||
add_record_count += 1
|
||||
except:
|
||||
|
Loading…
Reference in New Issue
Block a user