Hi is there an elegant way to read huge csv-data-files in reverse orders?
Each line contains in ASCII "date,time,msec,priceAsk,priceBid,vol" with the oldest date at the beginning. Is there a way to read them line by line in reverse order without loading the whole file in total in the memory, split it, and use it (or save it) in reverse orders?
Thanks in advance!