+91-0000000000

}

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

Chaikin

The Chaikin indicator, developed by Marc Chaikin, measures the accumulation and distribution of money flow in the market. Amibroker Data is essential for traders who rely on Chaikin’s insights. By using Amibroker Data Feeder, traders can access and analyze real-time market data to make informed trading decisions based on Chaikin’s methodology.

_SECTION_BEGIN("Chaikin");
r1 = Param( "Fast Avg", 9, 2, 200, 1 );
r2 = Param( "Slow avg", 14, 2, 200, 1 );
Plot( Chaikin(r1,r2), _DEFAULT_NAME(), ParamColor( "Color",  colorCycle ), ParamStyle("Style")  );

if( Status("action") == actionCommentary )
{
 printf("(Interpretation is not available yet)");
}
_SECTION_END();

_SECTION_BEGIN("MA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 200, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); 
_SECTION_END();

Open chat
1
Hi, how can I help you?