Hi,
I am trying to write a small indicator that gives a dot when MAs cross. While I can recall SMA or EMA into the code, I am not able to recall say Hull MA.
For example, this below code works
return(ema(50) - sma(5));
But the below code giving out error...
return (HullMA(50)-sma(5a));
I understood that system should store these somewhere and that HullMA is not stored in the system.
What is the solution?
I am trying to write a small indicator that gives a dot when MAs cross. While I can recall SMA or EMA into the code, I am not able to recall say Hull MA.
For example, this below code works
return(ema(50) - sma(5));
But the below code giving out error...
return (HullMA(50)-sma(5a));
I understood that system should store these somewhere and that HullMA is not stored in the system.
What is the solution?
Comment