VOOZH about

URL: https://apify.com/brilliant_gum/binance-copy-trading-scraper

โ‡ฑ Binance Leaderboard Scraper | Copy Trading API & Whale Data ยท Apify


๐Ÿ‘ Binance Leaderboard Scraper with Trading Signals avatar

Binance Leaderboard Scraper with Trading Signals

Pricing

from $25.00 / 1,000 position data

Go to Apify Store

Binance Leaderboard Scraper with Trading Signals

Scrape Binance Copy Trading leaderboard and generate AI-ready trading signals. Track top traders' positions, ROI, PNL, and performance stats. Unique features: AI PREDICTIONS, Battle Score per symbol, Direction Bias, Copy Trading Coefficients. Export JSON/CSV/XLSX. No API rate limits.

Pricing

from $25.00 / 1,000 position data

Rating

0.0

(0)

Developer

๐Ÿ‘ Yuliia Kulakova

Yuliia Kulakova

Maintained by Community

Actor stats

3

Bookmarked

53

Total users

3

Monthly active users

2 months ago

Last modified

Share

๐Ÿ‘ Binance Copy Trading Scraper Banner

๐Ÿš€ Binance Copy Trading Scraper & Analytics Pro

The ONLY working Binance Copy Trading scraper with built-in analytics! Extract trader data, track whale positions, and generate AI-ready signals with Winners vs Losers divergence analysis.

While other scrapers use deprecated APIs that return 404 errors, this Actor uses browser-based automation with the official Copy Trading interface that actually works!

โœจ Why Choose This Scraper?

FeatureOther ScrapersThis Actor
Copy Trading LeaderboardโŒ Not supportedโœ… Full support
Futures Leaderboard (deprecated)โœ… (returns 404)โš ๏ธ Deprecated
Current Positionsโœ… Basicโœ… Full details
Winners vs Losers AnalysisโŒโœ… UNIQUE
Direction Bias CalculationโŒโœ… UNIQUE
Battle Score per SymbolโŒโœ… UNIQUE
TRUE LOSERS ModeโŒโœ… UNIQUE
Copy Trading CoefficientsโŒโœ… UNIQUE
CSV/XLSX ExportโŒโœ… INCLUDED

๐ŸŽฏ Three Operating Modes

Mode 1: Leaderboard Scraping

Scrape top traders from Binance Copy Trading leaderboard:

  • ROI, PNL, Win Rate rankings
  • Copier count and follower data
  • Current open positions with leverage

Mode 2: Tracking Mode

Track specific traders by their Portfolio ID:

  • Real-time position monitoring
  • Performance snapshots
  • Perfect for whale watching

โš ๏ธ Important: Batch Size Limits for Tracking Mode

Each portfolio requires a full browser page load (~10-15 sec) + position history fetch. Apify runs have a 1-hour timeout limit. To avoid runs stopping midway:

SettingsMax portfolioIds per run
fetchHistory: falseup to 200
fetchHistory: true, maxHistoryPages: 5up to 150
fetchHistory: true, maxHistoryPages: 10up to 80
fetchHistory: true, maxHistoryPages: 20up to 50

If you need to track more traders, split your portfolioIds into multiple runs of the sizes above and run them simultaneously.

Mode 3: Analytics Mode ๐Ÿ”ฅ

The killer feature! Analyze Winners vs Losers divergence:

  • Scrape top winners AND bottom losers separately
  • Calculate Direction Bias per symbol
  • Generate Battle Scores
  • Output Copy Trading Coefficients
  • AI-ready trading signals

๐Ÿ“Š Understanding the Analytics

Direction Bias

Measures market sentiment based on winner/loser positioning:

  • BULLISH: Winners are predominantly LONG (>60%)
  • BEARISH: Winners are predominantly SHORT (<40%)
  • NEUTRAL: Balanced positions

Battle Score

Per-symbol divergence analysis (-100 to +100):

  • +50 to +100: STRONG_LONG signal
  • +25 to +50: LONG signal
  • -25 to +25: NEUTRAL
  • -50 to -25: SHORT signal
  • -100 to -50: STRONG_SHORT signal

Copy Trading Coefficients

Position sizing recommendations based on winner/loser divergence:

{
"longCoefficient":1.0,
"shortCoefficient":0.1,
"recommendation":"FAVOR_LONGS"
}

๐Ÿ’ฐ Pricing

This Actor uses Pay per Event pricing:

EventPrice
Actor Start$0.05
Trader data (per trader)$0.025
Position data (per position)$0.025
Analytics report ๐Ÿ”ฅ$5.00
Actor Completion$0.05

