CSV files are delimited by commas, right? I don't see you'd be able to parse this without quotes.
The csv would read comma values like this:
CSV:
Some Data, Cost New
data1,$15,000.00
data2,$9,000
| Some data | Cost New | No header present |
| --------- | -------- | ----------------- |
| data1 | $15 | 000.00 |
| data2 | $9 | 000.00 |
Perhaps leave out the commas and add them in once you've received the data?