> 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/ko/workflow/how-to-create-a-copy-trading-bot.md).

# 카피 트레이딩 봇

### 만들게 될 것

* 온체인에서 대상 지갑을 모니터링하는 워크플로
* Minara 지갑으로 동일한 매수/매도 거래를 자동 실행
* 지원되는 체인의 현물 토큰을 지원합니다

***

### 단계별

1. **팔로우할 지갑 선택**
   * 복사하고 싶은 지갑 주소를 가져오세요(예: `0x1234...abcd`).
   * 실제 거래량이 있는 활발한 트레이더인지 확인하세요. 비활성 또는 “스팸” 지갑을 복사해도 도움이 되지 않습니다.
   * 하나의 워크플로에서 모니터링하고 따라할 여러 지갑을 선택할 수 있습니다.
2. **Minara에서 워크플로 만들기**
   * 프롬프트 예시:

     > “이 지갑 DbrdV2...(지갑 주소)를 Solana 체인에서 모니터링하고, 각 매수/매도 동작을 거래당 $50로 복사하세요.”
3. **실행 규칙 설정**
   * 예측 가능성과 더 쉬운 리스크 관리를 위해 고정 거래 금액(예: 주문당 $50)을 사용하세요.
4. **알림 방법 선택**
   * 이메일 또는 telegram으로 거래 실행 알림을 받습니다.
5. **배포하고 모니터링**
   * 봇이 지갑의 온체인 활동을 모니터링합니다.
   * 지원되는 거래가 감지되면 Minara가 설정한 규칙에 따라 이를 따라합니다.
   * 거래가 실행될 때마다 알림을 받게 됩니다.

***

### 모범 사례

* **팔로우하기 전에 검증하기**: 많은 지갑은 내부자나 단기 밈코인 트레이더의 것일 수 있으므로, 복사하기 전에 조사하세요.
* **작게 시작하기**: 먼저 적은 잔액으로 테스트하여 실행 정확도를 확인하세요.
* **자산 허용 목록/차단 목록:** 특정 토큰만 복사하거나, 위험한 밈코인은 제외하세요.

***

### 현재 제한 사항

* 현물 토큰 거래만 지원됩니다.
* 복사는 Monitor 시스템이 감지한 지원되는 체인으로 제한됩니다.

***

### 향후 개발 계획

* 비례 거래 규모 조정(예: 포지션 규모의 10%에 맞춤).
* 리스크 관리(예: 일일/주간 지출 한도 설정)
* 더 똑똑한 필터(예: 거래가 $10,000를 초과할 때만 복사하거나, 시가총액 $1M 미만 토큰 제외)
* 포트폴리오 미러링(개별 거래뿐 아니라)
* 선물 및 레버리지 지원


---

# 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/ko/workflow/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.
