Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Multiple Timeframe for Amibroker (AFL)
It plots Multiple Timeframe charts in a single window.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | _SECTION_BEGIN ( "multiple timeframe" ); n= Param ( "TM" ,1,1,60,1); n_open = TimeFrameGetPrice ( "O" ,n* in1Minute ); n_high = TimeFrameGetPrice ( "H" ,n* in1Minute ); n_low = TimeFrameGetPrice ( "L" ,n* in1Minute ); n_close = TimeFrameGetPrice ( "C" ,n* in1Minute ); n_Open = TimeFrameCompress ( n_Open, n* in1Minute ); n_High = TimeFrameCompress ( n_High, n* in1Minute ); n_Low = TimeFrameCompress ( n_Low, n* in1Minute ); n_Close = TimeFrameCompress ( n_Close, n* in1Minute ); Color= IIf ( C > O , colorYellow , colorBlue ); PlotOHLC (n_open,n_high,n_low,n_close, "n" ,color, styleCandle ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back