Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
MultiCharts for Amibroker (AFL)
Multi Time Charts displays a chart in different time frame.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | _SECTION_BEGIN ( "OTF" ); BP = Param ( "Time Frame" , 5, 1, 300 ); OFO= TimeFrameGetPrice ( "O" ,BP* in1Minute , 0 ); OFH = TimeFrameGetPrice ( "H" ,BP* in1Minute , 0 ); OFL= TimeFrameGetPrice ( "L" ,BP* in1Minute , 0 ); PlotOHLC ( OFO,OFH ,OFL, C , "" ,23, 64+4096); Plot ( SelectedValue ( C ), "" ,54,16 ); Title = EncodeColor (44)+ Name () + " ( " +BP+ "-minute ) " + EncodeColor (41 )+ WriteVal ( DateTime (), formatDateTime); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back