Skip to main content

export data out of files for Amibroker (AFL)

kilroy0514 almost 15 years ago Amibroker (AFL)

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

Hi there,

you can use this AFL for exporting out of the data into a file.

Indicator / Formula

Copy & Paste Friendly
Filter=1;
AddColumn(O, "open",1.0);
AddColumn(H, "high",1.0);
AddColumn(L,"low",1.0);
AddColumn(C,"close",1.0);
AddColumn(Volume,"Volume",1.0);
AddColumn(abs(C-O),"CO",1.0);
AddColumn(H-L,"HL",1.0);
AddColumn(abs(O-L),"OL",1.0);
AddColumn(abs(O-H),"OH",1.0);

0 comments

Leave Comment

Please login here to leave a comment.