[PR #228] [CLOSED] feat: add okx tool #1201

Closed
opened 2026-02-16 10:22:17 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/228
Author: @ZhouhaoJiang
Created: 2/17/2025
Status: Closed

Base: mainHead: feat/add-okx-tool


📝 Commits (1)

📊 Changes

21 files changed (+1193 additions, -0 deletions)

View changed files

tools/okx/.difyignore (+178 -0)
tools/okx/.env.example (+4 -0)
tools/okx/.gitignore (+171 -0)
tools/okx/GUIDE.md (+117 -0)
tools/okx/PRIVACY.md (+78 -0)
tools/okx/README.md (+64 -0)
tools/okx/_assets/demo.png (+0 -0)
tools/okx/_assets/icon.svg (+18 -0)
tools/okx/main.py (+6 -0)
tools/okx/manifest.yaml (+33 -0)
tools/okx/provider/okx.py (+23 -0)
tools/okx/provider/okx.yaml (+62 -0)
tools/okx/requirements.txt (+2 -0)
tools/okx/tools/okx_create_order.py (+79 -0)
tools/okx/tools/okx_create_order.yaml (+109 -0)
tools/okx/tools/okx_get_all_symbol.py (+29 -0)
tools/okx/tools/okx_get_all_symbol.yaml (+36 -0)
tools/okx/tools/okx_get_balance.py (+33 -0)
tools/okx/tools/okx_get_balance.yaml (+40 -0)
tools/okx/tools/okx_get_price.py (+30 -0)

...and 1 more files

📄 Description

Add OKX Trading Plugin

Add OKX cryptocurrency exchange integration plugin with the following features:

  • Real-time price data retrieval
  • Trading pair listing
  • Account balance checking
  • Order placement (spot/futures, market/limit)

All operations use CCXT library for secure API interactions.

CleanShot 2025-02-17 at 18 01 33@2x
CleanShot 2025-02-17 at 18 21 52@2x


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-official-plugins/pull/228 **Author:** [@ZhouhaoJiang](https://github.com/ZhouhaoJiang) **Created:** 2/17/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/add-okx-tool` --- ### 📝 Commits (1) - [`efc87c2`](https://github.com/langgenius/dify-official-plugins/commit/efc87c2c5c1d52808b7e25ea0ccfa18a9a6a9a7f) feat: add okx tool ### 📊 Changes **21 files changed** (+1193 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `tools/okx/.difyignore` (+178 -0) ➕ `tools/okx/.env.example` (+4 -0) ➕ `tools/okx/.gitignore` (+171 -0) ➕ `tools/okx/GUIDE.md` (+117 -0) ➕ `tools/okx/PRIVACY.md` (+78 -0) ➕ `tools/okx/README.md` (+64 -0) ➕ `tools/okx/_assets/demo.png` (+0 -0) ➕ `tools/okx/_assets/icon.svg` (+18 -0) ➕ `tools/okx/main.py` (+6 -0) ➕ `tools/okx/manifest.yaml` (+33 -0) ➕ `tools/okx/provider/okx.py` (+23 -0) ➕ `tools/okx/provider/okx.yaml` (+62 -0) ➕ `tools/okx/requirements.txt` (+2 -0) ➕ `tools/okx/tools/okx_create_order.py` (+79 -0) ➕ `tools/okx/tools/okx_create_order.yaml` (+109 -0) ➕ `tools/okx/tools/okx_get_all_symbol.py` (+29 -0) ➕ `tools/okx/tools/okx_get_all_symbol.yaml` (+36 -0) ➕ `tools/okx/tools/okx_get_balance.py` (+33 -0) ➕ `tools/okx/tools/okx_get_balance.yaml` (+40 -0) ➕ `tools/okx/tools/okx_get_price.py` (+30 -0) _...and 1 more files_ </details> ### 📄 Description Add OKX Trading Plugin Add OKX cryptocurrency exchange integration plugin with the following features: - Real-time price data retrieval - Trading pair listing - Account balance checking - Order placement (spot/futures, market/limit) All operations use CCXT library for secure API interactions. ![CleanShot 2025-02-17 at 18 01 33@2x](https://github.com/user-attachments/assets/538ce7e8-535f-4d1c-b0d8-2e8acdf939d2) ![CleanShot 2025-02-17 at 18 21 52@2x](https://github.com/user-attachments/assets/d4f5d1ad-9558-4451-aee0-b38a51330884) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 10:22:17 -05:00
yindo closed this issue 2026-02-16 10:22:17 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-official-plugins#1201