6 lines
188 B
Python
6 lines
188 B
Python
import xtquant.xtconstant as xtconstant
|
|
|
|
OrderTypeBuy = f'{xtconstant.STOCK_BUY}' # 买
|
|
OrderTypeSell = f'{xtconstant.STOCK_SELL}' # 卖
|
|
OrderTypeInit = "0" # 建仓
|
|
OrderTypeNone = "None" |