Stock Prices
Description: Shows historical price data and trends for stocks.
API Response Structure:
{
"prices": {
"historical": [
{
"date": "2023-08-15",
"open": "149.50",
"high": "151.20",
"low": "148.75",
"close": "150.25",
"volume": "52.3M",
"adjustedClose": "150.25"
}
],
"intervals": {
"day": {
"change": "+1.69%",
"trend": "Upward"
},
"week": {
"change": "+3.25%",
"trend": "Upward"
},
"month": {
"change": "-0.75%",
"trend": "Downward"
}
}
},
"technicalIndicators": {
"movingAverages": {
"50day": "148.75",
"200day": "145.30"
},
"relativeStrengthIndex": 65.4
},
"type": "stockPrices"
}
Fields:
-
prices
(object): Price data-
historical
(array): Past prices -
intervals
(object): Time period changes
-
-
technicalIndicators
(object): Analysis metrics -
type
(string): Always "stockPrices"