Example costs:

  • 100 traders without positions: ~$2.60
  • 100 traders + 200 positions: ~$7.60
  • Analytics mode (100 traders + 200 positions + report): ~$12.60

๐Ÿ”ง Input Parameters

ParameterTypeDefaultDescription
modestringanalyticsOperating mode: leaderboard, tracking, or analytics
maxTradersnumber100Maximum traders to scrape (1-200) for leaderboard mode
periodstringMONTHLYPerformance period: DAILY, WEEKLY, MONTHLY, ALL
sortBystringPNLRanking: PNL, ROI, WIN_RATE, COPIER_COUNT
withPositionsbooleantrueInclude current positions (required for analytics)
portfolioIdsarray[]Portfolio IDs for tracking mode
trueLosersModebooleantrueGet actual losing traders from bottom of leaderboard
winnersCountnumber50Number of top winners to analyze
losersCountnumber50Number of bottom losers to analyze
outputFormatstringjsonOutput format: json, csv, or xlsx
requestDelaynumber500Delay between requests (ms)
debugModebooleanfalseEnable verbose logging

๐Ÿ“ค Output Format

Each run produces multiple dataset items for flexible data processing:

Trader Item

{
"type":"trader",
"scrapedAt":"2025-01-05T18:30:00.000Z",
"portfolioId":"3958362104",
"nickname":"TraderPro",
"pnl":452200.50,
"roi":156.78,
"mdd":12.5,
"sharpe":2.45,
"winRate":0.72,
"copierCount":1250,
"group":"winners",
"positionsCount":5,
"positions":[
{
"symbol":"BTCUSDT",
"positionAmount":0.5,
"entryPrice":94150.00,
"markPrice":95200.00,
"unrealizedProfit":525.00,
"leverage":10
}
]
}

Analytics Item

{
"type":"analytics",
"scrapedAt":"2025-01-05T18:30:00.000Z",
"mode":"analytics",
"directionBias":{
"marketSentiment":"BULLISH",
"winnersLongPercent":87.5,
"losersLongPercent":35.2,
"directionDivergence":"SIGNIFICANT"
},
"coefficients":{
"longCoefficient":1.0,
"shortCoefficient":0.1,
"recommendation":"FAVOR_LONGS"
},
"divergenceData":[
{
"symbol":"BTC",
"battleScore":65.3,
"signal":"STRONG_LONG",
"winnersCount":38,
"losersCount":12
}
]
}

๐Ÿš€ Quick Start Examples

Example 1: Full Analytics (Recommended) ๐Ÿ”ฅ

{
"mode":"analytics",
"winnersCount":50,
"losersCount":50,
"trueLosersMode":true,
"withPositions":true
}

Example 2: Scrape Top 100 Traders by PNL

{
"mode":"leaderboard",
"maxTraders":100,
"period":"MONTHLY",
"sortBy":"PNL",
"withPositions":true
}

Example 3: Track Specific Whales

{
"mode":"tracking",
"portfolioIds":["3958362104","4012876543"],
"withPositions":true
}

Example 4: Export to Excel

{
"mode":"analytics",
"winnersCount":50,
"losersCount":50,
"outputFormat":"xlsx"
}

โšก API Integration

Use the Apify API to integrate this scraper into your trading bot:

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run_input ={
"mode":"analytics",
"winnersCount":50,
"losersCount":50,
"trueLosersMode":True,
"withPositions":True
}
run = client.actor("hlwhales/binance-copy-trading-scraper").call(run_input=run_input)
# Get all traders
traders =[]
analytics =None
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
if item["type"]=="trader":
traders.append(item)
elif item["type"]=="analytics":
analytics = item
print(f"Fetched {len(traders)} traders")
print(f"Market Sentiment: {analytics['directionBias']['marketSentiment']}")
print(f"Recommendation: {analytics['coefficients']['recommendation']}")

โ“ FAQ

Q: Why do other Binance scrapers return 404 errors? A: They use the deprecated Futures Leaderboard API endpoints. This Actor uses browser automation with the current Copy Trading interface.

Q: What is TRUE LOSERS mode? A: It fetches traders from the BOTTOM of the leaderboard (actual negative PNL) instead of just the lowest-ranked winners. This creates real divergence signals.

Q: How often should I run analytics? A: For day trading: every 1-4 hours. For swing trading: once daily. For position trading: every few days.

Q: Can I export to CSV/Excel? A: Yes! Set outputFormat to csv or xlsx. CSV creates two files (traders.csv, analytics.csv), XLSX creates one file with multiple sheets.

