SolTrader Pro

v2.4.1

Engine Status

Running

4.2K

Trades today

85%

Performance

Optimal

72.4%

Win rate

72%

Profit Today

+12.8%

$3,842

SOL: +2.4 SOL

65%

Bot Workflow Configuration

1

Scanning New Coins

Active
Pump.fun
Radium
Raydium
Currently monitoring 12 new coins in the last 5 minutes
2

Liquidity Evaluation

Active
USD
%
%
5 coins passed liquidity check in the last scan
3

Trading Logic

Active
SOL
%
%
3 coins met all trading conditions in the last scan
4

Trade Execution

Active
Raydium
Jupiter
2 trades executed successfully in the last 5 minutes

New Coins Scanner

Scanning active
Coin Platform Liquidity Age Status Actions
PF
PEPE2.0
$0.00042
Pump.fun
$24,500
12 min Approved
RD
SOLANA2
$0.12
Radium
$18,200
8 min Pending
GM
GMGN
$0.0021
GMGN
$32,750
15 min Approved
RD
MEME
$0.00087
Radium
$9,800
5 min Rejected
Last scan: 2 seconds ago

Technology Stack

Programming Language

JavaScript
Node.js

Used for Web3 integration and bot logic

Blockchain API

Solana Web3.js
Ethers.js

Connects to Solana and EVM chains

Trading Tools

Pump.fun API
Radium SDK
Raydium API
Jupiter API

Integrated with multiple DEXs for optimal execution

Security

AWS Secrets
Private RPC

Encrypted key storage and anti-MEV measures

Recent Trades

2 active
P
PEPE2.0/SOL
+24.5%

Entry

$0.00038

Current

$0.00042

Size

10 SOL

Profit

+2.45 SOL

TP: 75%
S
SOLANA2/SOL
+5.2%

Entry

$0.114

Current

$0.120

Size

10 SOL

Profit

+0.52 SOL

TP: 20%
M
MEME/SOL
-8.3%

Entry

$0.00095

Exit

$0.00087

Size

10 SOL

Loss

-0.83 SOL

Closed 15 min ago

Risk Management

Active
Max Daily Loss $500 / $500
Max Position Size 10 SOL / 10 SOL
Max Slippage 5%
Protection active

Settings

API Connections

Pump.fun API

New coin scanning

Connected

Radium API

Liquidity data

Connected

Raydium API

Trade execution

Limited

Security Settings

Private Key Storage

Encrypted local storage

Transaction Signing

How transactions are approved

Advanced Configuration

Bot Workflow Explained

1. Scanning New Coins

The bot continuously monitors multiple platforms (Pump.fun, Radium, etc.) for newly launched tokens. It uses web scraping and API calls to detect new listings in real-time.

const scanNewCoins = async () => { const pumpfunCoins = await fetchPumpFunListings(); const radiumCoins = await fetchRadiumListings(); return [...pumpfunCoins, ...radiumCoins]; };

2. Liquidity Evaluation

For each new coin, the bot checks the available liquidity pool size, slippage, and price impact. Only coins with sufficient liquidity (default: $20,000) and acceptable slippage (default: 5%) proceed.

const checkLiquidity = (coin) => { const { liquidity, slippage } = getPoolData(coin.address); return liquidity > 20000 && slippage < 5; };

3. Trading Logic

The bot applies trading conditions like minimum volume, holders, and price action. It calculates position size (default: 10 SOL) and sets take profit (20%) and stop loss (10%) levels.

const executeTrade = (coin) => { const amount = 10; // SOL const takeProfit = 1.2; // 20% const stopLoss = 0.9; // 10%