Convert PineScript (Tradingview) TO mql5 Indicato

 
Hello, i need to convert this script to mql5:
len = 100
src = close
line = wma(2*wma(src, len/2) - wma(src,len), floor(sqrt(len)))
lineColor = close > line ? #00bcd3 : #e91e63

Thanks you all
 
Salvatore Mazzariello: I need to convert this script to mql5 ...

Then use the Freelance section to hire someone to convert it for you. The forum is not the place for such requests.

It may be just 4 lines in PineScript but it will require many more lines of MQL5 code. The two systems work very differently.

Trading applications for MetaTrader 5 to order
Trading applications for MetaTrader 5 to order
  • 2022.06.20
  • www.mql5.com
The largest freelance service with MQL5 application developers
 
Salvatore Mazzariello: Hello, i need to convert this script to mql5:
line = wma(2*wma(src, len/2) - wma(src,len), floor(sqrt(len)))

No, you don't. Just search for a zero lag moving average.