@@ -53,7 +53,7 @@
|
||||
|
||||
### What is QuantDinger?
|
||||
|
||||
QuantDinger is a **local-first, privacy-first quantitative trading infrastructure**. It runs entirely on your machine, giving you full control over your strategies, trading data, and API keys.
|
||||
QuantDinger is a **local-first, privacy-first, self-hosted quantitative trading infrastructure**. It runs on your own machine/server, providing **multi-user accounts backed by PostgreSQL** while keeping full control of your strategies, trading data, and API keys.
|
||||
|
||||
### Why Local-First?
|
||||
|
||||
@@ -73,7 +73,7 @@ QuantDinger includes a built-in **LLM-based multi-agent research system** that g
|
||||
|
||||
### Core Value
|
||||
|
||||
- **🔓 Apache 2.0 Open Source**: Fully permissive and commercial-friendly. Unlike viral licenses (GPL/AGPL), you truly own your code and modifications.
|
||||
- **🔓 Apache 2.0 Open Source (Code)**: Permissive and commercial-friendly. You can fork and modify the codebase under Apache 2.0, while preserving required notices.
|
||||
- **🐍 Python-Native & Visual**: Write indicators in standard Python (easier than PineScript) with AI assistance. Visualize signals directly on charts—a "Local TradingView" experience.
|
||||
- **🤖 AI-Loop Optimization**: It doesn't just run strategies; AI analyzes backtest results to suggest parameter tuning (Stop-Loss/TP/MACD settings), forming a closed optimization loop.
|
||||
- **🌍 Universal Market Access**: One unified system for Crypto (Live), US/CN Stocks, Forex, and Futures (Data/Notify).
|
||||
@@ -81,72 +81,6 @@ QuantDinger includes a built-in **LLM-based multi-agent research system** that g
|
||||
|
||||
---
|
||||
|
||||
## 🏆 Our Partners & Sponsors
|
||||
|
||||
<div align="center">
|
||||
|
||||
### 💼 Trusted Exchange Partners
|
||||
|
||||
We're proud to partner with leading cryptocurrency exchanges that provide reliable infrastructure for quantitative trading. These partnerships help support the ongoing development of QuantDinger.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>World's Largest Crypto Exchange</strong><br/>
|
||||
<small>Spot • Futures • Margin Trading</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>Leading Derivatives Platform</strong><br/>
|
||||
<small>Spot • Perpetual • Options</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>Innovative Copy Trading</strong><br/>
|
||||
<small>Spot • Futures • Social Trading</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p align="center">
|
||||
<em>By using our partner links, you support QuantDinger's development while enjoying the same trading experience.</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
### 💝 Direct Support
|
||||
|
||||
Your contributions help us maintain and improve QuantDinger. Every donation makes a difference!
|
||||
|
||||
**Crypto Donations (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<em>Thank you for supporting open-source development! 🙏</em>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 📺 Video Demo
|
||||
|
||||
<div align="center">
|
||||
@@ -479,8 +413,8 @@ POSTGRES_PASSWORD=your_secure_password
|
||||
POSTGRES_DB=quantdinger
|
||||
|
||||
# Admin Account (created on first startup)
|
||||
ADMIN_USER=admin
|
||||
ADMIN_PASSWORD=your_admin_password
|
||||
ADMIN_USER=quantdinger
|
||||
ADMIN_PASSWORD=123456
|
||||
|
||||
# Optional: AI Features
|
||||
OPENROUTER_API_KEY=your_api_key
|
||||
@@ -515,7 +449,7 @@ This will automatically:
|
||||
|
||||
- **Frontend UI**: http://localhost:8888
|
||||
- **Backend API**: http://localhost:5000
|
||||
- **Default Account**: Uses `ADMIN_USER` / `ADMIN_PASSWORD` from `.env` (default: `quantdinger` / `123456`)
|
||||
- **Default Account**: Uses `ADMIN_USER` / `ADMIN_PASSWORD` from `.env` (default: `quantdinger` / `123456`, please change for production)
|
||||
|
||||
> **Note**: For production, edit `backend_api_python/.env` to set strong passwords, add `OPENROUTER_API_KEY` for AI features, then restart with `docker-compose restart backend`.
|
||||
|
||||
@@ -744,8 +678,8 @@ Edit `.env` and set:
|
||||
```bash
|
||||
DATABASE_URL=postgresql://quantdinger:your_password@localhost:5432/quantdinger
|
||||
SECRET_KEY=your-secret-key
|
||||
ADMIN_USER=admin
|
||||
ADMIN_PASSWORD=your_admin_password
|
||||
ADMIN_USER=quantdinger
|
||||
ADMIN_PASSWORD=123456
|
||||
```
|
||||
|
||||
Then start:
|
||||
@@ -810,24 +744,82 @@ Licensed under the **Apache License 2.0**. See `LICENSE`.
|
||||
|
||||
---
|
||||
|
||||
## 💰 Project Sustainability
|
||||
## 💼 Commercial License & Sponsorship
|
||||
|
||||
QuantDinger is open-source and free to use. If you find it useful, here are ways to support ongoing development:
|
||||
QuantDinger is licensed under **Apache License 2.0** (code). However, **Apache 2.0 does NOT grant trademark rights**. Our branding assets (name/logo) are protected as trademarks and are governed separately from the code license:
|
||||
|
||||
### Professional Services
|
||||
- **Copyright/Attribution**: You must keep required copyright and license notices (including any NOTICE/attribution in the repo and in the UI where applicable).
|
||||
- **Trademarks (Name/Logo/Branding)**: You may not use the QuantDinger name/logo/branding to imply endorsement or misrepresent origin. If you redistribute a modified version, you should remove/replace QuantDinger branding unless you have written permission.
|
||||
|
||||
Professional services are available:
|
||||
If you need to keep/modify QuantDinger branding in a redistribution (including UI branding and logo usage), please contact us for a **commercial license**.
|
||||
|
||||
| Service | Description |
|
||||
|---------|-------------|
|
||||
| **Deployment & Setup** | One-on-one assistance with server deployment, configuration, and optimization |
|
||||
| **Custom Strategy Development** | Tailored trading strategies designed for your specific needs and markets |
|
||||
| **Enterprise Upgrade** | Commercial license, priority support, and advanced features for businesses |
|
||||
| **Training & Consulting** | Hands-on training sessions and strategic consulting for your trading team |
|
||||
See: `TRADEMARKS.md`
|
||||
|
||||
**Interested?** Contact us via:
|
||||
- 📧 Email: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
- 💬 Telegram: [QuantDinger Group](https://t.me/quantdinger)
|
||||
### What you get with a Commercial License
|
||||
|
||||
- **Commercial authorization** to modify branding/copyright display as agreed
|
||||
- **Operations support**: deployment, upgrades, incident support, and maintenance guidance
|
||||
- **Consulting services**: architecture review, performance tuning, strategy workflow consulting
|
||||
- **Sponsorship options**: become a project sponsor and we can **display your logo/ad** (README/website/in-app placement as agreed)
|
||||
|
||||
### Contact
|
||||
|
||||
- **Telegram**: [QuantDinger Group](https://t.me/quantdinger)
|
||||
- **Email**: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
|
||||
---
|
||||
|
||||
### 💼 Trusted Exchange Partners (Affiliate Links)
|
||||
|
||||
By using our partner links, you support QuantDinger's development while enjoying the same trading experience.
|
||||
|
||||
<div align="center">
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>World's Largest Crypto Exchange</strong><br/>
|
||||
<small>Spot • Futures • Margin Trading</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>Leading Derivatives Platform</strong><br/>
|
||||
<small>Spot • Perpetual • Options</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>Innovative Copy Trading</strong><br/>
|
||||
<small>Spot • Futures • Social Trading</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### 💝 Direct Support (Donations)
|
||||
|
||||
Your contributions help us maintain and improve QuantDinger.
|
||||
|
||||
**Crypto Donations (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
|
||||
+73
-83
@@ -53,7 +53,7 @@
|
||||
|
||||
### QuantDinger 是什么?
|
||||
|
||||
QuantDinger 是一个**本地优先、隐私优先的量化交易基础设施**。它完全运行在你的机器上,让你完全控制自己的策略、交易数据和 API 密钥。
|
||||
QuantDinger 是一个**本地优先、隐私优先、自托管的量化交易基础设施**。它运行在你的机器/服务器上,提供 **PostgreSQL 支持的多用户账号体系**,同时让你完全控制自己的策略、交易数据和 API 密钥。
|
||||
|
||||
### 为什么选择本地优先?
|
||||
|
||||
@@ -73,7 +73,7 @@ QuantDinger 包含一个内置的**基于 LLM 的多智能体研究系统**,
|
||||
|
||||
### 核心价值
|
||||
|
||||
- **🔓 Apache 2.0 开源**:完全宽松且商业友好。不像病毒式的 GPL/AGPL 协议,你真正拥有你的代码和修改权。
|
||||
- **🔓 Apache 2.0 开源(代码)**:宽松且商业友好。你可以在 Apache 2.0 下 fork/修改代码,但需保留许可与署名等必要声明。
|
||||
- **🐍 Python 原生 & 可视化**:使用标准 Python 编写指标(比 PineScript 更简单),并由 AI 辅助。直接在图表上可视化信号——打造“本地版 TradingView”体验。
|
||||
- **🤖 AI 闭环优化**:不仅运行策略,AI 还会分析回测结果并建议参数调整(止损/止盈/MACD 设置),形成闭环优化。
|
||||
- **🌍 全球市场接入**:统一系统支持加密货币(实盘)、美股/A股、外汇和期货(数据/通知)。
|
||||
@@ -81,72 +81,6 @@ QuantDinger 包含一个内置的**基于 LLM 的多智能体研究系统**,
|
||||
|
||||
---
|
||||
|
||||
## 🏆 我们的合作伙伴与赞助商
|
||||
|
||||
<div align="center">
|
||||
|
||||
### 💼 值得信赖的交易所合作伙伴
|
||||
|
||||
我们很自豪能与领先的加密货币交易所合作,为量化交易提供可靠的基础设施。这些合作伙伴关系有助于支持 QuantDinger 的持续发展。
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>全球最大的加密货币交易所</strong><br/>
|
||||
<small>现货 • 期货 • 杠杆交易</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>领先的衍生品平台</strong><br/>
|
||||
<small>现货 • 永续合约 • 期权</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>创新的跟单交易</strong><br/>
|
||||
<small>现货 • 期货 • 社交交易</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p align="center">
|
||||
<em>使用我们的合作伙伴链接,在享受相同交易体验的同时支持 QuantDinger 的发展。</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
### 💝 直接支持
|
||||
|
||||
您的贡献帮助我们维护和改进 QuantDinger。每一份捐赠都意义重大!
|
||||
|
||||
**加密货币捐赠 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<em>感谢您支持开源开发!🙏</em>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 📺 视频演示
|
||||
|
||||
<div align="center">
|
||||
@@ -394,7 +328,7 @@ score = w_{sim}\cdot sim + w_{recency}\cdot recency + w_{returns}\cdot returns\_
|
||||
|
||||
### 7. 技术栈
|
||||
|
||||
- **后端**:Python (Flask) + SQLite + Redis(可选)
|
||||
- **后端**:Python (Flask) + PostgreSQL + Redis(可选)
|
||||
- **前端**:Vue 2 + Ant Design Vue + KlineCharts/ECharts
|
||||
- **部署**:Docker Compose
|
||||
|
||||
@@ -480,7 +414,7 @@ QuantDinger 为全球用户构建,提供全面的国际化支持:
|
||||
│ (Flask + 策略运行时) │
|
||||
└──────────────┬──────────────┘
|
||||
│
|
||||
├─ SQLite (quantdinger.db)
|
||||
├─ PostgreSQL(多用户支持)
|
||||
├─ Redis (可选缓存)
|
||||
└─ 数据提供商 / LLMs / 交易所
|
||||
```
|
||||
@@ -619,26 +553,82 @@ npm run serve
|
||||
|
||||
---
|
||||
|
||||
## 💰 项目可持续性
|
||||
## 💼 商业授权与赞助(Commercial License & Sponsorship)
|
||||
|
||||
QuantDinger 是开源且免费使用的。如果你觉得它有用,以下是一些支持项目持续发展的方式:
|
||||
QuantDinger 的代码使用 **Apache License 2.0** 授权。但需要注意:**Apache 2.0 不授予商标权**。QuantDinger 的名称/Logo/品牌标识受商标与品牌政策约束(与代码许可分离):
|
||||
|
||||
- **版权/署名**:你必须保留必要的版权与许可声明(例如仓库中的 LICENSE/NOTICE 等,以及代码中的署名信息)。
|
||||
- **商标(名称/Logo/品牌)**:你不得使用 QuantDinger 的名称/Logo/品牌来暗示背书或误导来源;若再发布修改版,一般需要移除/替换 QuantDinger 品牌标识,除非获得书面许可。
|
||||
|
||||
如果你希望在再发布版本中**保留/修改 QuantDinger 品牌展示**(包括 UI 品牌、Logo 使用等),请联系我们获取 **商业授权**。
|
||||
|
||||
另见:`TRADEMARKS.md`
|
||||
|
||||
### 商业授权可获得
|
||||
|
||||
- **品牌/版权展示的商用授权**(以双方约定为准)
|
||||
- **运维支持**:部署、升级、故障处理与维护建议
|
||||
- **咨询服务**:架构评审、性能调优、策略工作流咨询
|
||||
- **赞助商权益**:成为项目赞助商,可按约定展示你的 Logo/广告(README/官网/应用内等)
|
||||
|
||||
### 联系方式
|
||||
|
||||
- **Telegram**: [QuantDinger Group](https://t.me/quantdinger)
|
||||
- **Email**: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
|
||||
---
|
||||
|
||||
### 专业服务
|
||||
### 💼 值得信赖的交易所合作伙伴(联盟链接)
|
||||
|
||||
提供以下专业服务:
|
||||
使用我们的合作伙伴链接,在享受相同交易体验的同时支持 QuantDinger 的发展。
|
||||
|
||||
| 服务 | 描述 |
|
||||
|---------|-------------|
|
||||
| **部署与设置** | 一对一协助服务器部署、配置和优化 |
|
||||
| **定制策略开发** | 针对特定需求和市场定制交易策略 |
|
||||
| **企业版升级** | 商业授权、优先支持和企业级高级功能 |
|
||||
| **培训与咨询** | 为你的交易团队提供实战培训和战略咨询 |
|
||||
<div align="center">
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>全球最大的加密货币交易所</strong><br/>
|
||||
<small>现货 • 期货 • 杠杆交易</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>领先的衍生品平台</strong><br/>
|
||||
<small>现货 • 永续合约 • 期权</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>创新的跟单交易</strong><br/>
|
||||
<small>现货 • 期货 • 社交交易</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
**感兴趣?** 联系我们:
|
||||
- 📧 Email: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
- 💬 Telegram: [QuantDinger Group](https://t.me/quantdinger)
|
||||
---
|
||||
|
||||
### 💝 直接支持(捐赠)
|
||||
|
||||
你的贡献帮助我们维护和改进 QuantDinger。
|
||||
|
||||
**加密货币捐赠 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
|
||||
+71
-81
@@ -53,7 +53,7 @@
|
||||
|
||||
### QuantDingerとは?
|
||||
|
||||
QuantDingerは **ローカルファースト、プライバシー重視の定量的取引インフラストラクチャ** です。完全にあなたのマシン上で実行され、戦略、取引データ、APIキーを完全にコントロールできます。
|
||||
QuantDingerは **ローカルファースト、プライバシー重視のセルフホスト型定量取引インフラ** です。あなたのマシン/サーバー上で実行され、**PostgreSQL によるマルチユーザーアカウント** を提供しつつ、戦略・取引データ・APIキーを完全にコントロールできます。
|
||||
|
||||
### なぜローカルファーストなのか?
|
||||
|
||||
@@ -73,7 +73,7 @@ QuantDingerには、ウェブから金融情報を収集し、ローカル市場
|
||||
|
||||
### コアバリュー
|
||||
|
||||
- **🔓 Apache 2.0 オープンソース**: 完全に寛容で商用利用に適しています。ウイルス性のGPL/AGPLライセンスとは異なり、コードと変更を真に所有できます。
|
||||
- **🔓 Apache 2.0 オープンソース(コード)**: 寛容で商用利用に適しています。Apache 2.0 の範囲で fork/改変が可能ですが、ライセンス/著作権表示など必要な告知は保持してください。
|
||||
- **🐍 Pythonネイティブ & ビジュアル**: 標準のPythonでインジケーターを作成(PineScriptより簡単)、AIが支援します。チャート上でシグナルを直接可視化 ——「ローカル版TradingView」体験を構築。
|
||||
- **🤖 AIループ最適化**: 戦略を実行するだけでなく、AIがバックテスト結果を分析してパラメータ調整(ストップロス/利益確定/MACD設定)を提案し、閉ループ最適化を形成します。
|
||||
- **🌍 グローバルマーケットアクセス**: 暗号資産(実取引)、米国/中国株、FX、先物(データ/通知)をサポートする統一システム。
|
||||
@@ -81,72 +81,6 @@ QuantDingerには、ウェブから金融情報を収集し、ローカル市場
|
||||
|
||||
---
|
||||
|
||||
## 🏆 パートナーとスポンサー
|
||||
|
||||
<div align="center">
|
||||
|
||||
### 💼 信頼できる取引所パートナー
|
||||
|
||||
私たちは、定量取引に信頼性の高いインフラストラクチャを提供する主要な暗号通貨取引所と提携できることを誇りに思います。これらのパートナーシップは、QuantDingerの継続的な開発を支援するのに役立ちます。
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>世界最大の暗号通貨取引所</strong><br/>
|
||||
<small>現物 • 先物 • マージン取引</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>主要なデリバティブプラットフォーム</strong><br/>
|
||||
<small>現物 • パーペチュアル • オプション</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>革新的なコピートレード</strong><br/>
|
||||
<small>現物 • 先物 • ソーシャルトレード</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p align="center">
|
||||
<em>パートナーリンクを使用することで、同じ取引体験を楽しみながらQuantDingerの開発を支援できます。</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
### 💝 直接サポート
|
||||
|
||||
あなたの貢献は、QuantDingerの維持と改善に役立ちます。すべての寄付が重要です!
|
||||
|
||||
**暗号通貨寄付 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<em>オープンソース開発へのご支援ありがとうございます!🙏</em>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 📺 動画デモ
|
||||
|
||||
<div align="center">
|
||||
@@ -575,26 +509,82 @@ npm run serve
|
||||
|
||||
---
|
||||
|
||||
## 💰 プロジェクトの持続可能性
|
||||
## 💼 商用ライセンス & スポンサー(Commercial License & Sponsorship)
|
||||
|
||||
QuantDingerはオープンソースで無料で使用できます。有用だと思われる場合は、以下が継続的な開発を支援する方法です:
|
||||
QuantDinger のコードは **Apache License 2.0** で提供されています。ただし **Apache 2.0 は商標権を付与しません**。QuantDinger の名称/ロゴ/ブランドは商標およびブランドポリシーの対象です(コードライセンスとは別扱い):
|
||||
|
||||
- **著作権/帰属表示**:LICENSE/NOTICE など、必要な著作権・ライセンス告知は保持してください。
|
||||
- **商標(名称/ロゴ/ブランド)**:QuantDinger の名称/ロゴ/ブランドを用いて、出所の誤認や背書きを示唆してはいけません。改変版を再配布する場合、書面許可がない限り QuantDinger ブランド表示の削除/置換が必要になることがあります。
|
||||
|
||||
再配布物で QuantDinger のブランド表示を**保持/変更**したい場合(UI 上のロゴ使用などを含む)、**商用ライセンス**についてお問い合わせください。
|
||||
|
||||
参照:`TRADEMARKS.md`
|
||||
|
||||
### 商用ライセンスで得られるもの
|
||||
|
||||
- 合意に基づく **ブランド/表示の商用許諾**
|
||||
- **運用サポート**:デプロイ、アップグレード、障害対応、保守ガイダンス
|
||||
- **コンサルティング**:アーキテクチャレビュー、性能チューニング、戦略ワークフロー相談
|
||||
- **スポンサー枠**:スポンサーとしてロゴ/広告掲載(README/サイト/アプリ内など合意に基づく)
|
||||
|
||||
### 連絡先
|
||||
|
||||
- **Telegram**: [QuantDinger Group](https://t.me/quantdinger)
|
||||
- **Email**: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
|
||||
---
|
||||
|
||||
### 商用サービス
|
||||
### 💼 取引所パートナー(アフィリエイトリンク)
|
||||
|
||||
以下のプロフェッショナルサービスを提供しています:
|
||||
パートナーリンクを使用することで、同じ取引体験を楽しみながら QuantDinger の開発を支援できます。
|
||||
|
||||
| サービス | 説明 |
|
||||
|---------|-------------|
|
||||
| **デプロイ & セットアップ** | サーバーのデプロイ、設定、最適化に関するマンツーマンのサポート |
|
||||
| **カスタム戦略開発** | 特定のニーズや市場に合わせて設計された取引戦略の開発 |
|
||||
| **エンタープライズアップグレード** | 商用ライセンス、優先サポート、ビジネス向けの高度な機能 |
|
||||
| **トレーニング & コンサルティング** | 取引チーム向けの実践的なトレーニングセッションと戦略コンサルティング |
|
||||
<div align="center">
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>世界最大の暗号通貨取引所</strong><br/>
|
||||
<small>現物 • 先物 • マージン取引</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>主要なデリバティブプラットフォーム</strong><br/>
|
||||
<small>現物 • パーペチュアル • オプション</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>革新的なコピートレード</strong><br/>
|
||||
<small>現物 • 先物 • ソーシャルトレード</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
**ご興味がありますか?** 以下よりお問い合わせください:
|
||||
- 📧 Email: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
- 💬 Telegram: [QuantDinger Group](https://t.me/quantdinger)
|
||||
---
|
||||
|
||||
### 💝 直接サポート(寄付)
|
||||
|
||||
あなたのご支援は QuantDinger の維持・改善に役立ちます。
|
||||
|
||||
**暗号通貨寄付 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
|
||||
+71
-81
@@ -53,7 +53,7 @@
|
||||
|
||||
### QuantDinger란 무엇인가요?
|
||||
|
||||
QuantDinger는 **로컬 우선, 프라이버시 우선의 정량 거래 인프라**입니다. 완전히 귀하의 머신에서 실행되며, 전략, 거래 데이터 및 API 키를 완전히 제어할 수 있습니다.
|
||||
QuantDinger는 **로컬 우선, 프라이버시 우선의 셀프 호스팅 정량 거래 인프라**입니다. 귀하의 머신/서버에서 실행되며, **PostgreSQL 기반 멀티 유저 계정**을 제공하면서도 전략, 거래 데이터 및 API 키를 완전히 제어할 수 있습니다.
|
||||
|
||||
### 왜 로컬 우선인가요?
|
||||
|
||||
@@ -73,7 +73,7 @@ QuantDinger는 웹에서 금융 정보를 수집하고, 로컬 시장 데이터
|
||||
|
||||
### 핵심 가치
|
||||
|
||||
- **🔓 Apache 2.0 오픈소스**: 완전히 허용적이며 상업적으로 친화적입니다. 바이러스성 GPL/AGPL 라이선스와 달리, 코드와 수정 사항을 진정으로 소유할 수 있습니다.
|
||||
- **🔓 Apache 2.0 오픈소스(코드)**: 허용적이며 상업적으로 친화적입니다. Apache 2.0 범위에서 fork/수정이 가능하지만, 라이선스/저작권 고지 등 필요한 표기는 유지해야 합니다.
|
||||
- **🐍 파이썬 네이티브 & 비주얼**: 표준 파이썬으로 지표를 작성(PineScript보다 쉬움)하고 AI의 지원을 받으세요. 차트에서 신호를 직접 시각화하여 "로컬 버전의 TradingView" 경험을 구축하세요.
|
||||
- **🤖 AI 루프 최적화**: 전략을 실행할 뿐만 아니라, AI가 백테스트 결과를 분석하여 매개변수 조정(손절매/이익실현/MACD 설정)을 제안하고 폐루프 최적화를 형성합니다.
|
||||
- **🌍 글로벌 마켓 액세스**: 암호화폐(실거래), 미국/중국 주식, 외환 및 선물(데이터/알림)을 지원하는 통합 시스템.
|
||||
@@ -81,72 +81,6 @@ QuantDinger는 웹에서 금융 정보를 수집하고, 로컬 시장 데이터
|
||||
|
||||
---
|
||||
|
||||
## 🏆 파트너 및 스폰서
|
||||
|
||||
<div align="center">
|
||||
|
||||
### 💼 신뢰할 수 있는 거래소 파트너
|
||||
|
||||
우리는 정량 거래를 위한 신뢰할 수 있는 인프라를 제공하는 주요 암호화폐 거래소와 파트너십을 맺고 있음을 자랑스럽게 생각합니다. 이러한 파트너십은 QuantDinger의 지속적인 개발을 지원하는 데 도움이 됩니다.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>세계 최대 암호화폐 거래소</strong><br/>
|
||||
<small>현물 • 선물 • 마진 거래</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>주요 파생상품 플랫폼</strong><br/>
|
||||
<small>현물 • 영구 선물 • 옵션</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>혁신적인 복사 거래</strong><br/>
|
||||
<small>현물 • 선물 • 소셜 거래</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p align="center">
|
||||
<em>파트너 링크를 사용하면 동일한 거래 경험을 즐기면서 QuantDinger의 개발을 지원할 수 있습니다.</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
### 💝 직접 지원
|
||||
|
||||
귀하의 기여는 QuantDinger의 유지 및 개선에 도움이 됩니다. 모든 기부가 중요합니다!
|
||||
|
||||
**암호화폐 기부 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<em>오픈소스 개발에 대한 지원에 감사드립니다! 🙏</em>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 📺 동영상 데모
|
||||
|
||||
<div align="center">
|
||||
@@ -588,26 +522,82 @@ npm run serve
|
||||
|
||||
---
|
||||
|
||||
## 💰 프로젝트 지속 가능성
|
||||
## 💼 상용 라이선스 & 스폰서(Commercial License & Sponsorship)
|
||||
|
||||
QuantDinger는 오픈소스이며 무료로 사용할 수 있습니다. 유용하다고 생각되면 다음은 지속적인 개발을 지원하는 방법입니다:
|
||||
QuantDinger의 코드는 **Apache License 2.0**으로 제공됩니다. 다만 **Apache 2.0은 상표권을 부여하지 않습니다**. QuantDinger의 이름/로고/브랜딩은 상표 및 브랜드 정책의 적용을 받으며(코드 라이선스와 별개):
|
||||
|
||||
- **저작권/표기**: LICENSE/NOTICE 등 필요한 저작권·라이선스 고지는 유지해야 합니다.
|
||||
- **상표(이름/로고/브랜딩)**: QuantDinger의 이름/로고/브랜딩을 사용해 출처를 오인시키거나 보증(endorsement)을 암시해서는 안 됩니다. 수정 버전을 재배포할 때는 서면 허가가 없는 한 QuantDinger 브랜딩을 제거/대체해야 할 수 있습니다.
|
||||
|
||||
재배포물에서 QuantDinger 브랜딩을 **유지/수정**하고 싶다면(UI 로고 사용 포함) **상용 라이선스**를 문의해 주세요.
|
||||
|
||||
참고: `TRADEMARKS.md`
|
||||
|
||||
### 상용 라이선스로 제공되는 것
|
||||
|
||||
- 합의된 범위 내 **브랜딩/표시의 상용 허가**
|
||||
- **운영 지원**: 배포, 업그레이드, 장애 대응, 유지보수 가이드
|
||||
- **컨설팅**: 아키텍처 리뷰, 성능 튜닝, 전략 워크플로우 컨설팅
|
||||
- **스폰서 옵션**: 스폰서로서 로고/광고 노출(README/웹사이트/앱 내 등 합의에 따름)
|
||||
|
||||
### 연락처
|
||||
|
||||
- **Telegram**: [QuantDinger Group](https://t.me/quantdinger)
|
||||
- **Email**: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
|
||||
---
|
||||
|
||||
### 상용 서비스
|
||||
### 💼 거래소 파트너(어필리에이트 링크)
|
||||
|
||||
다음 전문 서비스를 제공합니다:
|
||||
파트너 링크를 사용하면 동일한 거래 경험을 즐기면서 QuantDinger의 개발을 지원할 수 있습니다.
|
||||
|
||||
| 서비스 | 설명 |
|
||||
|---------|-------------|
|
||||
| **배포 및 설정** | 서버 배포, 구성 및 최적화에 대한 일대일 지원 |
|
||||
| **맞춤형 전략 개발** | 귀하의 특정 요구와 시장에 맞춘 거래 전략 설계 |
|
||||
| **엔터프라이즈 업그레이드** | 상용 라이선스, 우선 지원 및 비즈니스를 위한 고급 기능 |
|
||||
| **교육 및 컨설팅** | 거래 팀을 위한 실전 교육 세션 및 전략 컨설팅 |
|
||||
<div align="center">
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>세계 최대 암호화폐 거래소</strong><br/>
|
||||
<small>현물 • 선물 • 마진 거래</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>주요 파생상품 플랫폼</strong><br/>
|
||||
<small>현물 • 영구 선물 • 옵션</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>혁신적인 복사 거래</strong><br/>
|
||||
<small>현물 • 선물 • 소셜 거래</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
**관심이 있으십니까?** 다음을 통해 문의하십시오:
|
||||
- 📧 Email: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
- 💬 Telegram: [QuantDinger Group](https://t.me/quantdinger)
|
||||
---
|
||||
|
||||
### 💝 직접 지원(기부)
|
||||
|
||||
귀하의 기여는 QuantDinger의 유지 및 개선에 도움이 됩니다.
|
||||
|
||||
**암호화폐 기부 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
|
||||
+71
-81
@@ -53,7 +53,7 @@
|
||||
|
||||
### QuantDinger 是什麼?
|
||||
|
||||
QuantDinger 是一個**本地優先、隱私優先的量化交易基礎設施**。它完全運行在你的機器上,讓你完全控制自己的策略、交易數據和 API 密鑰。
|
||||
QuantDinger 是一個**本地優先、隱私優先、自託管的量化交易基礎設施**。它運行在你的機器/伺服器上,提供 **PostgreSQL 支持的多用戶帳號體系**,同時讓你完全控制自己的策略、交易數據和 API 密鑰。
|
||||
|
||||
### 為什麼選擇本地優先?
|
||||
|
||||
@@ -73,7 +73,7 @@ QuantDinger 包含一個內置的**基於 LLM 的多智能體研究系統**,
|
||||
|
||||
### 核心價值
|
||||
|
||||
- **🔓 Apache 2.0 開源**:完全寬鬆且商業友好。不像病毒式的 GPL/AGPL 協議,你真正擁有你的代碼和修改權。
|
||||
- **🔓 Apache 2.0 開源(代碼)**:寬鬆且商業友好。你可以在 Apache 2.0 下 fork/修改代碼,但需保留許可與署名等必要聲明。
|
||||
- **🐍 Python 原生 & 可視化**:使用標準 Python 編寫指標(比 PineScript 更簡單),並由 AI 輔助。直接在圖表上可視化信號——打造「本地版 TradingView」體驗。
|
||||
- **🤖 AI 閉環優化**:不僅運行策略,AI 還會分析回測結果並建議參數調整(止損/止盈/MACD 設置),形成閉環優化。
|
||||
- **🌍 全球市場接入**:統一系統支持加密貨幣(實盤)、美股/A股、外匯和期貨(數據/通知)。
|
||||
@@ -81,72 +81,6 @@ QuantDinger 包含一個內置的**基於 LLM 的多智能體研究系統**,
|
||||
|
||||
---
|
||||
|
||||
## 🏆 我們的合作夥伴與贊助商
|
||||
|
||||
<div align="center">
|
||||
|
||||
### 💼 值得信賴的交易所合作夥伴
|
||||
|
||||
我們很自豪能與領先的加密貨幣交易所合作,為量化交易提供可靠的基礎設施。這些合作夥伴關係有助於支持 QuantDinger 的持續發展。
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>全球最大的加密貨幣交易所</strong><br/>
|
||||
<small>現貨 • 期貨 • 槓桿交易</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>領先的衍生品平台</strong><br/>
|
||||
<small>現貨 • 永續合約 • 期權</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>創新的跟單交易</strong><br/>
|
||||
<small>現貨 • 期貨 • 社交交易</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p align="center">
|
||||
<em>使用我們的合作夥伴鏈接,在享受相同交易體驗的同時支持 QuantDinger 的發展。</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
### 💝 直接支持
|
||||
|
||||
您的貢獻幫助我們維護和改進 QuantDinger。每一份捐贈都意義重大!
|
||||
|
||||
**加密貨幣捐贈 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<em>感謝您支持開源開發!🙏</em>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## 📺 視頻演示
|
||||
|
||||
<div align="center">
|
||||
@@ -589,26 +523,82 @@ npm run serve
|
||||
|
||||
---
|
||||
|
||||
## 💰 專案可持續性
|
||||
## 💼 商業授權與贊助(Commercial License & Sponsorship)
|
||||
|
||||
QuantDinger 是開源且免費使用的。如果你覺得它有用,以下是一些支持專案持續發展的方式:
|
||||
QuantDinger 的代碼使用 **Apache License 2.0** 授權。但請注意:**Apache 2.0 不授予商標權**。QuantDinger 的名稱/Logo/品牌標識受商標與品牌政策約束(與代碼許可分離):
|
||||
|
||||
- **版權/署名**:你必須保留必要的版權與許可聲明(例如倉庫中的 LICENSE/NOTICE 等,以及代碼中的署名資訊)。
|
||||
- **商標(名稱/Logo/品牌)**:你不得使用 QuantDinger 的名稱/Logo/品牌來暗示背書或誤導來源;若再發佈修改版,一般需要移除/替換 QuantDinger 品牌標識,除非獲得書面許可。
|
||||
|
||||
若你希望在再發佈版本中**保留/修改 QuantDinger 品牌展示**(包括 UI 品牌、Logo 使用等),請聯繫我們獲取 **商業授權**。
|
||||
|
||||
另見:`TRADEMARKS.md`
|
||||
|
||||
### 商業授權可獲得
|
||||
|
||||
- **品牌/版權展示的商用授權**(以雙方約定為準)
|
||||
- **運維支持**:部署、升級、故障處理與維護建議
|
||||
- **諮詢服務**:架構評審、性能調優、策略工作流諮詢
|
||||
- **贊助商權益**:成為專案贊助商,可按約定展示你的 Logo/廣告(README/官網/應用內等)
|
||||
|
||||
### 聯繫方式
|
||||
|
||||
- **Telegram**: [QuantDinger Group](https://t.me/quantdinger)
|
||||
- **Email**: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
|
||||
---
|
||||
|
||||
### 商業服務
|
||||
### 💼 值得信賴的交易所合作夥伴(聯盟鏈接)
|
||||
|
||||
我們提供專業服務,助你充分利用 QuantDinger:
|
||||
使用我們的合作夥伴鏈接,在享受相同交易體驗的同時支持 QuantDinger 的發展。
|
||||
|
||||
| 服務 | 描述 |
|
||||
|---------|-------------|
|
||||
| **部署與設置** | 一對一協助服務器部署、配置和優化 |
|
||||
| **定制策略開發** | 針對特定需求和市場定制交易策略 |
|
||||
| **企業版升級** | 商業授權、優先支持和企業級高級功能 |
|
||||
| **培訓與咨詢** | 為你的交易團隊提供實戰培訓和戰略咨詢 |
|
||||
<div align="center">
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bmwweb.ac/referral/earn-together/refer2earn-usdc/claim?hl=zh-CN&ref=GRO_28502_9OSOJ" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Binance-Exchange-F0B90B?style=for-the-badge&logo=binance&logoColor=white" alt="Binance" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>全球最大的加密貨幣交易所</strong><br/>
|
||||
<small>現貨 • 期貨 • 槓桿交易</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://www.bjwebptyiou.com/join/14449926" target="_blank">
|
||||
<img src="https://img.shields.io/badge/OKX-Exchange-000000?style=for-the-badge&logo=okx&logoColor=white" alt="OKX" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>領先的衍生品平台</strong><br/>
|
||||
<small>現貨 • 永續合約 • 期權</small>
|
||||
</td>
|
||||
<td align="center" width="33.33%">
|
||||
<a href="https://share.glassgs.com/u/H8XZGS71" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Bitget-Exchange-1F2937?style=for-the-badge&logo=bitget&logoColor=white" alt="Bitget" />
|
||||
</a>
|
||||
<br/><br/>
|
||||
<strong>創新的跟單交易</strong><br/>
|
||||
<small>現貨 • 期貨 • 社交交易</small>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
**感興趣?** 聯繫我們:
|
||||
- 📧 Email: [brokermr810@gmail.com](mailto:brokermr810@gmail.com)
|
||||
- 💬 Telegram: [QuantDinger Group](https://t.me/quantdinger)
|
||||
---
|
||||
|
||||
### 💝 直接支持(捐贈)
|
||||
|
||||
你的貢獻幫助我們維護和改進 QuantDinger。
|
||||
|
||||
**加密貨幣捐贈 (ERC-20 / BEP-20 / Polygon / Arbitrum)**
|
||||
|
||||
```
|
||||
0x96fa4962181bea077f8c7240efe46afbe73641a7
|
||||
```
|
||||
|
||||
<p>
|
||||
<img src="https://img.shields.io/badge/USDT-Accepted-26A17B?style=for-the-badge&logo=tether&logoColor=white" alt="USDT">
|
||||
<img src="https://img.shields.io/badge/ETH-Accepted-3C3C3D?style=for-the-badge&logo=ethereum&logoColor=white" alt="ETH">
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
# QuantDinger Trademarks & Branding Policy
|
||||
|
||||
This document governs the use of **QuantDinger** trademarks and brand assets (including the name, logo, and visual identity).
|
||||
It is **separate** from the code license. The code in this repository is licensed under the **Apache License 2.0** (see `LICENSE`).
|
||||
|
||||
> Note: This policy is provided for clarity and is not legal advice.
|
||||
|
||||
---
|
||||
|
||||
## 1) What is covered
|
||||
|
||||
The following are considered **QuantDinger brand assets**:
|
||||
|
||||
- The **QuantDinger** name and word marks
|
||||
- The QuantDinger **logo**, icon, and related images
|
||||
- Project branding used in the UI/website/marketing materials
|
||||
- Any confusingly similar marks or visual identity that may imply association
|
||||
|
||||
---
|
||||
|
||||
## 2) Apache 2.0 vs. trademarks (important)
|
||||
|
||||
Apache License 2.0 governs the **code** and allows you to fork, modify, and redistribute the code under its terms.
|
||||
However, **Apache 2.0 does not grant trademark rights**. Trademarks are governed by this policy.
|
||||
|
||||
You must still comply with Apache 2.0 requirements (e.g., preserving license/copyright notices, and `NOTICE` if present).
|
||||
|
||||
---
|
||||
|
||||
## 3) Permitted uses (generally allowed)
|
||||
|
||||
You may:
|
||||
|
||||
- **Accurately refer** to the project as “QuantDinger” when discussing the unmodified project (e.g., tutorials, reviews, bug reports).
|
||||
- Use the name “QuantDinger” to **link to this repository** or the official community channels.
|
||||
- Use the logo/name for **non-commercial editorial references** (e.g., blog posts) as long as it does not imply endorsement.
|
||||
|
||||
---
|
||||
|
||||
## 4) Prohibited uses (not allowed without permission)
|
||||
|
||||
You may **not**, without written permission:
|
||||
|
||||
- Use QuantDinger trademarks/branding in a way that **suggests endorsement**, sponsorship, affiliation, or official status when it is not true.
|
||||
- Redistribute a **modified** version of the software while keeping QuantDinger branding in a way that could confuse users about the origin.
|
||||
- Use QuantDinger branding to market a competing product/service as “official”, “certified”, or “approved” by QuantDinger.
|
||||
- Register or use confusingly similar names/domains/social accounts that may mislead users.
|
||||
|
||||
---
|
||||
|
||||
## 5) Forks & redistributions (recommended rules)
|
||||
|
||||
If you fork and distribute a modified version:
|
||||
|
||||
- **Do not** use “QuantDinger” as the primary product name.
|
||||
- **Remove/replace** QuantDinger logos and other brand identifiers in the UI and distribution materials, unless you have written permission.
|
||||
- Keep required Apache 2.0 notices (LICENSE/NOTICE) and do not misrepresent authorship.
|
||||
|
||||
If you distribute an **unmodified** build, you may keep QuantDinger branding, but you must not imply that your organization is the official owner unless authorized.
|
||||
|
||||
---
|
||||
|
||||
## 6) Commercial license, permission & sponsorship
|
||||
|
||||
If you need any of the following, please contact us for a **commercial license / written permission**:
|
||||
|
||||
- Keeping QuantDinger branding in a redistributed modified version
|
||||
- Modifying/removing copyright display as agreed
|
||||
- White-labeling / OEM / enterprise deployments
|
||||
|
||||
Commercial licensing can include:
|
||||
|
||||
- **Operations support**: deployment, upgrades, incident support, maintenance guidance
|
||||
- **Consulting services**: architecture review, performance tuning, strategy workflow consulting
|
||||
- **Sponsorship**: become a sponsor and we can display your logo/ad (README/website/in-app placement as agreed)
|
||||
|
||||
---
|
||||
|
||||
## 7) Contact
|
||||
|
||||
- Telegram: `https://t.me/worldinbroker`
|
||||
- Email: `mailto:brokermr810@gmail.com`
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
SECRET_KEY=quantdinger-secret-key-change-me
|
||||
ADMIN_USER=quantdinger
|
||||
ADMIN_PASSWORD=123456
|
||||
ADMIN_EMAIL=admin@example.com
|
||||
ADMIN_EMAIL=
|
||||
|
||||
# =========================
|
||||
# Demo Mode
|
||||
@@ -278,7 +278,7 @@ BILLING_COST_BACKTEST=3
|
||||
BILLING_COST_PORTFOLIO_MONITOR=8
|
||||
|
||||
# Telegram customer service URL for recharge (充值跳转的Telegram链接)
|
||||
RECHARGE_TELEGRAM_URL=https://t.me/your_support_bot
|
||||
RECHARGE_TELEGRAM_URL=https://t.me/quantdinger
|
||||
|
||||
# New user registration bonus credits (新用户注册赠送积分)
|
||||
CREDITS_REGISTER_BONUS=100
|
||||
|
||||
Reference in New Issue
Block a user