How to control the number of records exported?

Suppose I have number of bars set to 6,500 in database settings, but only wanted to export the 2,000 most recent records. Can I do that?

John
Filter = BarIndex() > (LastValue(BarIndex()) - 2000);

Run as exploration. Then afterwards go to Files - Export to HTML/CSV.

Note: add columns you need to be exported yourself.

Please follow this:

and just change the RANGE to 2000 (N-last quotations/bars) in the Analysis window toolbar

2 Likes

Just what I needed.

Top o' de hat,

 John

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.