QQE on chart Quantitative Qualitative Estimation
Forums › ProRealTime forum Français › Support ProBuilder › QQE on chart Quantitative Qualitative Estimation
- This topic has 4 replies, 2 voices, and was last updated 1 year ago by supertiti.
-
-
02/23/2023 at 11:40 AM #210260
Bonjour à tous,
Je ressors un code des tiroirs de Nicolas , désolé je ne peux pas le mettre au bon format sur ce post car je n’ai pas le bouton qui va bien (même avec CTR+F5)
Est-il possible de le convertir pour qu’il apparaisse sur le graphe des prix en QQE on chart?
par avance merci.
123456789101112131415161718192021222324252627282930313233343536373839// QQE indicator PRC//11.10.2016 //Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledgeWildersPeriod = RSIPeriod * 2 - 1if barindex>WildersPeriod thenMyRsi = rsi[RSIPeriod](close)RsiMa = exponentialaverage[SF](MyRsi)AtrRsi = abs(RsiMa[1] - RsiMa)MaAtrRsi = exponentialaverage[WildersPeriod](AtrRsi)dar = exponentialaverage[WildersPeriod](MaAtrRsi) * QQEtrr=TrLevelSlow[1]dv = trrif RsiMA[0]<trr thentrr = RsiMA[0] + darif(RsiMA[1]<dv) thenif(trr>dv) thentrr=dvendifendifelsif RsiMA[0]>trr thentrr = RsiMA[0] - darif(RsiMA[1]>dv) thenif(trr<dv) thentrr=dvendifendifendifTrLevelSlow=trrendifRETURN trr as "QQE" , RsiMA as "RsiMA", 50 as "level 50" , niveaubas as " niveau bas " , 100 - niveaubas as " niveau haut "// parameters// RSIPeriod = 14 erso = 12// SF = 5// QQE=4.236 = slow ATR ........... fast ATR = 2.618// niveaubas = 30//QQE ProRealTime indicator — or Quantitative Qualitative Estimation, is based on a rather complex calculation of the smoothed RSI indicators.
//The QQE indicator consists of a smoothed Relative Strength Index (RSI) indicator and two volatility-based trailing levels (fast and slow). The Fast Trailing Level (TL) and Slow TL are constructed by calculating the ATR of the smoothed RSI over n-periods and then further smoothing the ATR using an additional n-periods Wilders smoothing function. This smoothed ATR of RSI is then multiplied by the Fast and Slow ATR Multipliers to calculate the final Fast and Slow Trailing Levels.
02/24/2023 at 10:35 AM #210370La version ci-dessous color le fond du graphique en fonction du QQE:
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061//PRC_QQE | indicator//11.10.2016//Nicolas @ www.prorealcode.com//Sharing ProRealTime knowledge//--- parametersRSIPeriod = 14SF = 5QQE=4.236//---WildersPeriod = RSIPeriod * 2 - 1if barindex>WildersPeriod thenMyRsi = rsi[RSIPeriod](close)RsiMa = exponentialaverage[SF](MyRsi)AtrRsi = abs(RsiMa[1] - RsiMa)MaAtrRsi = exponentialaverage[WildersPeriod](AtrRsi)dar = exponentialaverage[WildersPeriod](MaAtrRsi) * QQEtrr=TrLevelSlow[1]dv = trrif RsiMA[0]<trr thentrr = RsiMA[0] + darif(RsiMA[1]<dv) thenif(trr>dv) thentrr=dvendifendifelsif RsiMA[0]>trr thentrr = RsiMA[0] - darif(RsiMA[1]>dv) thenif(trr<dv) thentrr=dvendifendifendifTrLevelSlow=trrif trr < 50 thentrend=-1elsif trr > 50 thentrend=1endifif trr crosses under 70 thentrend=0endifif trend=1 thenbackgroundcolor(0,200,100,50)elsebackgroundcolor("red",50)endifendifRETURN //trr coloured(200,100,0) as "QQE" , RsiMA coloured(0,100,200) as "RsiMA", 50 as "level 50",70,3002/24/2023 at 11:28 AM #210404Bonjour Nicolas,
merci pour le code , mon idée d’avoir le QQE sur les prix sous-entend de pouvoir “encadrer ” les prix par les deux courbes du QQE et
aussi de voir les divergences directement sur le graphe prix : les prix rien que les prix !
Alors si c’est possible ?
Bonne journée et bons trades.
02/24/2023 at 5:31 PM #210443Le QQE n’encadrera pas le prix, le QQE encadre le RSI lissé qui est un oscillateur normalisé. Pour cela il faudrait reverse enginer l’indicateur pour qu’il s’adapte complément au prix, ci-joint une tentative de ce que à quoi ça ressemble sur le graphique du prix (issu d’un code d’une autre plateforme), comme tu peux le voir cela n’encadre rien du tout et à une pertinence douteuse.
02/24/2023 at 7:00 PM #210447 -
AuthorPosts