- 每一筆行情資料由左至右分別為:
- 為主機接收到這筆行情資訊的時間。
- 為這段交易時間內此商品的開盤價。
- 為這段交易時間內此商品的最高價。
- 為這段交易時間內此商品的最低價。
- 為此商品最後一次撮合的時間。
- 為此商品最後一次撮合時的價格。
- 為此商品最後一次撮合時的交易量。
- 為這段交易時間內此商品的總交易量。
- 因為本系統並沒有把 CSV 的 Column Header 加上去,所以在這邊附上:
- Snake Case
time,open_price,high_price,low_price,match_time,match_price,match_quantity,total_match_quantity,best_buy_quantity1,best_buy_quantity2,best_buy_quantity3,best_buy_quantity4,best_buy_quantity5,best_buy_price1,best_buy_price2,best_buy_price3,best_buy_price4,best_buy_price5,best_sell_quantity1,best_sell_quantity2,best_sell_quantity3,best_sell_quantity4,best_sell_quantity5,best_sell_price1,best_sell_price2,best_sell_price3,best_sell_price4,best_sell_price5
- Pascal Case
Time,OpenPrice,HighPrice,LowPrice,MatchTime,MatchPrice,MatchQuantity,TotalMatchQuantity,BestBuyQuantity1,BestBuyQuantity2,BestBuyQuantity3,BestBuyQuantity4,BestBuyQuantity5,BestBuyPrice1,BestBuyPrice2,BestBuyPrice3,BestBuyPrice4,BestBuyPrice5,BestSellQuantity1,BestSellQuantity2,BestSellQuantity3,BestSellQuantity4,BestSellQuantity5,BestSellPrice1,BestSellPrice2,BestSellPrice3,BestSellPrice4,BestSellPrice5
- Snake Case
- 附上 Header List 方便宣告:
- Snake Case
"time", "open_price", "high_price", "low_price", "match_time", "match_price", "match_quantity", "total_match_quantity", "best_buy_quantity1", "best_buy_quantity2", "best_buy_quantity3", "best_buy_quantity4", "best_buy_quantity5", "best_buy_price1", "best_buy_price2", "best_buy_price3", "best_buy_price4", "best_buy_price5", "best_sell_quantity1", "best_sell_quantity2", "best_sell_quantity3", "best_sell_quantity4", "best_sell_quantity5", "best_sell_price1", "best_sell_price2", "best_sell_price3", "best_sell_price4", "best_sell_price5"
- Pascal Case
"Time", "OpenPrice", "HighPrice", "LowPrice", "MatchTime", "MatchPrice", "MatchQuantity", "TotalMatchQuantity", "BestBuyQuantity1", "BestBuyQuantity2", "BestBuyQuantity3", "BestBuyQuantity4", "BestBuyQuantity5", "BestBuyPrice1", "BestBuyPrice2", "BestBuyPrice3", "BestBuyPrice4", "BestBuyPrice5", "BestSellQuantity1", "BestSellQuantity2", "BestSellQuantity3", "BestSellQuantity4", "BestSellQuantity5", "BestSellPrice1","BestSellPrice2", "BestSellPrice3", "BestSellPrice4", "BestSellPrice5"
- Snake Case
- Python List
[ 'time', 'open_price', 'high_price', 'low_price', 'match_time', 'match_price', 'match_quantity', 'total_match_quantity', 'best_buy_quantity1', 'best_buy_quantity2', 'best_buy_quantity3', 'best_buy_quantity4', 'best_buy_quantity5', 'best_buy_price1', 'best_buy_price2', 'best_buy_price3', 'best_buy_price4', 'best_buy_price5', 'best_sell_quantity1', 'best_sell_quantity2', 'best_sell_quantity3', 'best_sell_quantity4', 'best_sell_quantity5', 'best_sell_price1', 'best_sell_price2', 'best_sell_price3', 'best_sell_price4', 'best_sell_price5' ]