Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Pullback Strategy for Amibroker (AFL)
Pullback strategy with buy and sell signal.This strategy uses 50 SMA and 8 period RSI.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | C1 = L <= LLV ( L ,5); C2 = C >= H -(( H - L )*0.25); C3 = C > MA ( C ,50); C4 = RSI (8) >= 50 ; Buy = C1 AND C2 AND C3 AND C4 ; C5 = H >= HHV ( H ,5); C6 = C <= L +(( H - L )*0.25); C7 = C < MA ( C ,50); C8 = RSI (8) <= 50 ; Sell = C5 AND C6 AND C7 AND C8 ; Filter = Buy OR Sell ; AddColumn ( Buy , "Buy" ); AddColumn ( Sell , "Sell" ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back