hma

hma

hma関数はハル移動平均を戻します。

hma(source, length) → series[float]

study("Hull Moving Average")
src = input(defval=close, type=input.source, title="Source")
length = input(defval=9, type=input.integer, title="Length")
hmaBuildIn = hma(src, length)
plot(hmaBuildIn, title="Hull MA", color=#674EA7)

戻り
‘source’ の過去 ‘length’ バーのハル移動平均。

引数
source (series) 処理する値の系列。
length (integer) バーの数。

\ 最新情報をチェック /

コメントを残す

Pineスクリプト

前の記事

hline
Pineスクリプト

次の記事

hour