⭐ smithee Posted June 16, 2019 Report Posted June 16, 2019 Does anyone have Kase Statware indicator? Quote
JackTheBlack Posted April 29, 2020 Report Posted April 29, 2020 Pseducode: KSDI (up) = (ln(Ho/Ln))/volatility KSDI (down) = (ln(Lo/Hn))/volatility Volatility = stddev (ln(P/Pn) Ho = this bar’s high Lo = this bar’s low Hn = high n bars ago Ln = low n bars ago n = a number from n1 to n2 that gives the highest resultant value for the index. KasePeakOscillator = KSDI(up) – KSDI(down) KaseCD = KasePeakOscillator – Average(KasePeakOscillator)n More info: www.kaseco.com/support/articles/The_Two_Faces_of_Momentum.pdf Quote
nkp9999 Posted November 23, 2021 Report Posted November 23, 2021 Does any one have the KASE set of indicators? Thanks. Quote
⭐ Azazel Posted June 3, 2022 Report Posted June 3, 2022 (edited) Here is the Kase StatWare manual: hxxps://manualzz.com/doc/7307402/manual---kase-statware Edited September 28, 2022 by Azazel FXWallabie and ⭐ gadfly 2 Quote
⭐ Azazel Posted August 30, 2022 Report Posted August 30, 2022 (edited) This is the Indicator: Kase CD by Cynthia Case, in easylanguage for Tradestation and MultiCharts: ------------------------------------------------------------------------ {Kase CD - by Cynthia Case } inputs: LEN(30), Smooth(3), Strength(1); vars: RWH(0), RWL(0), PEAK(0), KCD(0); RWH = (H[0] - L[LEN]) / (AvgTrueRange(LEN) * SquareRoot(LEN)); RWL = (H[LEN] - L[0]) / (AvgTrueRange(LEN) * SquareRoot(LEN)); PEAK = WAverage((RWH - RWL),Smooth); KCD = (PEAK) - average(Peak,8); plot1(KCD,"KCD"); plot2(0,"Zero"); if CheckAlert then begin if BullishDivergence(low,plot1,Strength,15) = 1 then Alert = true; if BearishDivergence(high,plot1,Strength,15) = 1 then Alert = true; end; ---------------------------------------------------------------- hxxps://postimg.cc/SJLjQBzK Edited August 30, 2022 by Azazel Quote
⭐ Azazel Posted September 28, 2022 Report Posted September 28, 2022 This is the Indicator: Kase Peak Oscillator by Cynthia Case, in easylanguage for Tradestation and MultiCharts: ------------------------------------------------------------------- Function, Name : StdDevx inputs : Price(NumericSeries), Length(NumericSimple); vars : SumSqr(0), Avg(0), Counter(0); if Length <> 0 then begin Avg = Average(Price,Length); SumSqr = 0; for counter = 0 to Length - 1 begin SumSqr = SumSqr + (Price[counter]-Avg) * (Price[counter]-Avg); end; StdDevX = SquareRoot(SumSqr / (Length-1)); end else StdDevX = 0; ----------------------------------------------------------------------- Indicator, Name : Kase Peak Oscillator inputs:LEN(30), Smooth(3), Strength(1); vars: RWH(0), RWL(0),PEAK(0), MEAN(0), STD(0); RWH = (H[0] - L[LEN]) / (AvgTrueRange(LEN) * SquareRoot(LEN)); RWL = (H[LEN] - L[0]) / (AvgTrueRange(LEN) * SquareRoot(LEN)); PEAK = WAverage((RWH - RWL),3); MEAN = average(PEAK,LEN); STD = StdDevx(PEAK,LEN); if (MEAN + (1.33 * STD)) > 2.08 then value1 = (MEAN + (1.33 * STD)) else value1 = 2.08; if (MEAN - (1.33 * STD)) < -1.92 then value2 = (MEAN - (1.33 * STD)) else value2 = -1.92; plot1(PEAK,"PeakOsc"); if PEAK[1] >= 0 and PEAK > 0 then plot2(value1,"+/-97.5%"); if PEAK[1] <= 0 and PEAK < 0 then plot2(value2,"+/-97.5%"); ----------------------------------------------------------------------------- hxxps://postimg.cc/r0Hq0jDK Quote
⭐ gadfly Posted October 2, 2022 Report Posted October 2, 2022 Kase Peak Oscillator for ThinkorSwim and two articles about it: [spoiler=CK-Oscillator]https://www.mediafire.com/file/kybf6qcncnz28s8 ⭐ TRAD3R.GURU and ⭐ smithee 2 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.