Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
GapDn and Bullish Close (Reversal) _ Daily_Explore for Amibroker (AFL)
Stocks which have opened at a lower price than the previous Day’s Close(Gap-Down) but eventually closed in the green well above yesterday’s Close(>3%). This shows increasing buying interest in these stocks. These tend to OUTPERFORM the market in the Short-term //TREND CHANGE – VERY High
Similar Indicators / Formulas
Indicator / Formula
//Open < PREVCLOSE AND Close > 1.03 * PREVCLOSE //SET A = Open //SET B = Ref(LAST,1) //SET C = LAST //A < B AND C > (1.03 * B) A = Open; B = Ref(Close,-1); C = Close; Condition1 = (A < B) AND (C > (1.03 * B)); Buy = Condition1; Filter = Buy; AddColumn(C,"Close");
0 comments
Leave Comment
Please login here to leave a comment.
Back