get_support_resistance_levels
Identify key price levels for a stock ticker by retrieving support and resistance lines for a specified time period. Helps traders anticipate price movements.
Instructions
Retrieve support and resistance levels for a given ticker and period.
Args: ticker (str): The symbol of the security. period (str, optional): Time period for levels (e.g., '6mo'). Defaults to '6mo'.
Returns: SupportResistanceLevelsDict: Support and resistance levels data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes | ||
| period | No | 6mo |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| current_price | No | ||
| resistance_levels | No | ||
| support_levels | No | ||
| nearest_resistance | No | ||
| nearest_support | No |