string Symbol( )
Returns a text string with the name of the current financial instrument.
現在の金融商品の名前を文字列で返します。
Sample:
サンプル:
1 2 3 4 5 6 7 8 | int total=OrdersTotal(); for(int pos=0;pos<total;pos++) { // check selection result because the order may be closed or deleted at this time! if(OrderSelect(pos, SELECT_BY_POS)==false) continue; if(OrderType()>OP_SELL || OrderSymbol()!=Symbol()) continue; // performs some processing... } |