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

# Url

## Definition

Indicates the Url configured for the [Master Instrument properties](https://ninjatrader.com/support/helpGuides/nt8/NT%20HelpGuide%20English.html?editing_instruments.htm).

## Property Value

A **string** value representing the Url that is configured for the current master instrument.

## Syntax

`Bars.Instrument.MasterInstrument.Url`

## Examples

```csharp
protected override void OnBarUpdate()

 {

         // Displays the master instrument's URL at the bottom right of the chart

         Draw.TextFixed(this, "tag1", "Instruments URL is " + Bars.Instrument.MasterInstrument.Url, TextPosition.BottomRight);

 }
```