Showing posts with label COMBINE BASE | AMIBROKER INDICATOR-Sun & Cloud System Based Afl. Show all posts
Showing posts with label COMBINE BASE | AMIBROKER INDICATOR-Sun & Cloud System Based Afl. Show all posts

Wednesday, October 9, 2024

COMBINE BASE | AMIBROKER INDICATOR-Sun & Cloud System Based Afl

Hệ thống Sun & Cloud dựa trên amibroker afl điều khiển rất nhiều tín hiệu giao dịch trên thị trường Forex. Nó được viết bởi ông boufalo. Ông đã viết afl này với sự trợ giúp của ý tưởng về  BIỂU ĐỒ ICHIMOKU  . afl amibroker này đã chứng kiến ​​hai khái niệm chính. Một Mặt trời trên bầu trời và hai Đám mây tạo nên tín hiệu tuyệt vời.

Cách đọc biểu đồ dựa trên hệ thống Sun & Cloud

Nghiên cứu biểu đồ trên, tín hiệu cung cấp cho hai loại nhà giao dịch cơ bản: Dành cho nhà đầu tư dài hạn và dành cho nhà giao dịch ngắn hạn.

Đối với các nhà đầu tư dài hạn –

a. Tăng giá khi bạn nhìn thấy mặt trời (Vùng vàng).
b. Giảm giá khi bạn nhìn thấy đám mây đen (Vùng đen).
c. Điểm chuyển từ tăng giá sang giảm giá: Khi đường màu đỏ phá vỡ vùng vàng.
d. Điểm chuyển từ giảm giá sang tăng giá: Khi đường màu đỏ phá vỡ đám mây đen.

Và đối với giao dịch ngắn hạn –

Đọc những thay đổi giữa đường trắng và đường đỏ.

NB: Nhưng afl này tốt hơn cho giao dịch dài hạn. Bạn có thể đạt được kết quả tốt hơn bằng cách sử dụng afl n

_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 206");

// Bollinger Fibonacci Bands //

 

GraphXSpace = 3;

per = Param("Period",20,10,55,1);

TH =IIf(Ref(C,-1) > H,Ref(C,-1),H);

 

TL=IIf(Ref(C,-1) < L,Ref(C,-1),L);

TR = TH-TL;

TRa= Wilders(TR,per);

UpperBand3 =MA( C, per) + ( 4.2360 * TRa);

UpperBand2=MA( C, per) + ( 2.6180 * TRa);

UpperBand1=MA( C, per) + ( 1.6180 * TRa);

 

MidPoint=MA(C, per);

 

LowerBand1=MA( C, per) - ( 1.6180 * TRa);

LowerBand2=MA( C, per) - ( 2.6180 * TRa);

LowerBand3=MA( C, per) - ( 4.2360 * TRa);

 

 

Plot(MidPoint,"",colorGreen,4);

Plot(UpperBand1,"",colorRed,1);

Plot(LowerBand1,"",colorRed,1);

Plot(UpperBand2,"",colorAqua,1);

Plot(LowerBand2,"",colorAqua,1);

Plot(UpperBand3,"",colorYellow,1);

Plot(LowerBand3,"",colorYellow,1);

 

PlotOHLC(O,H,L,C,"",colorWhite,64);

_SECTION_END();

 

_SECTION_BEGIN("Sun & Cloud_i");

// by boufalo 13-1-2011

// Sun & Cloud System based on idea of ICHIMOKU CHART

/*

Reading of the chart,

1.for long term investors,

a.Bullish when you see the sun(Yellow zone)

b.Bearish when you see the dark cloud(Black

zone)

c.Turning point from bullish to bearish:When

red line break into the yellow zone.

d.Turning point from bearish to bullish: When

red line break through the dark cloud.

2.for short term trading,

reading the changes between the white line and

the red line

*/

 

Long2 =EMA( ( HHV( H, 20 ) + LLV( L, 20) )/2,20);

Long1 =EMA( ( HHV( H, 5 ) + LLV( L, 5) )/2,10);

K=(H+2*C+L)/4;

Z=  ( HHV( H, 3 ) + LLV( L, 3) )/2 ;

SP=IIf(K>=Z*1.05,1.10*Z,IIf(K<Z*1.05 AND K>=Z,1.0*Z,IIf(K<Z,0.9*Z,0.9*Z)));

M=IIf(Long1>long2,Long2,Long1);

 

Plot(C,"Close",colorBlack,styleLine);

 

SetChartBkGradientFill( ParamColor("Sky",ColorRGB( 128, 128, 255 )),ParamColor("Sky lower", colorGrey40),ParamColor("Text",

 

colorLightGrey));

PlotOHLC( Long1 ,  Long1 ,  m, Long1 ," ", ParamColor("Left Side",ColorRGB( 213, 213, 0 )),styleCloud );

PlotOHLC( Long2 ,  Long2 ,  m, Long2 ," ", colorGrey40,styleCloud );

PlotOHLC( Long1 ,  Long1 ,  m, Long1 ," ", ParamColor("Land",ColorRGB( 115, 61, 54 )),styleArea );

 

Title=Name() + " { Sun & Cloud } : \n"+WriteIf(Long1>long2,"Rising Sun","Dark Cloud Cover");

 

GfxSelectSolidBrush(colorOrange);

GfxCircle( 100, 85 , 28 );

GfxSelectSolidBrush(colorYellow);

GfxSelectPen( colorRed );

GfxCircle( 100, 85 , 20 );

_SECTION_END();

 👉Tải tại đây

 https://drive.google.com/file/d/1hqQo66O7yi9RiZEWzVNaNOX1GcYkbJmp/view?usp=drive_link