Autor |
|
_Trader
Administrator
Dabei seit: 12 2001
Herkunft: User altes Forum
Beiträge: 1
|
|
hALLO lEUTE; Kennt jemand den Ela Code vom Vol Stop Indikator??
|
|
13.02.2001, 12:10 |
|
_Martin Hock
Administrator
Dabei seit: 12 2001
Herkunft: User altes Forum
Beiträge: 33
|
|
hmm, Trader meinst Du vielleicht eher einen Average True Range basierten Stop ?
Unter Volatility zeigt die Online Hilfe: --------------- The Volatility function measures the market volatility by plotting a smoothed average of the True Range. It returns an average of the TrueRange over a specific number of bars, giving higher weight to the TrueRange of the most recent bar.
{** © 1987, 1999 Omega Research, Inc. **}
Falls ja, ATR Trailing LX hat den Source code HTH
Martin
|
|
13.02.2001, 22:10 |
|
_Uwe
Administrator
Dabei seit: 12 2001
Herkunft: User altes Forum
Beiträge: 313
|
|
Halllo,
vielleicht ist es dienlich, wenn Du einen entsprechenden Hinweis auf Deine Vorstellung des Indikators (Quellenhinweis über Berechnungsansätze) geben könntest.
Mir ist momentan nur der in dem Buch "Chartformation Ross-Haken", J.Ross, vorhandene Abschnitt "Volatilitätsstopps" in Erinnerung.
Uwe
|
|
14.02.2001, 09:10 |
|
_Phil
Administrator
Dabei seit: 12 2001
Herkunft: User altes Forum
Beiträge: 75
|
|
Wenn du das Wilder Volatility System minst dann:
Input: Length(5), fakt(4); Variables: Trigglong(0), triggshort(0), wtc(0); wtc=(h+l+c)/3;
If wtc > lowest(wtc,length) then trigglong=fakt*avgtruerange(length)+lowest(wtc,length); if wtc < highest(wtc,length) then triggshort=highest(wtc,length)-fakt*avgtruerange(length);
if wtc > trigglong then buy next bar at market; if wtc < triggshort then sell next bar at market;
so long phil
|
|
14.02.2001, 12:10 |
|
|