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

# Concepts overview

> A map of the core concepts and the order to read them in — start with trust.

This section explains what's actually happening under the chat: what a strategy
is, how a backtest is run, and why the numbers are trustworthy. You don't need
any of it to start — just [describe an idea](/get-started/quickstart) — but a
few minutes here makes everything else click.

<Note>
  Read these roughly in order. The first page is the one that matters most: it
  explains the line between the AI (which only turns your words into rules) and
  the fixed, deterministic engine (which produces every number).
</Note>

## The shape of it

```mermaid theme={null}
flowchart LR
  T["Is the backtest<br/>real?"] --> F["Futures &<br/>symbols"]
  F --> S["Strategies"]
  S --> SI["Signals &<br/>indicators"]
  SI --> TB["Timeframes,<br/>bars, sessions"]
  TB --> R["Risk & trade<br/>management"]
  R --> B["Backtesting"]
  B --> O["Optimization"]
  O --> V["Sessions &<br/>versions"]
  V --> D["Where data<br/>comes from"]
```

## Read in this order

<CardGroup cols={2}>
  <Card title="Is the backtest real?" icon="shield-check" href="/concepts/is-the-backtest-real">
    Start here. The AI only writes the rules; a deterministic engine produces every number.
  </Card>

  <Card title="Futures and symbols" icon="chart-candlestick" href="/concepts/futures-and-symbols">
    Symbols, micros, continuous contracts, ticks, points, margin, and roll.
  </Card>

  <Card title="Strategies" icon="diagram-project" href="/concepts/strategies">
    The parts every strategy is made of: market, entry, exit, filters, parameters.
  </Card>

  <Card title="Signals, indicators and series" icon="wave-square" href="/concepts/signals-indicators-series">
    Real TA-Lib indicators, crossovers, special series, patterns, and COT.
  </Card>

  <Card title="Timeframes, bars and sessions" icon="clock" href="/concepts/timeframes-bars-sessions">
    Bars and timeframes, day vs. swing strategies, and how the trading day is anchored.
  </Card>

  <Card title="Risk and trade management" icon="shield-halved" href="/concepts/risk-and-trade-management">
    Stops, targets, trailing, time and end-of-day exits, filters, and trading costs.
  </Card>

  <Card title="Backtesting" icon="chart-line" href="/concepts/backtesting">
    What a backtest is, the test window, run status, and the metrics it reports.
  </Card>

  <Card title="Optimization" icon="sliders" href="/concepts/optimization">
    Sweeping parameter ranges to find better settings — without overfitting.
  </Card>

  <Card title="Sessions, versions and artifacts" icon="code-branch" href="/concepts/sessions-versions-artifacts">
    How every edit becomes a new saved version you can compare and revisit.
  </Card>

  <Card title="Where data comes from" icon="database" href="/concepts/where-data-comes-from">
    Market-data origin, daily freshness, continuous contracts, and macro data.
  </Card>
</CardGroup>

## Same word, different meanings

Trading vocabulary overloads a few terms — "signal" alone means three different
things in AskFutures. The [glossary](/concepts/glossary) defines every term
alphabetically and calls out the overloaded ones so you always know which sense
is meant.

<Card title="Glossary" icon="book" href="/concepts/glossary" horizontal>
  Every term in one place, plus the overloaded-terms reference.
</Card>

<Info>
  Past performance does not guarantee future results. Always test before you trade.
</Info>

## Next steps

<CardGroup cols={3}>
  <Card title="Is the backtest real?" icon="shield-check" href="/concepts/is-the-backtest-real">
    The trust frame — read this first.
  </Card>

  <Card title="Build a strategy" icon="hammer" href="/guides/build-a-strategy">
    Put the concepts to work in chat.
  </Card>

  <Card title="Quickstart" icon="bolt" href="/get-started/quickstart">
    Run your first backtest in about five minutes.
  </Card>
</CardGroup>
