Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Pivot Breakout Scanner for Amibroker (AFL)
Simple but effective trading system for floor trading. Find stocks where the pivot has broken out.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | _SECTION_BEGIN ( "PivotBreakOut-Scanner" ); xH = Ref ( H ,-1); xO = Ref ( O ,-1); xC = Ref ( C ,-1); xL = Ref ( L ,-1); VolMin=1000000; Pv = (xH + xL + xC) / 3; R1 = (Pv * 2) - xL; S1 = (Pv * 2) - xH; R2 = Pv + (R1 - S1); S2 = Pv - (R1 - S1); R3 = xH + 2*(Pv - xL); S3 = xL - 2*(xH - Pv); Filter = Buy = ((( Open < S3) AND ( Close > S3) AND ( Volume >VolMin)) OR (( Open < S2) AND ( Close > S2) AND ( Volume >VolMin)) OR (( Open < S1) AND ( Close > S1) AND ( Volume >VolMin)) OR (( Open < Pv) AND ( Close > Pv) AND ( Volume >VolMin)) OR (( Open < R1) AND ( Close > R1) AND ( Volume >VolMin)) OR (( Open < R2) AND ( Close > R2) AND ( Volume >VolMin))) AND ( Low == Open ) ; AddColumn ( Close , "Close" ); AddColumn ( Pv, "Pivot" ); AddColumn ( Open , "Open" ); AddColumn ( ( Close - Open )/ Open *100, "OC-R" ); AddColumn ( ( High - Low )/ Low *100, "HL-R" ); AddColumn ( ( Close - Open )/( High - Low )*100, "CS-R" ); AddColumn ( Volume * Close , "Value" ); AddColumn ( Volume , "Volume" ); _SECTION_END (); |
2 comments
Leave Comment
Please login here to leave a comment.
Back
This AFL gives syntax error 31
Please rectify
Fixed thanks for pointing it out.