double iLow(string symbol, int timeframe, int shift)
Returns Low 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 low prices is in the predefined array named Low[].
現在のチャートでの安値に関する情報は、Low[] という名前の定義済み配列にあります。
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)); |