# Best practices

### Strategy design

* Start simple. Add one feature at a time.
* Use multi-timeframe only when it adds signal quality.
* Combine indicators for confirmation, not complexity.
* Backtest every change.

### Graph hygiene

* Build left-to-right: data → indicator → condition → action.
* Make every branch end in a clear action.
* Prefer AND/OR gates over chained compares.

### SMC specifics

* Always wire Swing Highs/Lows before OB, BOS/CHOCH, Liquidity.
* Keep SMC conditions separate, then combine.

### Performance

* Limit timeframes.
* Reduce heavy nodes.
* Optimize only a few parameters at once.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.quantbytes.net/bot-studio/best-practices.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
