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

# AverageEntryEfficiency

## Definition

Returns the average entry efficiency.

## Property Value

A **double** value that represents the average entry efficiency.

## Syntax

`TradesPerformance.AverageEntryEfficiency`

## Examples

```csharp
protected override void OnBarUpdate()
{
     // Print out the average entry efficiency
     Print("Average entry efficiency is: " + SystemPerformance.AllTrades.TradesPerformance.AverageEntryEfficiency);
}
```