order-stock
Execute stock orders (buy/sell) for Korea Investment & Securities via KIS REST API MCP Server by specifying symbol, quantity, price, and order type for precise trading operations.
Instructions
Order stock (buy/sell) from Korea Investment & Securities
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| order_type | Yes | ||
| price | Yes | ||
| quantity | Yes | ||
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"order_type": {
"title": "Order Type",
"type": "string"
},
"price": {
"title": "Price",
"type": "integer"
},
"quantity": {
"title": "Quantity",
"type": "integer"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol",
"quantity",
"price",
"order_type"
],
"title": "order_stockArguments",
"type": "object"
}