double Bid
The latest known buyer's price (offer price, bid price) of the current symbol. The RefreshRates() function must be used to update.
現在の通貨ペアで、最後に知り得た買値(注文価格、Bid値)です。更新するには RefreshRates() 関数を使用する必要があります。
参照 MarketInfo()
Sample:
サンプル:
if(iRSI(NULL,0,14,PRICE_CLOSE,0)>75)
{
OrderSend("EURUSD",OP_SELL,Lots,Bid,3,Ask+StopLoss*Point,Bid-TakeProfit*Point,
"My Order #2",3,D'2005.10.10 12:30',Red);
return(0);
}
|