Visit our COVID-19 site for latest information regarding how we can support you. For up to date information about the pandemic visit www.sacoronavirus.co.za.

bs-regular
bs-extra-light
bs-light
bs-light
bs-cond-light-webfont
bs-medium
bs-bold
bs-black

Community


Share knowledge. Ask questions. Find answers.

Online Share Trading

Engage and learn about markets and trading online

Average volume on Amibroker

Reply
Not applicable
Any tool for above?
0 Kudos
3 REPLIES 3
kr_pto
Super Contributor
what specifically are you looking for in an average? you can set your own formula for EMA on volume (as an example) if you want:

_SECTION_BEGIN("Volume");
Plot( Volume, _DEFAULT_NAME(), IIf( C > O, ParamColor("Up Color",
colorGreen ), ParamColor("Down Color", colorRed ) ), ParamStyle(
"Style", styleHistogram | styleThick, maskHistogram ) );
_SECTION_END();

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

0 Kudos
Not applicable
ja, just pull over a moving average over the volume window and set the properties/parameters. I personally use a 15 day MA.
0 Kudos
Not applicable
0 Kudos