Can anyone please help me to convert tradingview script to Amibroker AFL?

#1
Code:
//@version=2
study(title = "Smoothed HA", shorttitle="Smoothed H.A. Candles", overlay=true)

len=input(10)
o=ema(open,len)
c=ema(close,len)
h=ema(high,len)
l=ema(low,len)

haclose = (o+h+l+c)/4
haopen = na(haopen[1]) ? (o + c)/2 : (haopen[1] + haclose[1]) / 2
hahigh = max (h, max(haopen,haclose))
halow = min (l, min(haopen,haclose))

len2=input(10)
o2=ema(haopen, len2)
c2=ema(haclose, len2)
h2=ema(hahigh, len2)
l2=ema(halow, len2)

col=o2>c2 ? red : blue
plotcandle(o2, h2, l2, c2, title="heikin smoothed", color=col)
Any help is greatly appreciated.
Thank you.
 

sumosanammain

Well-Known Member
#2
You are going in the opposite direction. People move from Amibroker to Tradingview.
Anyway, I have this indicator in AFL format
DM me, will send it to you.
Though you will have to give me a few hours to dig it up. It also has customisable period of smoothening
 
#3
Amibroker is like yahoo which is outdated & Tradingview is like google, the app of new generation. Tradingview is the best among all trading web & applications.
 

Similar threads