Sunday, May 30, 2010

ADR (Average Daily Range) "devstop" - Formula pro real time

==> see S&C june 2010


inutile come l'indicatore di K. Case's Devstop

for i = 1 to 7 do
r=abs(high[i]-low[i])
next

dr7=highest[7](r)
adr=dr7/7
//un po' pesante come media
stopprofit=0.15*adr
stopplos=0.1*adr


if RSI[13]>=50 then
stop1=totalprice+stopprofit
stop2=totalprice-stopplos
else
stop1=totalprice-stopprofit
stop2=totalprice+stopplos
// a seconda della posizione long o short le posizioni si invertono
endif
return stop1, stop2



non molte utile ai fini pratici in ottica daily. Tende ad avere comportamenti ed andamenti similari al DevStop di Cinthya Kase. La sua costruzione è tutta per frame intraday


Any source

No comments:

Post a Comment