lonestar108

PhiMACD

Here is a modified moving average which uses phi as the scaling interval between moving average periods. Each MACD line is derived by determining EMAs for 8 period frames, each of which is related to the other proportionally by phi, and calculating each line by comparing it against its immediate predecessor. Actual period values are 9 15 24 39 63 102 165 and 267

오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?
study(title="Fibonacci Moving Average", shorttitle="FibMA", overlay=false)
ema1 = close, len = input(9, minval=1, title="Length")
out1 = ema(ema1, len) 
ema2 = close, len2 = input(15, minval=1, title="Length")
out2 = ema(ema2, len2) 
ema3 = close, len3 = input(24, minval=1, title="Length")
out3 = ema(ema3, len3)
ema4 = close, len4 = input(39, minval=1, title="Length")
out4 = ema(ema4, len4)
ema5 = close, len5 = input(63, minval=1, title="Length")
out5 = ema(ema5, len5)
ema6 = close, len6 = input(102, minval=1, title="Length")
out6 = ema(ema6, len6)
ema7 = close, len7 = input(165, minval=1, title="Length")
out7 = ema(ema7, len7)
ema8 = close, len8 = input(267, minval=1, title="Length")
out8 = ema(ema8, len8)


plot((out7-out8)/2, title="EMA", color=#6DE807, style=line, linewidth=2,transp=65)
plot((out6-out7)/2, title="EMA", color=#33FFFB, style=line, linewidth=2,transp=65)
plot((out5-out6)/2, title="EMA", color=#20C1FF, style=line, linewidth=2,transp=65)
plot((out4-out5)/2, title="EMA", color=#640CE8, style=line, linewidth=2,transp=65)
plot((out3-out4)/2, title="EMA", color=#FF0000, style=line, linewidth=2,transp=65)
plot((out2-out3)/2, title="EMA", color=#E8910C, style=line, linewidth=2,transp=65)
plot((out1-out2)/2, title="EMA", color=#E87470, style=line, linewidth=2, transp=65)
// 
// 
// E87470
// AF8BFF

채팅에서 언급함