TradingView
gokhankonuk79
3 พฤษภา 2018 เวลา 15 นาฬิกา 31 นาที

GKSMA Combo 

TRON / BitcoinBitfinex

คำอธิบาย

//@version=3

study("SMA Combo" , overlay=true , shorttitle="GKSMACOMBO")
src = input(title="Source" , type=source , defval=close)

length1 = input(7, "MOV Length1")
plot(sma(src , length1) , color=yellow ,linewidth =3 , title = "MOV1")

length2 = input(25, "MOV Length2")
plot(sma(src , length2) , color=blue ,linewidth =1 , title = "MOV2")

length3 = input(99, "MOV Length3")
plot(sma(src , length3) , color=purple ,linewidth =2 , title = "MOV3")

เอกสารเผยแพร่

//@version=3

study("SMA Combo" , overlay=true , shorttitle="GKSMACOMBO")
src = input(title="Source" , type=source , defval=close)

length1 = input(7, "MOV Length1")
plot(sma(src , length1) , color=black ,linewidth =3 , title = "MOV1")

length2 = input(25, "MOV Length2")
plot(sma(src , length2) , color=blue ,linewidth =1 , title = "MOV2")

length3 = input(99, "MOV Length3")
plot(sma(src , length3) , color=purple ,linewidth =2 , title = "MOV3")
เพิ่มเติม