Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Volatility Stop Indicator (VSTOP) for Amibroker (AFL)
Below code how to call the volatility stop procedure. The procedure returns trailing stop loss. This array can be used to define entries or exits.
For an example on how to use this formula click here
Thanks to E.M.Pottasch for this formula and its improvements
Screenshots
Similar Indicators / Formulas
Indicator / Formula
// E.M.Pottasch, Jul 2010 // from Metastock formula, link: http://stocata.org/metastock/stop_trail_atr.html // added separate parameters for upward and downward market environment function vstop_func(trBull,trBear) { trailArray[ 0 ] = C[ 0 ]; // initialize for( i = 1; i < BarCount; i++ ) { prev = trailArray[ i - 1 ]; if (C[ i ] > prev AND C[ i - 1 ] > prev) { trailArray[ i ] = Max(prev,C[ i ] - trBull[ i ]); } else if (C[ i ] < prev AND C[ i - 1 ] < prev) { trailArray[ i ] = Min(prev,C[ i ] + trBear[ i ]); } else if (C[ i ] > prev) { trailArray[ i ] = C[ i ] - trBull[ i ]; } else { trailArray[ i ] = C[ i ] + trBear[ i ]; } } return trailArray; } per = Param("per",20, 1, 150, 1); multBull = Param("multBull",2, 1, 4, 0.05); multBear = Param("multBear",2, 1, 4, 0.05); trBull = multBull * ATR(per); trBear = multBear * ATR(per); trailArray = vstop_func(trBull,trBear); SetChartBkColor( ParamColor("ColorBG", ColorRGB( 0, 0, 0 ) ) ); GraphXSpace = 5; SetChartOptions(0, chartShowDates); Plot(IIf(trailArray > C,trailArray,Null),"\ntrailShort",ParamColor("ColorTrailShort",ColorRGB(255,0,0)),styleStaircase); Plot(IIf(trailArray < C,trailArray,Null),"\ntrailLong",ParamColor("ColorTrailLong",ColorRGB(0,255,0)),styleStaircase); Plot( C, "\nCandle",colorWhite, styleCandle );
7 comments
Leave Comment
Please login here to leave a comment.
Back
I updated this formula, see also Amibroker library (VSTOP 3).
Thanks I have updated the formula.
The best formula for both Buystop and Sellstop!
Thank You E.M.Pottasch
Very Good.
Thanks
Viswanath
Dear Sir,
I admire your tech capabilities & knowledge in this field of trading.
I read your comments that you are developing/working on new system/indicator.
If it is done, kinldy update and paste in the wisestocktrader.com
Once again thanks & regards,
Viswanath MK
good
Any location to find the vstop_proc.afl file ?? Needed in the Pastie #7 = Volatility Stop Usage Example.afl