kospi-kosdaq

by dragon1086
Verified
MIT License
10
  • Apple

get_stock_trading_volume

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

NameRequiredDescriptionDefault
fromdateYes
tickerYes
todateYes

Input Schema (JSON Schema)

{ "properties": { "fromdate": { "anyOf": [ { "type": "string" }, { "type": "integer" } ], "title": "Fromdate" }, "ticker": { "title": "Ticker", "type": "string" }, "todate": { "anyOf": [ { "type": "string" }, { "type": "integer" } ], "title": "Todate" } }, "required": [ "fromdate", "todate", "ticker" ], "title": "get_stock_trading_volumeArguments", "type": "object" }