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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Gap Up Gap Down Exploration for Amibroker (AFL)
Rating:
0 / 5 (Votes 0)
Tags:
amibroker, exploration
Gap Up Gap Down Exploration
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("GAP"); PL=TimeFrameGetPrice( "L", inDaily, -1 ); PH=TimeFrameGetPrice( "H", inDaily, -1 ); GaUp = Low > PH ; GaDo = High < PL ; // Exploration Filter = GaUp OR GaDo ; DK_status = WriteIf(GaUp," G.Up",WriteIf(GaDo," G.Do"," No Sign")); DK_col = IIf (GaUp,colorLime, IIf (GaDo,colorCustom16,colorLightOrange)); AddTextColumn(DK_status, " Gap ", 1, colorWhite, DK_col); _SECTION_END();
0 comments
Leave Comment
Please login here to leave a comment.
Back