Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
MultiFrame for Amibroker (AFL)
Copy & Paste Friendly
Back
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 | SetChartBkGradientFill ( colorlightblue , colorwhite , colorWhite ); Period= ParamList ( "Base" , "Monthly|Weekly|Daily|Hourly|15Minute|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 ); } |