Dashboard Overview
Real-time data from the Lobster Trader on Aster DEX
Live Trading Dashboard
Real-time data from the Lobster Trader wallet on Aster DEX
How It Works
From holding to earning, four simple steps
Hold $OCT
3% trade tax is automatically collected from every buy/sell transaction and injected into the trading fund pool.
AI Agent Trades
OpenClaw AI agent operates 24/7 on Aster DEX, analyzing markets and executing perpetual contract trades with advanced strategies.
Earn Profits
The agent executes trades, compounds wins, and builds the pool. All trade decisions are transparent and verifiable on-chain.
Daily Dividends
Automatic daily snapshots capture holder balances. Profits are distributed proportionally to all $OCT token holders.
Step 1
Hold $OCT
3% trade tax is automatically collected from every buy/sell transaction and injected into the trading fund pool.
Step 2
AI Agent Trades
OpenClaw AI agent operates 24/7 on Aster DEX, analyzing markets and executing perpetual contract trades with advanced strategies.
Step 3
Earn Profits
The agent executes trades, compounds wins, and builds the pool. All trade decisions are transparent and verifiable on-chain.
Step 4
Daily Dividends
Automatic daily snapshots capture holder balances. Profits are distributed proportionally to all $OCT token holders.
Transparent by Design
Every line of our trading logic is open for review. No black boxes. No hidden algorithms. Verify every decision the AI agent makes.
// OpenClawTrader โ Trading Strategy
// EMA Crossover + RSI trend-following system
export const STRATEGY_CONFIG = {
symbol: "BTCUSDT",
interval: "5m", // 5-minute candles
emaFast: 5, // Fast EMA period
emaSlow: 13, // Slow EMA period
rsiPeriod: 10,
leverage: 5,
positionSizePct: 30, // 30% of available balance
stopLossPct: 1.5, // 1.5% stop loss
takeProfitPct: 3, // 3% take profit
};
export function analyzeSignal(closes: number[]): StrategyResult {
const emaFastArr = calcEMA(closes, cfg.emaFast);
const emaSlowArr = calcEMA(closes, cfg.emaSlow);
const rsiArr = calcRSI(closes, cfg.rsiPeriod);
const emaFast = emaFastArr[len - 1];
const emaSlow = emaSlowArr[len - 1];
// Ultra-aggressive: follow EMA trend direction
if (emaFast > emaSlow) {
return { signal: "LONG", reasoning: "Bullish EMA bias" };
}
return { signal: "SHORT", reasoning: "Bearish EMA bias" };
}All trading logic is fully transparent. The AI agent executes exactly the code shown above โ no hidden strategies, no secret sauce.
Token & Dividends
$OCT tokenomics and dividend distribution details
Tokenomics
Contract Address
