+91-0000000000

}

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

Money Flow

Money Flow is an essential component of trading analysis, and traders often rely on Amibroker AFLs to assess the movement of funds in and out of an asset. With Amibroker Data Feeder, traders can access real-time data to calculate money flow accurately. This tool helps traders gauge market sentiment and make informed decisions based on the flow of money, enhancing their trading strategies.

_SECTION_BEGIN("Chaikin Money Flow");

function CMF(r1)
{
//Graph0=(AD(C,H,L,V,r1)*V)/ Sum(V,r1);
Graph0=Sum(IIf( H>L && V>0,((( C-L )-( H-C )) / ( H-L ))*V,0),r1) / Sum(V,r1);
Plot(Graph0, "Chaikin Money Flow ("+r1+")", IIf(Graph0>Ref(Graph0,-1),ParamColor("Up Color", colorGreen ),
ParamColor("Down Color", colorRed )), ParamStyle( "Style", styleHistogram | styleThick, maskHistogram  ) );

}

r1=Param("Periods", 21);
CMF(r1);

_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?