> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# finage-market-info

> Finage Market Info - news, market status, movers, and technical indicators

**Server path:** `/finage-market-info` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                        | Description               |
| ------------------------------------------------------------------------------------------- | ------------------------- |
| [`finage_market_info_get_crypto_news`](#finage_market_info_get_crypto_news)                 | Get cryptocurrency news   |
| [`finage_market_info_get_forex_news`](#finage_market_info_get_forex_news)                   | Get forex news            |
| [`finage_market_info_get_most_active_stocks`](#finage_market_info_get_most_active_stocks)   | Get most active US stocks |
| [`finage_market_info_get_sector_performance`](#finage_market_info_get_sector_performance)   | Get US sector performance |
| [`finage_market_info_get_status`](#finage_market_info_get_status)                           | Get market status         |
| [`finage_market_info_get_stock_news`](#finage_market_info_get_stock_news)                   | Get stock market news     |
| [`finage_market_info_get_symbol_list`](#finage_market_info_get_symbol_list)                 | Get available symbols     |
| [`finage_market_info_get_technical_indicator`](#finage_market_info_get_technical_indicator) | Get technical indicator   |
| [`finage_market_info_get_top_gainers`](#finage_market_info_get_top_gainers)                 | Get top gaining US stocks |
| [`finage_market_info_get_top_losers`](#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 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## finage\_market\_info\_get\_most\_active\_stocks

Get most active US stocks

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## finage\_market\_info\_get\_sector\_performance

Get US sector performance

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## finage\_market\_info\_get\_status

Get market status

**Parameters:**

| Parameter | Type   | Required | Default | Description                |
| --------- | ------ | -------- | ------- | -------------------------- |
| `country` | string | No       | —       | Country code (default: US) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "country": {
        "type": "string",
        "description": "Country code (default: US)"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## 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 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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)                 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## finage\_market\_info\_get\_top\_gainers

Get top gaining US stocks

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## finage\_market\_info\_get\_top\_losers

Get top losing US stocks

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
