> For the complete documentation index, see [llms.txt](https://minara.ai/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://minara.ai/docs/minara-handbook/ja/wkufur/how-to-create-a-copy-trading-bot.md).

# コピートレーディングボット

### 作成するもの

* 対象ウォレットをオンチェーンで監視するワークフロー
* Minaraウォレットで同じ売買取引を自動実行する
* 対応チェーン上のスポットトークンをサポート

***

### 手順

1. **監視するウォレットを選ぶ**
   * コピーしたいウォレットのアドレスを取得します（例： `0x1234...abcd`).
   * これが実際の取引量のあるアクティブなトレーダーであることを確認してください。非アクティブな、または「スパム」ウォレットをコピーしても役に立ちません。
   * 1つのワークフローで監視・ミラーするウォレットを複数選択できます。
2. **Minaraでワークフローを作成する**
   * プロンプト例：

     > 「Solanaチェーン上のこのウォレット DbrdV2...（ウォレットアドレス）を監視し、各売買アクションを1取引あたり50ドルでコピーしてください。」
3. **実行ルールを設定する**
   * 予測可能性とリスク管理を容易にするため、固定の取引額（例：1注文あたり50ドル）を使用します。
4. **通知方法を選ぶ**
   * 取引実行の通知をメールまたはTelegramで受け取ります。
5. **デプロイして監視する**
   * ボットがウォレットのオンチェーン活動を監視します。
   * 対応する取引が検出されると、Minaraがあなたのルールに従ってそれをミラーします。
   * 取引が実行されるたびに通知を受け取ります。

***

### ベストプラクティス

* **フォローする前に精査する**：多くのウォレットは内部関係者や短期のミームコイン投資家のものです。コピーする前に調査してください。
* **少額から始める**：まずは少額でテストし、実行の正確性を確認してください。
* **資産のホワイトリスト/ブラックリスト：** 特定のトークンだけをコピーするか、リスクの高いミームコインを除外します。

***

### 現在の制限

* スポットトークン取引のみ対応しています。
* コピーはMonitorシステムで検出された対応チェーンに限定されます。

***

### 今後の開発予定

* 比例した取引サイズ（例：相手のポジションサイズの10%に合わせる）。
* リスク管理（例：日次/週次の支出上限を設定する）
* より賢いフィルター（例：取引額が1万ドルを超える場合のみコピーする、または時価総額100万ドル未満のトークンを除外する）
* ポートフォリオのミラーリング（個別取引だけでなく）
* 先物およびレバレッジ対応


---

# 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, and the optional `goal` query parameter:

```
GET https://minara.ai/docs/minara-handbook/ja/wkufur/how-to-create-a-copy-trading-bot.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
