/finage-market-info | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
finage_market_info_get_crypto_news | Get cryptocurrency news |
finage_market_info_get_forex_news | Get forex news |
finage_market_info_get_most_active_stocks | Get most active US stocks |
finage_market_info_get_sector_performance | Get US sector performance |
finage_market_info_get_status | Get market status |
finage_market_info_get_stock_news | Get stock market news |
finage_market_info_get_symbol_list | Get available symbols |
finage_market_info_get_technical_indicator | Get technical indicator |
finage_market_info_get_top_gainers | Get top gaining US stocks |
finage_market_info_get_top_losers | Get top losing US stocks |
finage_market_info_get_crypto_news
Get cryptocurrency news Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbol | string | Yes | — | Cryptocurrency symbol (e.g. BTC, ETH) |
limit | integer | No | — | Maximum number of news articles to return |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbol": {
"type": "string",
"description": "Cryptocurrency symbol (e.g. BTC, ETH)"
},
"limit": {
"type": "integer",
"description": "Maximum number of news articles to return"
}
},
"required": [
"PCID",
"symbol"
]
}
finage_market_info_get_forex_news
Get forex news Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbol | string | Yes | — | Currency symbol (e.g. GBP, EUR) |
limit | integer | No | — | Maximum number of news articles to return |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbol": {
"type": "string",
"description": "Currency symbol (e.g. GBP, EUR)"
},
"limit": {
"type": "integer",
"description": "Maximum number of news articles to return"
}
},
"required": [
"PCID",
"symbol"
]
}
finage_market_info_get_most_active_stocks
Get most active US stocksShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
finage_market_info_get_sector_performance
Get US sector performanceShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
finage_market_info_get_status
Get market status Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
country | string | No | — | Country code (default: US) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"country": {
"type": "string",
"description": "Country code (default: US)"
}
},
"required": [
"PCID"
]
}
finage_market_info_get_stock_news
Get stock market news Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbol | string | Yes | — | Stock ticker symbol (e.g. AAPL, AMZN) |
limit | integer | No | — | Maximum number of news articles to return |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbol": {
"type": "string",
"description": "Stock ticker symbol (e.g. AAPL, AMZN)"
},
"limit": {
"type": "integer",
"description": "Maximum number of news articles to return"
}
},
"required": [
"PCID",
"symbol"
]
}
finage_market_info_get_symbol_list
Get available symbols Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
type | string | Yes | — | Market type: us-stock, forex, crypto, index, etf, commodity |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"type": {
"type": "string",
"description": "Market type: us-stock, forex, crypto, index, etf, commodity"
}
},
"required": [
"PCID",
"type"
]
}
finage_market_info_get_technical_indicator
Get technical indicator Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
indicator | string | Yes | — | Technical indicator name (e.g. SMA, EMA, RSI, MACD, ADX, STOCH, BBANDS) |
timespan | string | Yes | — | Time interval (e.g. 1min, 5min, 15min, 1h, 1day) |
symbol | string | Yes | — | Stock ticker symbol (e.g. AAPL) |
period | integer | No | — | Number of data points for calculation (e.g. 14 for RSI) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"indicator": {
"type": "string",
"description": "Technical indicator name (e.g. SMA, EMA, RSI, MACD, ADX, STOCH, BBANDS)"
},
"timespan": {
"type": "string",
"description": "Time interval (e.g. 1min, 5min, 15min, 1h, 1day)"
},
"symbol": {
"type": "string",
"description": "Stock ticker symbol (e.g. AAPL)"
},
"period": {
"type": "integer",
"description": "Number of data points for calculation (e.g. 14 for RSI)"
}
},
"required": [
"PCID",
"indicator",
"timespan",
"symbol"
]
}
finage_market_info_get_top_gainers
Get top gaining US stocksShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
finage_market_info_get_top_losers
Get top losing US stocksShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}

