AFL for Percentage Change – Price, Volume, Open Interest
This is Very Simple Percentage change Exploration code of Price, Volume and Open Interest, Explore All in One, use Daily Time frame for Best Intraday Result
Script:
_SECTION_BEGIN(“Explore All”);
Filter=1;
AddColumn(C,”Close”,1.2);
AddColumn(OpenInt,”OpenInt”,1.2);
AddColumn(V,”Volume”,1.2);
AddColumn(ROC(C,1),”% Price change”,1.2);
AddColumn(ROC(OpenInt,1),”% OpenInt change”,1.2);
AddColumn(ROC(V,1),”% Volume change”,1.2);
_SECTION_END();