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

# Improving a Strategy

> A structured process for iterating on trading strategies without breaking what already works.

## What strategy improvement really means

Improving a strategy is not about:

* maximizing backtest returns
* chasing the best parameter set
* reacting to every bad drawdown

It is about:

* improving robustness
* aligning behavior with intent
* reducing unnecessary risk
* making outcomes more consistent

<Info>
  Good iteration is conservative, not aggressive.
</Info>

***

## The iteration mindset

Every change should answer one question:

> What problem am I trying to fix?

***

## A safe iteration loop

<Steps>
  <Step title="Start from a stable baseline">
    Keep a version you trust as a reference.
  </Step>

  <Step title="Change one thing at a time">
    Multiple changes destroy traceability.
  </Step>

  <Step title="Re-evaluate behavior, not just metrics">
    Check trades, exposure, and drawdowns first.
  </Step>

  <Step title="Test across ranges">
    Ensure improvements are not regime-specific.
  </Step>
</Steps>

***

## What to read next

<CardGroup cols={2}>
  <Card title="What to change first" icon="list-ol" href="/iteration-optimization/what-to-change-first" />

  <Card title="Overfitting & guardrails" icon="shield" href="/iteration-optimization/overfitting-and-guardrails" />

  <Card title="Parameter ranges" icon="sliders" href="/iteration-optimization/parameter-ranges" />

  <Card title="When not to optimize" icon="ban" href="/iteration-optimization/when-not-to-optimize" />
</CardGroup>
