Cleus / Publications
Forum
Trying to convert a Heiken Ashi related PineScript to MQL5
The pinescript code is like the following ha = heikinashi(tickerid) ha_close = security(ha, res, close[ 1 ]) ma = ema(ha_close[ 1 ], 30 ) I'm trying to use the above code in MetaTrader5. So I tried the following, [ Using https://www.mql5.com/en/code/33 for getting Heikin Ashi values ] int handleHA =