stocks_get_chart
Stocks · macOS · Windows
Effect: read (strongest supported action). Status: gated.
Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.
macOS
Purpose
Gets historical price data for a stock symbol. Range: 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max.
Required inputs
symbol— Ticker symbol, e.g. AAPL
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — macOS
{
"properties": {
"interval": {
"description": "Data interval (default: 1d). Intraday (1m–90m) needs a short range.",
"enum": [
"1m",
"2m",
"5m",
"15m",
"30m",
"60m",
"90m",
"1h",
"1d",
"5d",
"1wk",
"1mo",
"3mo"
],
"type": "string"
},
"range": {
"description": "Time range (default: 1mo)",
"enum": [
"1d",
"5d",
"1mo",
"3mo",
"6mo",
"1y",
"2y",
"5y",
"10y",
"ytd",
"max"
],
"type": "string"
},
"symbol": {
"description": "Ticker symbol, e.g. AAPL",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"symbol": "AAPL"
}Windows
Purpose
Gets historical price data for a stock symbol.
Required inputs
symbol— Stock symbol (e.g., AAPL)
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — Windows
{
"properties": {
"range": {
"description": "Time range: 1d, 5d, 1mo, 3mo, 6mo, 1y, 5y (default: 1mo)",
"type": "string"
},
"symbol": {
"description": "Stock symbol (e.g., AAPL)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"symbol": "AAPL"
}