i have one api . my data in my code has 2 section
"Meta Data": {…}
"Time Series (Daily)": {…}
i use this code for get json data and use in my chart
$.ajax({
url: urls,
dataType: 'json',
contentType: "application/json",
success: function (data) {
debugger;
// split the data set into ohlc and volume
var ohlc = [],
volume = [],
dataLength = data.length, // but this code is undefiend
how i can get "Time Series (Daily)" values ? thanks for read may solution