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

# TotalSlippage

## Definition

Returns the total slippage.

## Property Value

A **double** value that represents the total slippage. This is presented in points, I.E. 0.25 for 1 execution on E-mini S\&P 500 Futures.

## Syntax

`\<tradecollection\>.TradesPerformance.TotalSlippage`

## Examples

```csharp
protected override void OnBarUpdate()
{
     // Print out the total slippage of all trades
     Print("Total slippage is: " + SystemPerformance.AllTrades.TradesPerformance.TotalSlippage);
}
```