> 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.

# Dividends

## Definition

An collection of Dividends configured for the **Master Instrument properties** used in for stocks.

## Property Value

A collection of Dividends configured for the current instrument.

Possible values are:

| Amount                                                                                           | Date                                                       |
| ------------------------------------------------------------------------------------------------ | ---------------------------------------------------------- |
| A **double** value representing the amount in dollars which was paid on the date of the dividend | A DateTime structure representing the date of the dividend |

## Syntax

`Bars.Instrument.MasterInstrument.Dividends`

## Examples

```csharp
foreach(Dividend dividends in Bars.Instrument.MasterInstrument.Dividends)
{
   Print(dividends.Amount);
   Print(dividends.Date);
}
```