get_technical_indicators
Retrieve technical indicators for any stock ticker over a specified period to analyze market trends and momentum.
Instructions
Retrieve technical indicators for a given ticker and period.
Args: ticker (str): The symbol of the security. period (str, optional): Time period for indicators (e.g., '6mo'). Defaults to '6mo'.
Returns: TechnicalIndicatorsDict: Technical indicators data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes | ||
| period | No | 6mo |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| current_price | No | ||
| fifty_two_week_high | No | ||
| fifty_two_week_low | No | ||
| price_position_in_52w_range_percent | No | ||
| average_volume | No | ||
| sma_20 | No | ||
| sma_50 | No | ||
| sma_200 | No | ||
| price_vs_sma_20 | No | ||
| price_vs_sma_50 | No | ||
| price_vs_sma_200 | No |