get_top_volume
Retrieve the top n stocks by trading volume for a specified trading date. Identify stocks with high trading activity and liquidity.
Instructions
Return top stocks by trading volume on a given date.
Args: date: Trading date in YYYY-MM-DD or YYYYMMDD format. n: Number of stocks to return (1–100). Default: 10.
Returns: dict with keys: - date: the requested trading date - items: list of up to n dicts, each with: - code: stock code (5-digit) - volume: number of shares traded - turnover_value: trading value in yen - close: closing price
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | ||
| n | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||