Skip to main content

Percentage Change - Price, Volume, Open Interest for Amibroker (AFL)

pratapmuley about 9 years ago Amibroker (AFL)

  • Rating:
    4 / 5 (Votes 2)
  • Tags:
    amibroker, exploration

Hi Friends, 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

Thanks …

Indicator / Formula

Copy & Paste Friendly
_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();

4 comments

2. bozmel
over 8 years ago

helo can add value

like this

https://image.ibb.co/ij34v6/Untitled.png

over 8 years ago

Dear Sir, Your Best try to make this afl, but in OI column only zero, not shown OI.. Please solve it… my email id is hiren.3116@gmail.com or mobile +919824752200

5. data
over 8 years ago

hirenvyas, there is nothing wrong with the formula. Open interest is zero because your data is zero.

Leave Comment

Please login here to leave a comment.