//By Glaz Metastock Version of QQE
study("QQE")
src=close
Fast=input(2.6180)
Slow=input(4.2360)
RSI=input(14)
SF=input(2,title='Slow Factor')
WiMA(src, length) =>
MA_s=(src + nz(MA_s[1] * (length-1)))/length
MA_s
RSIndex= ema(rsi(close,RSI), SF)
//{Smoothed ATR of Smoothed RSI}
balraj1 – Welcome to the forums. When making code conversion requests please make sure that your request follows the rules found here:
https://www.prorealcode.com/free-code-conversion/
You can also access that page via the ‘Help’ drop down list.
Also before requesting any code conversion it is a good idea to use the search box to check that it is not already in the library. Perhaps this one meets your needs.
QQE – Quantitative Qualitative Estimation
Also when posting code (even non PRT code) please use the ‘Insert PRT Code’ button. I will edit your post to tidy it up.