+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Multi TF In Diff Panes

Multi-Time Frame (MTF) in Different Panes AFL in Amibroker enables the display of multiple time frame indicators in separate panes. Integrated with Amibroker data feed, this AFL allows traders to analyze indicators across various time frames simultaneously. By leveraging Amibroker data feed capabilities, Multi TF In Diff Panes assists traders in gaining a comprehensive view of market trends and indicators across multiple time frames for informed decision-making.

/
//================================================== ============================================
 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);
 }

Open chat
1
Hi, how can I help you?