我如何将 (x) 变量列表分组为真,或者 (y) 变量组为真以激活命令。
我在这里有以下内容,其中包括||
布尔值。
if(OrderSelect(PosSel,SELECT_BY_POS,MODE_TRADES))
if(OrderTicket() > 0)
if((OrderMagicNumber() == Period()))
if(OrderSymbol() == Symbol())
if(TimeCurrent() >=(OrderOpenTime() + 60 * Period()))
/*Either the above variables can be met OR the one below can be met. */
|| if((MarketInfo(Symbol(),MODE_BID)==(iOpen(Symbol(),0,1))))
非常感谢。