Einzelnen Beitrag anzeigen
  #1 (permalink)  
Alt 05.11.15
nothin_ nothin_ ist offline
Neues Mitglied
 
Registriert seit: Nov 2015
Beiträge: 7
nothin_ befindet sich auf einem aufstrebenden Ast
Standard Suche speziellen StochastikRSI

Hallo zusammen,
ich bin auf der Suche nach einem Indikator mit folgender Berechnung (ist leider aus einem anderen Programm deshalb kann ich ihn nicht nutzen):

Code:
//==================================================
Period = Param("Periods",14,4,45,1);
SK = Param("SmoothingK",1,3,45,1);
SD = Param("SmoothingD",3,1,45,1);

StochRSI = MA((((RSI(Period) - LLV(RSI(Period),Period)) / (HHV(RSI(Period),Period) - LLV(RSI(Period),Period)))*100),SK);
StochRsiD = MA(StochRSI,SD);
//==================================================

MA is SMA
LLV is lowest low value of RSI of same period
HHV is highest high value of RSI of same period

Standard StochRSi ist StochRSI(14, 1, 3)

So it is

StochRSI = SMA(((RSI(14)-LLV(RSI(14),14)) / (HHV(RSI(14),14)-LLV(RSi(14),14)))*100,1);
StochRSID = SMA(StochRSI,3);
Vielleicht benutzt ihn ja jemand oder weiß wo ich in herbekomme.
Schöne Grüße!
nothin_