API Selection for Report builder #4
Unanswered
kaifkalanthar
asked this question in
Q&A
Replies: 1 comment 2 replies
-
I think alphavantage might be of some help to you. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I looked for an API that provides live data, but unfortunately, I couldn't find any (only paid versions are available). Can I use static data instead?
Eg:
{
meta: {
symbol: "AAPL",
interval: "1min",
currency: "USD",
exchange_timezone: "America/New_York",
exchange: "NASDAQ",
mic_code: "XNGS",
type: "Common Stock",
},
values: [
{
datetime: "2024-01-12 15:59:00",
open: "185.95000",
high: "185.98000",
low: "185.72000",
close: "185.92000",
volume: "1021861",
},
{
datetime: "2024-01-12 15:58:00",
open: "185.89000",
high: "185.95500",
low: "185.88499",
close: "185.94000",
volume: "334363",
},
]
}
Beta Was this translation helpful? Give feedback.
All reactions