double iClose(string symbol, int timeframe, int shift)
Returns Close value for the bar of indicated symbol with timeframe and shift. If local history is empty (not loaded), function returns 0.
指定された symbol、timeframe、shiftのバーの終値を返します。もし、ローカル履歴がない(読み込まれていない)場合、関数は 0 を返します。
For the current chart, the information about close prices is in the predefined array named Close[].
現在のチャートでの終値に関する情報は、Close[] という名前の定義済み配列にあります。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 2 3 | Print("Current bar for USDCHF H1: ",iTime("USDCHF",PERIOD_H1,i),", ", iOpen("USDCHF",PERIOD_H1,i),", ", iHigh("USDCHF",PERIOD_H1,i),", ", iLow("USDCHF",PERIOD_H1,i),", ", iClose("USDCHF",PERIOD_H1,i),", ", iVolume("USDCHF",PERIOD_H1,i)); |