2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト ema ema 関数smaは、指数加重移動平均を返します。 emaでは、加重係数が指数関数的に減少します。 正式なsignによって計算される。α= 2 /(y + 1)であるEMA =α* x +(1-α)* EMA [1] e […]
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト dmi dmi dmi関数はDMI(方向性指数)を返します。 dmi(diLength, adxSmoothing) → [series[float], series[float], series[float]] 例 戻り3つの […]
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト dev dev シリーズとsmaとの違いの尺度 dev(source, length) → series[float] 例 戻り過去yバーに対するxの偏差。 引数source (series) 処理する値の系列。length ( […]
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト dayofweek dayofweek dayofweek(time) → series[integer]dayofweek(time, timezone) → series[integer] 戻り指定されたUNIX時間の曜日(変換時間帯) […]
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト dayofmonth dayofmonth dayofmonth(time) → series[integer]dayofmonth(time, timezone) → series[integer] 戻り指定されたUNIX時間の月の日(変換 […]
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト cum cum xの累計(合計)。 言い換えればxの全ての要素の合計です。 cum(x) → series[float] 戻り系列の総和。 引数x (series)
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト crossunder crossunder `x`の値が` y`の値よりも小さく`x`の値が現在のバーの直前のバーの` y`の値より大きかった場合、’x’系列は’y’系列の下で交差していると定義 […]
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト crossover crossover `x`の値が` y`の値よりも大きく、 `x`の値が現在のバーの直前のバーの` y`の値よりも小さかった場合、’x’系列は’y’系列を超えていると定義さ […]
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト cross cross cross(x, y) → series[bool] 戻り2 つの系列が交差している場合は true、 それ以外の場合は false。 引数x (series)y (series)
2020年6月4日 / 最終更新日時 : 2020年6月4日 myama Pineスクリプト cos cos cos関数は角度のコサインを返します。 cos(x) → floatcos(x) → input floatcos(x) → const floatcos(x) → series[float] 戻り角度の三角関数 […]