49
For nMike Divergence Trading Room
Skript med en öppen källkod

I sann TradingView-anda har författaren publicerat detta skript med öppen källkod så att andra handlare kan förstå och verifiera det. Hatten av för författaren! Du kan använda det gratis men återanvändning av den här koden i en publikation regleras av våra ordningsregler. Du kan ange den som favorit för att använda den i ett diagram.

Frånsägelse av ansvar

Informationen och publikationerna är inte avsedda att vara, och utgör inte heller finansiella, investerings-, handels- eller andra typer av råd eller rekommendationer som tillhandahålls eller stöds av TradingView. Läs mer i Användarvillkoren.

Vill du använda det här skriptet i ett diagram?
//@version=2
study("EMA Puppies")

//EMA 5//
EMA5len = input(5, minval=1, title="Length")
EMA5src = input(close, title="Source")
EMA5 = ema(EMA5src, EMA5len)
plot(EMA5,title='EMA5',color=blue,style=line,linewidth =1)


//EMA 8//
EMA8len = input(8, minval=1, title="Length")
EMA8src = input(close, title="Source")
EMA8 = ema(EMA8src, EMA8len)
plot(EMA8,title='EMA8',color=blue,style=line,linewidth =1)

//EMA 13//
EMA13len = input(13, minval=1, title="Length")
EMA13src = input(close, title="Source")
EMA13 = ema(EMA13src, EMA13len)
plot(EMA13,title='EMA13',color=blue,style=line,linewidth =1)

//EMA 10//
EMA10len = input(10, minval=1, title="Length")
EMA10src = input(close, title="Source")
EMA10 = ema(EMA10src, EMA10len)
plot(EMA10,title='EMA10',color=blue,style=line,linewidth =1)

//EMA 30//
EMA30len = input(30, minval=1, title="Length")
EMA30src = input(close, title="Source")
EMA30 = ema(EMA30src, EMA30len)
plot(EMA30,title='EMA30',color=red,style=line,linewidth =1)

//EMA 35//
EMA35len= input(35, minval=1, title="Length")
EMA35src= input(close, title="Source")
EMA35= ema(EMA35src, EMA35len)
plot(EMA35,title='EMA35',color=red,style=line,linewidth =1)

//EMA 40//
EMA40len = input(40, minval=1, title="Length")
EMA40src = input(close, title="Source")
EMA40 = ema(EMA40src, EMA40len)
plot(EMA40,title='EMA40',color=red,style=line,linewidth =1)

//EMA 50//
EMA50len = input(50, minval=1, title="Length")
EMA50src = input(close, title="Source")
EMA50 = ema(EMA50src, EMA50len)
plot(EMA50,title='EMA50',color=red,style=line,linewidth =1)

//EMA 68//
EMA68len = input(68, minval=1, title="Length")
EMA68src = input(close, title="Source")
EMA68 = ema(EMA68src, EMA68len)
plot(EMA68,title='EMA22',color=black,style=line,linewidth =2)