Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
GapUp and Bearish Close (Reversal) _Daily for Amibroker (AFL)
Stocks which have opened at a higher price than the previous Day’s Close(Gap-Up) but eventually closed in the red well below yesterday’s Close(>3%). This shows decreasing buying interest in these stocks. These tend to UNDERPERFORM the market in the Short-term //TREND CHANGE VERY High
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 | //Open > PREVCLOSE AND Close < 0.97 * PREVCLOSE //SET A = Open //SET B = Ref(LAST,1) //SET C = LAST //A > B AND C < (0.97 * B) A = Open ; B = Ref ( Close ,-1); C = Close ; Condition1 = (A > B) AND ( C < (0.97 * B)); Sell = Condition1; Filter = Sell ; AddColumn ( C , "Close" ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back