## ADDED Requirements ### Requirement: Active tool mode The system SHALL maintain an "active tool" state that determines what happens when the user clicks on the chart. Available tool modes are: "select" (default, no action on click), "break_up" (label Break Up), "break_down" (label Break Down), "line" (draw trend line), "rectangle" (draw rectangle annotation), and "delete" (remove annotation). Only one tool SHALL be active at a time. #### Scenario: Tool activation - **WHEN** user clicks a tool button in the sidebar - **THEN** that tool becomes the active tool and the button appears visually selected #### Scenario: Tool deactivation - **WHEN** user clicks the already-active tool button - **THEN** the tool deactivates and the mode returns to "select" ### Requirement: Break Up labeling When the "break_up" tool is active and the user clicks on the chart, the system SHALL identify the nearest candle to the click coordinates using `chart.timeScale().coordinateToTime()`. The system SHALL save an annotation with `label_type: "break_up"` and the candle's timestamp to the database. A green upward arrow marker SHALL appear on the chart immediately. #### Scenario: Place Break Up label - **WHEN** "break_up" tool is active and user clicks on a candle - **THEN** system saves a "break_up" annotation for that candle's timestamp and displays a green arrow marker above the bar #### Scenario: Click between candles - **WHEN** "break_up" tool is active and user clicks between two candles - **THEN** system snaps to the nearest candle timestamp and places the annotation there ### Requirement: Break Down labeling When the "break_down" tool is active and the user clicks on the chart, the system SHALL behave identically to Break Up labeling but save `label_type: "break_down"` and display a red downward arrow below the bar. #### Scenario: Place Break Down label - **WHEN** "break_down" tool is active and user clicks on a candle - **THEN** system saves a "break_down" annotation for that candle's timestamp and displays a red arrow marker below the bar ### Requirement: Two-click line drawing When the "line" tool is active, the system SHALL implement a two-click drawing interaction using `chart.subscribeClick()` for click detection and `chart.subscribeCrosshairMove()` for preview updates. The first click sets the start point (time, price). The second click sets the end point (time, price). After the second click, the system SHALL save an annotation with `label_type: "line"` and `geometry` containing JSON: `{"startTime": , "startPrice": , "endTime": , "endPrice": }`. The line SHALL render immediately as a TrendLine primitive attached to the candlestick series. #### Scenario: Draw a trend line - **WHEN** "line" tool is active and user clicks two points on the chart - **THEN** system saves a line annotation with start/end coordinates and renders the line as a TrendLine primitive #### Scenario: Visual feedback during line drawing - **WHEN** "line" tool is active and user has clicked the first point but not the second - **THEN** system displays a preview TrendLine primitive (dashed or semi-transparent) from the first point to the current crosshair position, updating via `subscribeCrosshairMove()` #### Scenario: Cancel line drawing - **WHEN** user presses Escape during a two-click line drawing (after first click) - **THEN** system cancels the line drawing, detaches the preview primitive, and clears the drawing state without saving ### Requirement: Line rendering via TrendLine plugin The system SHALL render saved line annotations using the `TrendLine` class (implementing `ISeriesPrimitive