dateList = openList = highList = lowList = closeList = []
for (date,open,high,low,close,vol) in ReadCsv(csvFileName):
dateList.append(date)
openList.append(open)
highList.append(high)
lowList.append(low)
closeList.append(close)
Haven't tested it but it should work...