+91-0000000000

}

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

Oscillator 517_535_1070 Combined

The Oscillator 517_535_1070 Combined, within Amibroker AFL, presumably integrates three distinct oscillators with periods of 517, 535, and 1070. This combined indicator aims to provide comprehensive insights into market momentum and potential trend reversals based on Amibroker data feed.

/
_SECTION_BEGIN("OSCILLATOR 517_535_1070 Combined");
A1 = MA(C,5);
B1 = MA(C,17);
D1 = A1-B1;

Colorm=IIf(D1>Ref(D1,-1),colorBrightGreen,colorDarkGreen);

Plot( D1, "517", Colorm, styleHistogram|styleNoLabel );



PlotOHLC( 0, D1, 0 , 0 , "517",Colorm, styleCloud | styleNoLabel);



//////////////////////////////////////////////////////////////////////////////////////
A2 = MA(C,5);
B2 = MA(C,35);
D2 = A2-B2;


Colorm=IIf(D2>Ref(D2,-1),colorRed,colorDarkRed);
Plot( D2, "535", Colorm, styleHistogram|styleNoLabel );



PlotOHLC( 0, D2, 0 , 0 , "535",Colorm, styleCloud | styleNoLabel);



//////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
A3 = MA(C,10);
B3 = MA(C,70);
D3 = A3-B3;


Colorm=IIf(D3>Ref(D3,-1),colorPaleBlue,colorBlue);
Plot( D3, "1070", Colorm, styleHistogram|styleNoLabel );



PlotOHLC( 0, D3, 0 , 0 , "1070",Colorm, styleCloud | styleNoLabel);



//////////////////////////////////////////////////////////////////////////////////////
_SECTION_END();

Open chat
1
Hi, how can I help you?