double MarketInfo(string symbol, int type)
Returns various data about securities listed in the Market Watch window. A part of information about the current security is stored in predefined variables.
Market Watch ウィンドウに表示された金融商品に関するさまざまなデータを返します。現在の金融商品に関する情報の一部は、定義済み変数に格納されています。
Parameters:
パラメータ:
1 2 3 4 5 6 7 | <b>symbol</b> - Security symbol. 金融商品名 <b>type</b> - Request identifier that defines the type of information to be returned. Can be any of values of <a href="20170707135139/http://www.metasys-seeker.net/MQL4_Reference_ver1/02-05_MarketInfo.html">request identifiers</a>. 返される情報の種類を定義する識別子を要求します。 <a href="20170707135139/http://www.metasys-seeker.net/MQL4_Reference_ver1/02-05_MarketInfo.html">要求識別子</a>の値のいずれかを指定できます。 |
Sample:
サンプル:
1 2 3 4 5 | double bid =MarketInfo("EURUSD",MODE_BID); double ask =MarketInfo("EURUSD",MODE_ASK); double point =MarketInfo("EURUSD",MODE_POINT); int digits=MarketInfo("EURUSD",MODE_DIGITS); int spread=MarketInfo("EURUSD",MODE_SPREAD); |