Update stopAlgo.py

This commit is contained in:
cclauss 2018-06-20 09:33:47 +02:00 committed by GitHub
parent 6b85efa3d9
commit 10e9be7c03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,10 +26,10 @@ class StopAlgo(AlgoTemplate):
# 参数强制类型转换保证从CSV加载的配置正确
self.vtSymbol = str(setting['vtSymbol']) # 合约代码
self.direction = text_type(setting['direction']) # 买卖
self.direction = text_type(setting['direction']) # 买卖
self.stopPrice = float(setting['stopPrice']) # 触发价格
self.totalVolume = float(setting['totalVolume']) # 数量
self.offset = text_type(setting['offset']) # 开平
self.offset = text_type(setting['offset']) # 开平
self.priceAdd = float(setting['priceAdd']) # 下单时的超价
self.vtOrderID = '' # 委托号