RE: Dynamisches Stop/Profit Target | |
Schau dir mal diese Variante für ein Short-Stop an. Die Long Seite ist vice versa. Das Ganze basiert auf einem S&C Artikel (ich weiss im Moment nicht mehr welcher)
Input: length(Numeric),sdev(Numeric); Vars: lastl(0), actstop(0);
{if stop condition <= (set new stop <=> remember the low)} if c[1] > actstop then lastl = l;
{ if new low <= set new stop} if l < lastl then lastl = l;
actstop = lastl + BollingerB(TrueRange, LENGTH, SDEV);
{Vola_DevStopShort = MinList(l + BollingerB(TrueRange, LENGTH, SDEV), iff(c[1] > Vola_DevStopShort[1], l*2, Vola_DevStopShort[1]))urspruengliche Variante Volastop von M. Vakkur Stocks&Commodities}
Vola_DevStopShort = actstop;
|