> 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-set-up-automated-trade-execution.md).

# 自動取引実行

Minaraは特定の価格条件を監視し、条件が満たされたときに自動で注文を出せます。押し目買い、利確、常時手動で監視せずにストップロスを設定するのに最適です。

***

### 作成するもの

次のようなワークフロー：

* を監視する **絶対価格** あるトークンの（設定値以上または以下）
* 実行する **買い、売り、またはその両方** 条件が満たされたときに、以下を含めて **利確（TP）** および／または **ストップロス（SL）** 戦略
* 実行を確認する通知を送ります

> 価格監視は当社のモニターシステムが担います。リアルタイムで信頼性は高いですが、対応チェーン上の対応トークンに限られます。

***

### プロンプト例

希望する注文ロジックをそのまま記述するだけで構いません。Minaraがそれを、高精度な実行のために当社専用のモニターシステムを使うワークフローに変換します。

1. **シンプルな買い／売りトリガー**

   > 「ETH価格が4,000 USDTまで下がったら、500ドル分のETHを買う。」
   >
   > 「BTC価格が130,000 USDTに達したら、0.1 BTCを売る。」
   >
   > 「金（XAU）が2,900ドルまで下がったら、200ドル分を買う。」
2. **買い + TP/SL戦略**

   > 「価格が175 USDT以下なら200 USDT分のSOLを買い、その後200 USDTで利確し、160 USDTでストップロスを設定する。」
   >
   > 「NVDAが1,000ドルに達したら、300ドル分を買い、5%のストップロスと15%の利確を設定する。」
3. **段階的買い**

   > 「4,000 USDTで200ドル分のETH、4,150 USDTで200ドル分、4,250 USDTで200ドル分を買う。」
   >
   > 「200ドルでAAPLを100ドル分、195ドルで100ドル分、190ドルで100ドル分買う。」
4. **部分決済**

   > 「DOGE価格が0.25 USDTに達したら、ポジションの半分を売る。」

***

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

* 使用する **TP/SL付きの指値注文を** すると、より良いリスク管理ができます。
* Telegramアカウントをリンクしたままにし、 [Minara通知ボット](https://t.me/MinaraNotificationBot) を有効にして、リアルタイムの実行更新を受け取りましょう。
* 受け取るはずの約定結果メールが届かない場合は、まず迷惑メールフォルダを確認してください。
* TP/SLの幅を必要以上に小さくしないでください。急な価格のヒゲで早期決済が発動することがあります。
* 小型時価総額のミームトークンでは、特に熱狂時に、コピー品や同名の紛らわしいものがよくあります。間違いを避けるため、必ずチェーンとトークンのコントラクトアドレスを指定し、再確認してください。

> BTC、ETH、SOLのような主流資産は、すでにコントラクトで区別されています。

***

### 今後の開発

* 割合ベースのトリガー（例：24時間で+5%）
* 先物、レバレッジ、および注文トリガー向けの高度な戦略
* 複数条件の注文（例：価格条件＋出来高急増のときのみトリガー）
* 自動調整ストップロス（トレーリングSL）
* さらに多くのトリガータイプ（例：売りニュース戦略向けのニューストリガー）


---

# 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-set-up-automated-trade-execution.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.
