Kase Dev Stop

Hii Can any one help me with this

v1=2*TRUERANGE(); v2=MA(v1, BARS=20, CALC=Close, STYLE=Exponential); v3=STD(v2, BARS=20); v4=v2+v3; v4

There is no option to use 2 days true range is this the reason its not correct.

Below is the article regarding the same.

http://www.kaseco.com/support/articles/Setting_Stop-Losses_Using_Price_Volatility.pdf

Hi,

We’ve had a look at the PDF and the script seems alot more complex than the lines you’ve provided so far. The end result has 4 plots (the Warning line, then 3 Dev lines which swap from Above to Below the warning line based on the position of the close. This would require several nested IF() functions to handle the flipping.

It maybe possible, but you would need to request a scripting consult if you wanted us to look into it in more detail. We can review and provide a estimated quotation based on what we find.

https://www.optuma.com/consults/

With regards to your True Range query across two days, it could be done with something like this:

V1 = TrueRange();
V1 + V1[1]

This would combine the True Range value from the current bar and the previous bar.

Thanks Sir. Can you please let me know the quote.

Hi Deepak,

I am also interested in Cynthia Kase’s work. I think the calculation for the “Double True Range”, as she defines it is something like this:

dtr = max(max(high-low[1]), abs(high-close[1])), max(abs(low-close[1]),(abs(low-close[1])))

I’m not an expert on Optuma scripting but learning and would love to collaborate on this.

Warm Regards,
-raaj