R
Rolf
Hi
I want to compress "tick"-data (ie trades) from a file into another file. In
the target file I want to chunk the data into EndOfDay(eod) and calculate it
into date, open, high, low, open
and volume. And I want to chunk it into minutes activity (for example 1
minute) as well.
I attach glimps of the tickdate file and example of result files.
I want to pay to get information that works. Steps for me to take or code.
Regards Rolf
Tickdata.txt
DATE,TIME,PRICE,VOLUME
12/11/2009,08:00:11,5720.00,1
12/11/2009,08:00:12,5720.00,1
12/11/2009,09:02:14,5736.50,1
12/11/2009,09:02:14,5736.50,1
12/16/2009,10:24:09,5863.00,1
12/16/2009,10:24:10,5863.00,1
12/16/2009,10:47:45,5859.50,4
12/16/2009,10:47:45,5859.50,1
12/17/2009,17:39:07,5842.00,2
12/17/2009,17:39:08,5842.00,4
eodtickdata.txt
DATE,OPEN,HIGH,LOW,CLOSE
12/11/2009,5720,5736.5,5720,5736.5,4
12/16/2009,5863,5863,5859.5,5859.5,7
12/17/2009,5842,5842,5842,5842,6
1mintickdata.txt
DATE,TIME,OPEN,HIGH,LOW,CLOSE
12/11/2009,08:00,5720,5720,5720,5720,2
.......
I want to compress "tick"-data (ie trades) from a file into another file. In
the target file I want to chunk the data into EndOfDay(eod) and calculate it
into date, open, high, low, open
and volume. And I want to chunk it into minutes activity (for example 1
minute) as well.
I attach glimps of the tickdate file and example of result files.
I want to pay to get information that works. Steps for me to take or code.
Regards Rolf
Tickdata.txt
DATE,TIME,PRICE,VOLUME
12/11/2009,08:00:11,5720.00,1
12/11/2009,08:00:12,5720.00,1
12/11/2009,09:02:14,5736.50,1
12/11/2009,09:02:14,5736.50,1
12/16/2009,10:24:09,5863.00,1
12/16/2009,10:24:10,5863.00,1
12/16/2009,10:47:45,5859.50,4
12/16/2009,10:47:45,5859.50,1
12/17/2009,17:39:07,5842.00,2
12/17/2009,17:39:08,5842.00,4
eodtickdata.txt
DATE,OPEN,HIGH,LOW,CLOSE
12/11/2009,5720,5736.5,5720,5736.5,4
12/16/2009,5863,5863,5859.5,5859.5,7
12/17/2009,5842,5842,5842,5842,6
1mintickdata.txt
DATE,TIME,OPEN,HIGH,LOW,CLOSE
12/11/2009,08:00,5720,5720,5720,5720,2
.......