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) バーの数。