5 lines
159 B
Python
5 lines
159 B
Python
import xtquant.xtconstant as xtconstant
|
|
|
|
OrderTypeBuy = f'{xtconstant.STOCK_BUY}' # 买
|
|
OrderTypeSell = f'{xtconstant.STOCK_SELL}' # 卖
|
|
OrderTypeNone = "None" |