> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# SupportsAlerts

## Definition

Determines if the drawing tool can be used for manually configured alerts through the UI.

## Property Value

A bool which when true determines that user can setup an alert based off this drawing tool; otherwise false.

This property is false by default and MUST be overridden upon initialization to allow for manually configured alerts. You cannot set this during run-time.

## Syntax

`SupportsAlerts`

You may choose to override this property using the following syntax:

**public override bool SupportsAlerts**

## Examples

```csharp
public override bool SupportsAlerts { get { return true; } }
```