Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Simple SafeZone Stop (Elder) for Amibroker (AFL)
A simple implimination of Elder’s SafeZone Stop method.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 | 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