3 EMA Indicator with tradingview pine script version 4

preview_player
Показать описание
Tradingview Pine Script Course;

Make your own custom indicator with tradingview pine script. Learn how to add 3 EMA as a single indicator to your chart.
If you are using Trading view free version ,this can be very useful for you.

Pinescript code;

//Made by Elmas Development

//EMA1
study(title="Moving Average Exponential", shorttitle="EMA", overlay=true, resolution="")
len = input(50, minval=1, title="Length")
src = input(close, title="Source")
out = ema(src, len)

//EMA2
len2 = input(100, minval=1, title="Length2")
src2 = input(close, title="Source2")
out2 = ema(src2, len2)

//EMA3
len3 = input(150, minval=1, title="Length3")
src3 = input(close, title="Source3")
out3 = ema(src3, len3)

#3EMA #Indicator #PineScript #TradingView
Рекомендации по теме
Комментарии
Автор

I WAST 2 HOURS BUT FINALLY I WACHTED YOUR VIDEO. THANKS A LOT SIR

habeebaaslam
Автор

Exactly what I was trying to do for last 1 hour. Thank you so much 🙏☺️🥰

nehachauhan
Автор

Looking same from last 7 days and watched lots of junk video and finally got this video, Thanks bro for your kind help... This is the exact what i was looking 🙏🙏🙏

praveenbhatt
Автор

script is working . Thank yOu so much SIR !!!

rajputyogeshpanwar
Автор

Exactly what I was looking for...! Thank you very much.. Works Perfectly!

cyand
Автор

Extremely efficient direction/communication. VERY awesome!!! 💕

liftYAHusha
Автор

Thanku very much sir, i am very greatful for you.

vedprakashverma
Автор

How do you plot the number of the length of the candle(low to high) above the candle?

Berghiker
Автор

please can you tell me how to plot 60 min EMA on 5 min chart

ninjaclan
Автор

thak you very much sir code helpful me

indudev-zhev
Автор

great, how to add a crossover with labels

AndreAndPetya
Автор

hello nice thanks. can we add the price line crossing the 3 ema along with it

freemanstories
Автор

Instead of using src2 src3 for example you could change the = to := and it would work.

nikkfrostt
Автор

this do not work on trading view anymore I I just tried it

knell