int ObjectGetShiftByValue(string name, double value)
The function calculates and returns bar index (shift related to the current bar) for the given price. The bar index is calculated by the first and second coordinates using a linear equation. Applied to trendlines and similar objects. To get the detailed error information, one has to call the GetLastError() function.
この関数は、特定の価格のバーインデックス(現在のバーに関連した転移)を計算して返します。そのバーインデックスは、線形方程式を使って、最初と2番目の座標によって計算されます。トレンドラインと類似したオブジェクトに適用できます。詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
See also ObjectGetValueByShift() function.
参照: ObjectGetValueByShift() 関数
Parameters:
パラメータ:
1 2 3 4 5 | <b>name</b> - Object name. オブジェクトの名前 <b>value</b> - Price value. 価格の値 |
Sample:
サンプル:
1 | int shift=ObjectGetShiftByValue("MyTrendLine#123", 1.34); |