+91-0000000000

}

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

Hadiffco Indicator

The Hadiffco Indicator in Amibroker could potentially involve calculating differences between specific indicators or price data. Although not directly reliant on the Amibroker data feeder, it aids traders by offering insights into indicator variations, potentially assisting in confirming trade signals or identifying divergence.

/_SECTION_BEGIN("HaDiffCO indicator");
HaClose = (O+H+L+C)/4;
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
HaDiffCO = HaClose - HaOpen;
per = Param("MA Periods", 3, 3, 50, 1 );
Plot( HaDiffCo, "HaDiffCO", colorRed );
Plot( MA( HaDiffCo, per ), "MA("+per+")", colorBlue );
_SECTION_END();

Open chat
1
Hi, how can I help you?