A SendOrder 发送委托单
来自tradeStar帮助系统
函数 | A_SendOrder |
别名 | 发送委托单 |
所属类别 | 交易函数 |
参数数量 | 7 |
运行模式 | 逐根 |
说明 | 后台交易函数,发送委托单 |
用法 | 语法:
A_SendOrder('Symbol', SendOrderType, lots, price, stopLoss, profitTarget, 'comment'); Symbol 品种代码, 空串表示当前品种 SendOrderType 有以下4种: SO_BUY 多头开 SO_SELL 多头平 SO_SELLSHORT 空头开 SO_BUYTOCOVER 空头平 Lots 委托开仓数量 Price 委托开仓价格 stopLoss 止损价格,为0时无止损 profitTarget 止盈价格,为0时无止盈 Comment 用户注释 注意: 1. 只能用于实时行情,不能用于历史回测 2. 使用时不能打开实盘同步 3. 最好配合 #Run_Every_Tick 逐笔行情运行,否则每根K线只能执行一次 4. 可以双向持仓,开仓不会自动平反向仓 |