Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Show Trailing Stop for Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
amibroker, stop loss

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

Copy & Paste Friendly
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