I'm currently utilizing the Alpha Vantage API
for retrieving stock market information. All data is provided in a specific format:
To visualize this data effectively, I need to compile an array
or object
containing all the dates. Unfortunately, these dates are not directly included in the data objects, posing a challenge for me.
For instance, with the current dataset, I aim to generate an array resembling the following:
['2021-04-26', '2021-04-26', '2021-04-26', '2021-04-26', '2021-04-26', '2021-05-03'...]
Your assistance on this matter would be greatly appreciated.