As I would like to use the API more and logs are not available through API, I moved some metrics I was logging to a chart with the hopes I could extract them from the backtest JSON results.

If I download the results from the site, I see the specific chart in the 'Charts" section with name, series & data, 

{ .......... "Charts": { ........ }, "Expiry": { "Name": "Expiry", "ChartType": 0, "Series": { "Weighted Days": { "Name": "Weighted Days", "Unit": "$", "Index": 0, "Values": [ { "x": 1325019540, "y": 0.0 }, ........

However if I pull the exact same backtest down via the API from the read backtest call, The chart name shows up but no data, just the name:

{ ...... "charts": { ........ }, "Expiry": { "Name": "Expiry" }, .......

 

Also, the top-level keys in each respectively do not have the same case while all other descendants do

Author