> For the complete documentation index, see [llms.txt](https://landingnet.gitbook.io/doc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://landingnet.gitbook.io/doc/documentation/copy-trading/configuration.md).

# Configuration

Every copy trading bot has several configurable sections. This page covers the trade execution settings -- what to copy, how to copy it, and how to size positions.

## Copy Source

Enter the Hyperliquid wallet addresses of the traders you want to copy. **One address per line.** At least one is required.

{% hint style="info" %}
Find trader addresses on the [Discover Traders](/doc/documentation/platform/discover-traders.md) page, or click **"Copy This Trader"** from any trader profile.
{% endhint %}

## Asset Filters

Control which coins your bot trades:

| Mode                    | Behavior                                |
| ----------------------- | --------------------------------------- |
| **Whitelist** (default) | Only copy trades for the listed coins   |
| **Blacklist**           | Copy all trades except the listed coins |

Enter coin names separated by commas using Hyperliquid ticker symbols (e.g., `BTC, ETH, SOL`). The form provides autocomplete from available markets.

## Order Copying

| Setting              | Description                                  | Default |
| -------------------- | -------------------------------------------- | ------- |
| **Copy Order Types** | Market, Limit, or both                       | Both    |
| **Min Order Value**  | Minimum trade size to copy (USDC)            | $10     |
| **Max Order Value**  | Maximum trade size to copy (USDC)            | $10,000 |
| **Ratio per Order**  | Percentage of source trade size to replicate | 100%    |
| **Copy Order Mode**  | How trade sizes are calculated               | Mirror  |
| **Execution Delay**  | Delay before executing (ms)                  | 0       |

**Mirror mode** replicates the exact dollar amount of each source trade, scaled by your ratio. For example, with a 50% ratio, a $1,000 source trade becomes a $500 trade on your account.

Trades outside the min/max range are skipped. Proportional and Fixed modes are coming soon.

## Leverage

| Mode                 | Description                                                                       |
| -------------------- | --------------------------------------------------------------------------------- |
| **Native** (default) | Uses whatever leverage you have set in your Hyperliquid subaccount for each asset |
| **Follow**           | Matches the source trader's leverage (coming soon)                                |
| **Custom**           | Uses a fixed leverage value you specify (coming soon)                             |

{% hint style="info" %}
With Native mode, manage your leverage directly on Hyperliquid. Whatever you configure per asset in your subaccount is what your bot uses.
{% endhint %}

## Limit Orders

Place copied entry orders as limit orders at a discount instead of market orders.

| Setting                    | Description                              | Default |
| -------------------------- | ---------------------------------------- | ------- |
| **Enable Limit Buy Lower** | Place entries as discounted limit orders | Off     |
| **Discount (%)**           | Percentage below market price            | 0.5%    |
| **Timeout (minutes)**      | Cancel if not filled within this time    | 60 min  |

{% hint style="warning" %}
If the price never reaches your limit, the order is cancelled and the trade is **missed**. Only use this if you prefer better entries over guaranteed execution.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://landingnet.gitbook.io/doc/documentation/copy-trading/configuration.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.
