double Ask
The latest known seller’s price (ask price) for the current symbol. The RefreshRates() function must be used to update.
現在の通貨ペアで、最後に知り得た(Ask値)です。更新するには RefreshRates() 関数を使用する必要があります。
See also MarketInfo().
参照 MarketInfo()
Sample:
サンプル:
1 2 3 4 5 6 | if(iRSI(NULL,0,14,PRICE_CLOSE,0)<25) { OrderSend(Symbol(),OP_BUY,Lots,Ask,3,Bid-StopLoss*Point,Ask+TakeProfit*Point, "My order #2",3,D'2005.10.10 12:30',Red); return; } |