EA that record and save 1 second data to CSV

 

Hi

Looking for a EA / Indicator that can save 1 second data (need only be Open) to a CSV file. Any suggestions? I have one that saves each tick, but it creates a lot of extra work for me as I only need 1 second resolution. 

BR /

 
Per Tobias Lindell: I have one that saves each tick, but it creates a lot of extra work for me as I only need 1 second resolution. 

So add a filter.

static datetime currTick=0; datetime prevTick=currTick; currTick=TimeCurrent();
if(prevTick == currTick) return;
// New S1 price.
 

But of course, that is the easy way, thanks for the suggestion, will do that. 

BR

Reason: