order-overseas-stock
Execute buy/sell orders for overseas stocks with Korea Investment & Securities. Input symbol, quantity, price, order type, and market to process transactions securely.
Instructions
Order overseas stock (buy/sell) from Korea Investment & Securities
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| market | Yes | ||
| order_type | Yes | ||
| price | Yes | ||
| quantity | Yes | ||
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"market": {
"title": "Market",
"type": "string"
},
"order_type": {
"title": "Order Type",
"type": "string"
},
"price": {
"title": "Price",
"type": "number"
},
"quantity": {
"title": "Quantity",
"type": "integer"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol",
"quantity",
"price",
"order_type",
"market"
],
"title": "order_overseas_stockArguments",
"type": "object"
}