I've been using amCharts stocks charts to display data from Yahoo Finance .csv file which displays data in this format: (which works)
Date,Open,High,Low,Close,Volume,Adj Close
2011-07-27,617.18,620.95,604.75,607.22,3934400,607.22
2011-07-26,618.05,627.50,617.22,622.52,2342900,622.52
2011-07-25,613.36,625.41,613.00,618.98,3131600,618.98
However now I need to get data from Google finance and they format they're data in this format (which isn't working).
Date,Open,High,Low,Close,Volume
28-Jul-11,36.02,36.84,36.01,36.42,8870180
27-Jul-11,36.71,36.86,35.98,36.06,10395443
26-Jul-11,37.26,37.27,36.80,36.86,6366097
I believe the data format different between Yahoo and Google is what's causing the amChart to not display any figures because it can't read the file.
How do I format the date to get it to read the values properly?