Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Monthly, Weekly, Daily, Hourly, 15 Minute, 5 Minute and 1 Minute charts in one chart for Amibroker (AFL)
This will Plot monthly, weekly, daily, Hourly, 15 Minute, 5 Minute and 1 Minute charts in one chart but different panes.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | /*This will Plot monthly, weekly, daily, Hourly, 15 Minute, 5 Minute and 1 Minute charts in one chart but different panes. */ //================================================== ============================================ SetChartBkGradientFill ( colorWhite , colorLightGrey , colorWhite ); Period= ParamList ( "Base" , "Monthly|Weekly|Daily|Hourly|15Mi nute|5Minute|1Minute" ,0); if (Period== "Monthly" ){ TimeFrameSet ( inMonthly ); PlotOHLC ( Open , High , Low , Close , "Monthly Price Chart" , colorBlack , style = styleCandle | styleOwnScale ); Plot ( V , "Volume" , colorWhite , styleHistogram ); } if (Period== "Weekly" ){ TimeFrameSet ( inWeekly ); PlotOHLC ( Open , High , Low , Close , "weekly Price Chart" , colorBlack , style = styleCandle | styleOwnScale ); Plot ( V , "Volume" , colorWhite , styleHistogram ); } if (Period== "Daily" ){ TimeFrameSet ( inDaily ); PlotOHLC ( Open , High , Low , Close , "Daily Price Chart" , colorBlack , style = styleCandle | styleOwnScale ); Plot ( V , "Volume" , colorWhite , styleHistogram ); } if (Period== "Hourly" ){ TimeFrameSet ( inHourly ); PlotOHLC ( Open , High , Low , Close , "Hourly Price Chart" , colorBlack , style = styleCandle | styleOwnScale ); Plot ( V , "Volume" , colorWhite , styleHistogram ); } if (Period== "15Minute" ){ TimeFrameSet ( in15Minute ); PlotOHLC ( Open , High , Low , Close , "15Minute Price Chart" , colorBlack , style = styleCandle | styleOwnScale ); Plot ( V , "Volume" , colorWhite , styleHistogram ); } if (Period== "5Minute" ){ TimeFrameSet ( in5Minute ); PlotOHLC ( Open , High , Low , Close , "5Minute Price Chart" , colorBlack , style = styleCandle | styleOwnScale ); Plot ( V , "Volume" , colorWhite , styleHistogram ); } if (Period== "1Minute" ){ TimeFrameSet ( in1Minute ); PlotOHLC ( Open , High , Low , Close , "1Minute Price Chart" , colorBlack , style = styleCandle | styleOwnScale ); Plot ( V , "Volume" , colorWhite , styleHistogram ); } |
0 comments
Leave Comment
Please login here to leave a comment.
Back