TradingView
glaz
27 de Jun de 2015 09:48

Slow Heiken Ashi 

Australian Dollar/U.S. DollarFXCM

Descrição

Period= Length of the slow HA
Fastend and Slowend = just calculations for the Kama function no need to change those.
Signal= Shows/Hides the triangles
Comentários
BorC
How do you set your style? I did not find this style in the candlestick options
MaximusGains
@BorC, Click the eye 👁‍🗨 ot the top
MaximusGains
@MaximusGains, I meant here
ostheimerdevelopment
Nomallfx
I'm getting this when trying to apply...

Invalid value of the `length’ argument (0) `sum’ in the function. It should be >0

How do i remedy?
UnknownUnicorn2698097
@Nomallfx, change the 17 line
hakamaper=1
StillAlive
@Mohi1006, thnx :)
ryanhhh
@Mohi1006,
Hello.
I have tried doing this but it's still saying `length’ argument (0) `sum’ in the function. It should be >0'
Do you have to activate this change once you have altered the code?
Many thanks

P.S. I just discovered you have to reapply the indicator to the chart then it works fine
Abady-Habra
@Nomallfx, did you find the solution?
ruben.castro.359
Hi Glaz.
Love this script. Nice job.
Just a litter contribution . Add this couples of lines in order to have the signal Alert.

short= cross(vOpen,vClose) and vOpen[1]<vClose[1]?vHigh:na
long= cross(vOpen,vClose) and vOpen[1]>vClose[1]?vLow:na
alertcondition(short,title='Short Signal', message='Short Signal')
alertcondition(long,title='Long Signal', message='Long Signal')
Mais