Open meme-client on GitHub
$LIBERTY SYSTEMS - Ares TradeStation 98 LIBERTY/SOL :: Solana Auto Trader LIVE
MARKET FEED: LIBERTY/SOL rebalancer online, execution lane synced, wallet heartbeat nominal.

SOL Balance

--loading--
Bot treasury across active wallets

$Liberty Balance

0
Leaf values currently rendered from state

Total Trades

Total Buys 76 1,140.7
Total Sells 52 841.7
Total Volume 1,982.4 299.0

PnL

+$1,284.22
24h realized and unrealized mix

Rebalancer

ACTIVE
Target drift: 0.42%

Recent Trades

  1. BUY LIBERTY 12.4 @ 0.00481 SOL
  2. SELL LIBERTY 9.8 @ 0.00493 SOL
  3. REBALANCE wallet spread to 57/43
  4. BUY LIBERTY 6.0 @ 0.00488 SOL

Live Trading Logs

Connecting...

Dev API Access

Live Endpoints
Start Here
GET /api/state wss://ares.marak.com/ws

Developers can access Ares state with a single HTTP request or by opening a WebSocket connection and listening for live messages.

HTTP Request

Fetch the latest state snapshot in one request.

const response = await fetch('https://ares.marak.com/api/state');
const state = await response.json();

console.log('Current Ares state:', state);

WebSocket Stream

Subscribe to state updates and react to incoming messages in real time.

const socket = new WebSocket(`wss://ares.marak.com/ws`);

socket.addEventListener('open', () => {
  console.log('Connected to Ares websocket');
});

socket.addEventListener('message', (event) => {
  const message = JSON.parse(event.data);
  console.log('Ares update:', message);
});

State Fields

Path Value
Waiting for state payload...

Raw State

Waiting for state payload...