TradingView
gokhankonuk79
3 May 2018 15:31

GKSMA Combo 

TRON / BitcoinBitfinex

Açıklama

//@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")

Sürüm Notları

//@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")
Daha Fazla