Just to be sure if T1 format is the right format for this usecase.
typedef struct T1
{
DATE time; // time stamp, GMT
float fVal; // positive for ask, negative for bid
} T1; // single-stream tick, .t1 file content

T1 format has these 2 values i.e time and fVal where fVal is ask or bid price, however the format that i have in csv has (date, time, tradedPrice, volume) and T1 format doesn't seem to handle it. How would T1 handle this format then?