> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trinigence.com/llms.txt
> Use this file to discover all available pages before exploring further.

# My Strategy Didn’t Trade

> Why a strategy produces zero trades and how to debug it.

## The most common reason

Most zero-trade strategies fail because:

* conditions are too strict
* filters block all entries
* timeframe or data range is too short

***

## What to check first

1. Trade count
2. Entry conditions
3. Filters and schedules
4. Exit logic presence

<Card title="Schedule & filters" icon="calendar-days" href="/strategy-structure/schedule-and-filters" horizontal>
  Common source of blocked trades.
</Card>

***

## Typical causes

<AccordionGroup>
  <Accordion title="Too many filters">
    Each filter reduces opportunities. Combined filters can eliminate all trades.
  </Accordion>

  <Accordion title="Contradictory logic">
    Conditions that cannot be true at the same time.
  </Accordion>

  <Accordion title="No exit defined">
    Strategy cannot open positions without exit rules.
  </Accordion>
</AccordionGroup>

***

## How to fix

* simplify entries
* remove one filter at a time
* extend backtest range
* validate logic step by step

<Note>
  Zero trades is a signal, not a bug.
</Note>
