Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Show Trailing Stop for Amibroker (AFL)
Very simple visual representation of a point trailing stop. Has to be applied over the price chart.
Position cursor at the buy point in the past and tune parameter to desired value.
Helps to set trailer stops just below whipsaws of previous swings
Indicator / Formula
periods = BarIndex() - SelectedValue(BarIndex()); trv = Param("Trailing", 2, 0.2, 150, 0.01); graph = IIf(periods > 0, HHV(High, periods) - trv, Null); trc = ParamColor( "Trail Color", colorCycle ); Plot(graph, "Trail", trc, 8);
0 comments
Leave Comment
Please login here to leave a comment.
Back