Hi.

I am trying importing bulk EOD stock price data (e.g. 15 years of data for 100 stocks) into Zorro.

However as the manual says: "For converting price data from an external source to the Zorro format, separate it into years, convert it to a list of T6 or T1 structs, and store it in a binary file with the name described above."

I tried using CSVtoT6.c script. It worked for a single year, but not for multiyear data.

Therefore, in order to import my database, I need to run CSVtoT6.c script for 15x100=1500 files.

Would anybody help me for writing a lite-c script which:
- Performs a for loop
- At each iteration of the loop, it reads the names of available csv files within a specific folder
- And calls CSVtoT6.c for that csv file, by changing InName and OutName arguments of the c file

Thanks