double iSAR(string symbol, int timeframe, double step, double maximum, intshift)
Calculates the Parabolic Stop and Reverse system and returns its value.
パラボリックSAR(放物線の停留と反転)システムを計算し、その値を返します。
Parameters:
パラメータ:
symbol | – | Symbol the data of which should be used to calculate indicator. NULL means the current symbol. インディケータの計算に使用するデータの通貨ペア名。NULL は、現在のシンボルを意味します。 | timeframe | – | 時間枠。時間枠の列挙値のいずれかを指定できます。0 は、現在のチャートの時間枠を意味します。 | step | – | Increment, usually 0.02. 増加量、通常は0.02。 | maximum | – | Maximum value, usually 0.2. 最大値、通常は0.2。 | shift | – | Index of the value taken from the indicator buffer (shift relative to the current bar the given amount of periods ago). インディケータ バッファから取得するインデックスの値(現在のバーを基準に、指定された期間の量だけ過去にシフトする) |
|
Sample:
サンプル:
| if(iSAR(NULL,0,0.02,0.2,0)>Close[0]) return(0); |
0 people found this article useful
0 people found this article useful