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

# Percent

## Definition

Returns a **TradesPerformanceValues** object in percent.

## Property Value

A **TradesPerformanceValues** object that is represented in percent.

## Syntax

`\<tradecollection\>.TradesPerformance.Percent`

## Examples

```csharp
protected override void OnBarUpdate()
{
     // Print out the avg. profit of all trades in percent
     Print("Average profit: " + SystemPerformance.AllTrades.TradesPerformance.Percent.AverageProfit);
}
```