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

Simple SafeZone Stop (Elder) for Amibroker (AFL)
kelsje
over 13 years ago
Amibroker (AFL)

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

A simple implimination of Elder’s SafeZone Stop method.

Screenshots

Similar Indicators / Formulas

NRTR WATR
Submitted by allexiss over 12 years ago
DODA BAND BUY SELL
Submitted by saas almost 11 years ago
JMA Stoploss
Submitted by kuzukapama over 12 years ago
TSL & HL & New
Submitted by morgen almost 12 years ago
Stop Loss Indicator
Submitted by nabcha almost 14 years ago
ABKP Benchmark Bar
Submitted by amitabh almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
sZPeriod = Param("Period", 9, 2, 50, 1);
sZK = Param("Coefficient", 2, 0.1, 5, 0.1);
sZHold = Param("Hold Period", 3, 0, 10, 1);

lowDelta = IIf(Ref(L,-1) < Ref(L,-2), Ref(L,-2) - Ref(L,-1), 0);
lowDeltaSum = Sum(lowDelta, sZPeriod);
LowDeltaCount = Sum(Ref(L,-1) < Ref(L,-2), sZPeriod);
sZPoint = Ref(L,-1) - sZK * IIf(LowDeltaCount != 0, lowDeltaSum / LowDeltaCount, 0);
sZStop = HHV(sZPoint, sZHold);

Plot(C,"",16,132);
Plot (sZStop,"",10,1);

0 comments

Leave Comment

Please login here to leave a comment.

Back