挂单价格

tmpPriceRange = Q_UpperLimit - Q_LowerLimit;

           BuyTriggerPrice  = Round(Q_LowerLimit + tmpPriceRange * ulzdtpy/100, PriceScale);

           SellTriggerPrice = Round(Q_UpperLimit - tmpPriceRange * ulzdtpy/100, PriceScale);

           BuyOrderPrice  = Min(Round(Open - tmpPriceRange * opensxpy/100, PriceScale), BuyTriggerPrice);

           SellOrderPrice = Max( Round(Open +tmpPriceRange * opensxpy/100, PriceScale), SellTriggerPrice);这种挂单价格是否适合期货全部品种; Round(Q_LowerLimit + tmpPriceRange * ulzdtpy/100, PriceScale);

关于Buy、Sell挂单价格不出信号的问题
算法代理中的“成交后委托偏移”的意思没搞明白,请指教。
网格如何修改间隔为动态间隔
请教各位老师关于卖1价即时成交的问题
代码显示不能订阅K线是什么问题
A_SendOrderEx开不了单,就是想一启动就开上5手
挂单和撤单
如何挂单
请教限价挂单怎么写
使用A_SendOrderEx 如何实现挂单,把参数Price设上委托价格了,但还是直接开单了

你不超过涨跌停价可以任意挂单

那没必要用round函数来规定价格小数点了吗?