Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Donchian Channels for Amibroker (AFL)
Based on Turtle trading technique. Breakout trading system
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 | // Plots a 20 period Donchian channel pds=20; DonchianUpper = HHV ( Ref ( H ,-1),pds); DonchianLower = LLV ( Ref ( L ,-1),pds); DonchianMiddle = (DonchianUpper+DonchianLower)/2; Plot (DonchianUpper, "DU" , colorBlue , styleLine ); Plot (DonchianMiddle, "DM" , colorGreen , styleLine ); Plot (DonchianLower, "DL" , colorRed , styleLine ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back