get_stock_trading_volume
Retrieve detailed trading volume and value data by investor type for a specific stock within a defined date range. Ideal for analyzing market activity on the KOSPI/KOSDAQ exchanges.
Instructions
Retrieves trading volume by investor type for a specific stock.
Args:
fromdate (str): Start date for retrieval (YYYYMMDD)
todate (str): End date for retrieval (YYYYMMDD)
ticker (str): Stock ticker symbol
Returns:
DataFrame with columns:
- Volume (Sell/Buy/Net Buy)
- Trading Value (Sell/Buy/Net Buy)
Broken down by investor types (Financial Investment, Insurance, Trust, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fromdate | Yes | ||
| ticker | Yes | ||
| todate | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fromdate": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Fromdate"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Ticker"
},
"todate": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Todate"
}
},
"required": [
"fromdate",
"todate",
"ticker"
],
"title": "get_stock_trading_volumeArguments",
"type": "object"
}