Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Day-Week-Month-Hour ALL IN 1 for Amibroker (AFL)
AM GETTING THIS FORMULA DIRECTLY FROM AUTHOUR..
TRY AND ENJOY..ALL CREDITS GO THE AUTHOUR. THX
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN("day week hour all in one"); /*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); } _SECTION_END();
3 comments
Leave Comment
Please login here to leave a comment.
Back
Hai,Explain how to use this AFL
in 15 mins there is a problem,there is a space problem
Change line 4 as
Period= ParamList(“Base”,“Monthly|Weekly|Daily|Hourly|15Minute|5Minute|1Minute”,0);
Dear hmsanil… thx for indicate the error and ur solution.. THX