Grid
Month Week Quarter AFL cho
Amibroker nói lên tất cả mọi thứ cho Giao dịch Forex. Công thức rất hữu ích cho
các nhà giao dịch trong ngày. AFL này có tùy chọn lưới tháng tuần quý. Đó là lý
do tại sao tùy chọn này hữu ích cho nhà giao dịch.
Nếu
bạn sử dụng hệ thống này, bạn có thể dễ dàng theo dõi giá phá vỡ hoặc phá vỡ ở
đâu. Ngoài ra, sử dụng hỗ trợ & kháng cự trên biểu đồ, bạn có thể theo dõi
hành động giá. Tùy chọn phá vỡ giá bắt mắt.
_SECTION_BEGIN("Ami");
GfxSetBkMode(1);
X=750;
Y=1;
Font=10;
GfxSelectFont("Impact",Font*2.2,
550);GfxSetTextColor(colorRed);GfxTextOut("KrT group",x,y);
GfxSelectFont("Impact",Font*2.2,
550);GfxSetTextColor(colorGreen);GfxTextOut("RESEARCH",x+120,Y);
_SECTION_END();
//------------------------------------------------------------------------------
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title
= StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close
%g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot(
C, "Close", ParamColor("Color", colorDefault ), styleNoTitle
| ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();
_SECTION_BEGIN("Grid_Month_Week_Quarter");
ShowGrid
= ParamList("Grid", "Off|Grid_Quarter|Grid_Week|Grid_Month|Grid_year",1);
color_Grid
= ParamColor("Color_Grid",colorBlue);
Style_Grid
= ParamStyle("Style_Grid ",styleHistogram|styleNoLabel|styleNoRescale|styleOwnScale,maskAll);
switch
(ShowGrid )
{
case
"Grid_Quarter":
LastDayofQuarter
= Month() != Ref(Month(), 1)
AND
(Month() == 3 OR Month() == 6 OR Month() == 9 OR Month() == 12);
Last_Quarter
= IIf(Ref(LastDayofQuarter,-1), 1, 0);
Plot(Last_Quarter,
"", color_Grid, Style_Grid);
break;
case
"Grid_Month":
Grid_Month
= IIf(Month() != Ref(Month(),-1), 1, 0);
Plot(Grid_Month,
"", color_Grid, Style_Grid );
break;
case
"Grid_year":
Grid_year
= IIf(Year() != Ref(Year(),-1), 1, 0);
Plot(Grid_year,
"", color_Grid, Style_Grid );
break;
case
"Grid_Week":
Grid_Week
= IIf(DayOfWeek() < Ref(DayOfWeek(), -1), 1, 0);
Plot(Grid_Week,
"", color_Grid, Style_Grid );
break;
case
"Off": 0;
break;
}
Plot(C,"",colorBlack,styleCandle);
_SECTION_END();
👉Tải tại đây