Automate Your Trades. Copy the Best. Share Your Edge.
Ready to turn your TradingView strategies into powerful trading bots? ClonQuant provides a fast, flexible solution to automate your strategies across forex, stocks, futures, and cryptocurrencies, while enabling social trading to follow and replicate top-performing strategies effortlessly.

How It Works
You can automate, refine, and scale your trading strategies effortlessly.
How to Automate Your Trading in 4 Simple Steps
Step 1: Register & Activate
Create your account and get access to the trading dashboard. Activate your copy trading profile to begin.
Step 2: Install Required Apps (MT5 and Clonquant)
Download and install MetaTrader 5 and the ClonQuant Stand-alone Desktop App on your Windows PC.
Step 3: Update Configurations (Optional)
Customize your trading preferences: set risk levels, stop-loss/take-profit rules, or lot size caps.
Step 4: Connect & Auto-Trade
Launch ClonQuant, click ‘Connect’, and let the signals do the work. Sit back and watch the bot handle your trades automatically.






Features
- Smart Risk Scaling — Adaptive Lot Sizing
Automatically adjusts trade sizes based on your balance/equity and selected risk level—ensuring every trade fits your portfolio without overexposure or overleveraging.
- Total Control — Manual Overrides
Pause, stop, or customize trades anytime. Set your own SL, TP, or lot sizes—even on automated strategies. You can also override, modify, or manually close trades in real time.
- Transparent Strategy Insights
View real-time performance metrics like win rate, drawdown, PnL, average R:R, profit factor, sharpe ratio, average holding time and more—no more guessing who’s worth following.
- Real-Time Trade Execution
Our low-latency mirror engine ensures instant trade synchronization across accounts and brokers, while actively monitoring broker latency and slippage so your trades stay accurate and consistent.
- Verified Strategy Creators
Gain confidence by copying from vetted and trusted trading experts. Every strategy creator on our platform goes through a rigorous verification process—evaluating their performance history, risk profile, and consistency over time.
- Profit Share & Rewards System
For copiers, it’s fair and results-driven. For traders, it’s a powerful incentive to stay sharp, optimize strategies, and maintain consistent performance. Plus, top-performing traders can unlock rewards, exclusive features, and increased visibility.
Connect via WebSocket API
With ClonQuant’s advanced features, you can connect via WebSocket API using your favorite programming language and receive trading signals at lightning speed.
Easy to use API
Subcribe to the websocket:
import websocket
def on_message(ws, message):
print("Received:", message)
ws = websocket.WebSocketApp("wss://be.clonquant.com/ws/<token>", on_message=on_message)
ws.run_forever()
const WebSocket = require('ws');
const socket = new WebSocket('wss://be.clonquant.com/ws/<token>');
socket.on('open', () => {
console.log('Connected');
});
socket.on('message', (data) => {
console.log('Received:', data);
});
websocat wss://be.clonquant.com/ws/<token> \
-H 'Authorization: Bearer <YOUR_API_KEY>'