Q: Why are positions required for analytics? A: Direction Bias and Battle Scores are calculated from actual position data. Without positions, analytics will show NEUTRAL values.

๐Ÿ“Š Use Cases

  • Algorithmic Trading: Feed signals directly into your trading bot
  • Market Research: Understand what top traders are doing vs losing traders
  • Risk Management: Adjust position sizes based on Copy Trading Coefficients
  • Sentiment Analysis: Track market sentiment shifts over time
  • Whale Watching: Monitor specific successful traders

๐Ÿ“ž Support

Having issues or need custom features? Open an issue on the Actor page or contact through Apify.


๐Ÿ‹ About the Developer

This Actor is developed and maintained by WhaleHunt.io โ€” a professional crypto market data intelligence platform. We specialize in building advanced analytics tools for traders, quant researchers, and algorithmic trading systems.

Our expertise includes:

  • Crypto exchange data extraction and analytics
  • Whale wallet tracking and on-chain analysis
  • Trading signal generation and market sentiment tools
  • Custom data solutions for hedge funds and trading desks

Visit whalehunt.io for more crypto analytics tools and professional data intelligence solutions.

You might also like

Binance Smart Money Traders & Positions Scraper

muhammetakkurtt/binance-smart-money-scraper

Scrape Binance Smart Money top traders, real-time positions, and performance stats. Extract USDT-M and COIN-M futures data including PNL, ROI, win rate, leverage. Perfect for copy trading research and crypto market analysis.

๐Ÿ‘ User avatar

Muhammet Akkurt

161

5.0

BIN Lookup Scraper ๐Ÿ”

easyapi/bin-lookup-scraper

A powerful BIN/IIN lookup tool that provides comprehensive card information including issuing bank, country, and card scheme details. Perfect for payment processing, fraud detection, and financial data analysis. ๐Ÿฆ ๐Ÿ’ณ

Proxy Scraper

mstephen190/proxy-scraper

Free proxy scraper and checker. Search dozens of free proxy websites. Get list of 100% working public proxies in seconds. Automatically test proxies based on target URL and maximum timeout.

๐Ÿ‘ User avatar

Matthias Stephens

3K

Binance Copy Trading Leaderboard Scraper

codingfrontend/binance-futures-leaderboard-scraper

Scrapes the Binance Copy Trading leaderboard โ€” top futures traders ranked by PnL or ROI with statistics like win rate, drawdown, AUM.

๐Ÿ‘ User avatar

codingfrontend

4

BingX Copy Trading Position Tracker & Trading Signals

brilliant_gum/bingx-scraper

Scrape BingX copy trading leaderboard, track live open positions of top traders โ€” including hidden ones โ€” and generate Winners vs Losers trading signals. Full stats, real-time positions, and Three-Signal Analysis. No account needed.

๐Ÿ‘ User avatar

Yuliia Kulakova

2

Bybit Leaderboard Position Tracker With Trading Signals

brilliant_gum/bybit-scraper

Scrape Bybit copy trading leaderboard, track live open positions of top traders, and generate Winners vs Losers trading signals using Three-Signal Analysis. No account or API key required.

๐Ÿ‘ User avatar

Yuliia Kulakova

4

Binance Futures Leaderboard Scraper ๐Ÿ“Š

easyapi/binance-futures-leaderboard-scraper

Scrape Binance Futures Leaderboard data including traders' ROI, PNL, followers count, and social media links. Get insights from top cryptocurrency traders' performance metrics and trading statistics.

Bitget Leaderboard Position Tracker With Trading Signals

brilliant_gum/bitget-scraper

Scrape Bitget copy trading leaderboard, track live open positions of top traders, and generate LONG/SHORT trading signals using Three-Signal Analysis โ€” notional, trader count, and volume-weighted consensus.

๐Ÿ‘ User avatar

Yuliia Kulakova

2

Binance Smart Money Trader Positions Scraper

mayanksingh2233/binance-smart-money-trader-positions-tracker-api

Track Binance smart money traders with real-time open positions and performance analytics. Get OPEN POSITIONS, PNL, ROI, win rate, leverage, and futures data (USDT-M & COIN-M). Ideal for copy trading, bots, and crypto market analysis.

7

5.0

Hyperliquid Whale Tracker

brilliant_gum/hyperliquid-whale-tracker

Track Hyperliquid whale positions and large trader activity in real-time. Extract AI trading signals, copy-trading coefficients, and portfolio metrics. Monitor liquidation levels, P&L data, and smart money movements. Perfect for DeFi research and automated trading bots.

๐Ÿ‘ User avatar

Yuliia Kulakova

26