Skip to main content

Cash Volume for Amibroker (AFL)

Christineleics over 9 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 2)
  • Tags:
    exploration, ambroker

This formula is to find out the close price position relative to different moving averages.

Indicator / Formula

Copy & Paste Friendly

CV1=C*V/100;

CV=C*V>0;

CtoMA200=(C-MA(C,200))/MA(C,200)*100;
CtoMA100=(C-MA(C,100))/MA(C,100)*100;
CtoMA50=(C-MA(C,50))/MA(C,50)*100;
percentage=(C-Ref(C,-1))/Ref(C,-1)*100;


Filter = CV;

AddColumn( Open, "Open" );

AddColumn( Close, "Close" );








AddColumn(CV1,"CV");
AddColumn(percentage,"%",1.2);
AddColumn(CtoMA200,"CtoMA200");
AddColumn(CtoMA100,"CtoMA100");
AddColumn(CtoMA50,"CtoMA50");

0 comments

Leave Comment

Please login here to leave a comment.