Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Bullish Outside Bar for Amibroker (AFL)
Bullish Outside Bar which will compare today’s low to yday’s low and today’s close to yday’s high
Indicator / Formula
1 2 3 4 5 6 7 8 9 | BullishOutsideBar = Low < Ref ( Low ,-1) AND Close > ( Ref ( High ,-1)); Plot (BullishOutsideBar, "Bullish Outside Bar" , colorAqua ); Buy = BullishOutsideBar; Sell = 0; period = 20; // number of averaging periods m = MA ( Close , period ); // simple moving average Buy = Cross ( Close , m ); // buy when close crosses ABOVE moving average Sell = Cross ( m, Close ); // sell when closes crosses BELOW moving average |
0 comments
Leave Comment
Please login here to leave a comment.
Back