get_quote_price_with_indicators
Retrieve stock price data with customizable technical indicators for any symbol in the Vietnam stock market. Specify date range, interval, and indicator parameters like RSI, MACD, or stochastic.
Instructions
Get quote price with indicators of a symbol from stock market.
Indicators can be specified with or without parameters:
Simple: "rsi", "macd", "stochastic"
With params: "rsi(window=21)", "macd(fast=12, slow=26, signal=9)"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | str (symbol to get price) | |
| indicators | Yes | list[str] (list of indicators with optional parameters) Examples: - ["rsi", "macd"] - use default parameters - ["rsi(window=21)", "macd(fast=12, slow=26)"] - custom parameters - ["stochastic(k=14, d=3)", "cci(window=20)"] - mixed | |
| start_date | Yes | str (format: YYYY-MM-DD) | |
| end_date | No | str = None (end date to get price. None means today) | |
| interval | No | Literal['1m', '5m', '15m', '30m', '1H', '1D', '1W', '1M'] = '1D' (interval to get price) | 1D |
| drop_market_close | No | ||
| output_format | No | Literal['json', 'dataframe', 'toon'] = 'toon' (output format, 'toon' is optimized for AI) | toon |