get_stock_price_fireant
Retrieve real-time stock prices for Vietnam market symbols using FireAnt data sources. Input stock symbols to get current market pricing information.
Instructions
Get real-time stock price from FireAnt. Uses FireAnt API or web scraping to retrieve current stock prices for Vietnam stock market symbols (e.g., VIC, VNM, VCB).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Stock symbol (e.g., 'VIC', 'VNM', 'VCB'). Use comma-separated for multiple symbols. |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock symbol (e.g., 'VIC', 'VNM', 'VCB'). Use comma-separated for multiple symbols.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}