int iBarShift(string symbol, int timeframe, datetime time, bool exact=false)
Search for bar by open time. The function returns bar shift with the open time specified. If the bar having the specified open time is missing, the function will return -1 or the nearest bar shift depending on the exact.
開始時間でバーを検索します。この関数は、指定された開始時間のバーの変移値を返します。もし、指定された開始時間のバーが見つからない場合、この関数は、-1 を返すか、exact の値によっては、最も近いバーの変移値を返します。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 2 3 | datetime some_time=D'2004.03.21 12:00'; int shift=iBarShift("EUROUSD",PERIOD_M1,some_time); Print("shift of bar with open time ",TimeToStr(some_time)," is ",shift); |