OmniTrader Professional Forum OmniTrader Professional Forum
forums calendars search
today this week
 
register logon control panel Forum Rules
You are currently browsing as a guest.
You should logon to access more features
A Self-Moderated Community - ALL MEMBERS, PLEASE READ!
Vote for Members who contribute the most to your trading, and help us moderate content within the Forums.


Only Forum Moderators, Administrators, and the owner of this message may delete it.

 
Manfred

Veteran
100100
Posts: 210

Joined: 4/2/2006
Location: South Africa

User Profile
 
Subject : RE: Qualitative Quantitative Estimation.QQE indica
Posted : 1/12/2019 4:18 AM
Post #30243 - In reply to #30242

In my "shower thought of the day" I wondered why I was smoothing an already smoothed input in the earlier QQE2RSX indicator. All I could see it doing was introducing signal lag, hence I removed it in the version below QQE3RSX.
OT code progression as follows:

1. QQE2 - Original QQE:

#Param "RSIperiod",14,2,100 'default 14 RSI period
#Param "SF",5,1,50 'default 5 RSI smoothing factor
MyRsi = RSI(Close,RSIPeriod)
RsiMa = EMA(MyRsi,SF)

2. QQE2RSX - QQE with JSX (double smoothed):

#Param "RSIperiod",14,2,100 'default 14 RSI period
#Param "SF",5,1,50 'default 5 RSI smoothing factor
MyRsi = JurikRSX(Close,RSIPeriod)
RsiMa = EMA(MyRsi,SF)


3. QQE3RSX - QQE with JSX smoothed with JSX only:

#Param "RSIperiod",14,2,100 'default 14 RSI period
RsiMa = JurikRSX(Close,RSIPeriod)


Attached file : QQE3withJSXnoSF_Example_Omnitrader.png (102KB - 271 downloads)
Attached file : QQE3RSX.txt (4KB - 263 downloads)

Deleting message 30243 : RE: Qualitative Quantitative Estimation.QQE indica


Nirvana Systems
For any problems or issues please contact our Webmaster at webmaster@nirvsys.com.