Export Data Exploration for Amibroker (AFL)
ishlakh over 13 years ago Amibroker (AFL)
Simple exploration for export the data to csv or txt file
You can choose ticker and time range by setting “Apply to” an “Range”
Explore data by execute exploration in Automatic Analysis window .
Export the exploration result by clicking “File —> Export”
Indicator / Formula
Copy & Paste Friendly
// You can choose ticker and time range by setting "Apply to" an "Range"
// Explore data by execute exploration in Automatic Analysis window
// Export the exploration result by clicking "File --> Export"
Filter = C>0 ;
AddColumn(O,"Open",1.2);
AddColumn(H,"High",1.2);
AddColumn(L,"Low",1.2);
AddColumn(C,"Close",1.2);
AddColumn(V,"Volume",1.0,1.0); 1 comments
Leave Comment
Please login here to leave a comment.
Exploration good for analysis
( Daily we get High,Low,close,Volume data end of the day).