Kase Dev Stop

Category: Indicators By: Nicolas Created: October 25, 2015, 9:14 PM
October 25, 2015, 9:14 PM
Indicators
11 Comments

This is the indicator describe by Cynthia Kase in her book “Trading with the odds”. This one is described as “highly calibrated money management tool”, it is composed with 4 lines calculated with recent highest value multiplied by different factors. I think it should be useful for some traders around here 🙂

Here is the Prorealtime code :

//pararemeters:
//n = 20
//periodFast = 5
//periodSlow = 21

DTR = max(max(High - Low[2], abs(High - Close[2])),max(abs(Low - Close[2]),(abs(Low - Close[2]))))
price = typicalprice
avg = average[n](DTR)
st = std[n](DTR)

maFast = average[periodFast](close)
maSlow = average[periodSlow](close)

if maFast<maSlow then
 WarningLine = price+avg
 Dev1 = price+avg + st
 Dev2 = price+avg + 2.2*st
 Dev3 = price+avg + 3.6*st
else
 WarningLine = price-avg
 Dev1 = price-avg - st
 Dev2 = price-avg - 2.2*st
 Dev3 = price-avg - 3.6*st
endif

RETURN Warningline coloured(255,0,0) as "WarningLine", Dev1 coloured(2, 118, 253) as "DevStop1", Dev2 coloured(20, 100, 244) as "DevStop2", Dev3 coloured(1, 71, 250) as "DevStop3"

 

Download
Filename: Kase-Dev-Stop-version-2.itf
Downloads: 111
Nicolas Master
I created ProRealCode because I believe in the power of shared knowledge. I spend my time coding new tools and helping members solve complex problems. If you are stuck on a code or need a fresh perspective on a strategy, I am always willing to help. Welcome to the community!
Author’s Profile

Comments

Logo Logo
Loading...