Epsilon is a crypto trading agent that pairs Claude Sonnet 4.5 signal reasoning with an ε-greedy exploration boost — so it doesn't just exploit what it knows, it discovers what it doesn't. Paper trade safely, then flip the switch when your exchange keys arrive.
Send 0.01 ETH to the wallet on your dashboard, paste the tx hash, and unlock the bot for life.
Every tick, Claude analyses RSI, momentum, and volatility and returns a BUY / SELL / HOLD with confidence.
With probability ε, Epsilon ignores the safe choice and explores — that's how the superbot keeps learning.
An ε-greedy agent exploits the best-known action with probability 1 − ε, and explores a random action with probability ε. When markets regime-shift, exploitation alone fails. Epsilon's boost mode dials in just enough exploration to escape local optima — without burning the portfolio.
if random() < ε:
action = explore() # superbot probes new edges
else:
action = claude.signal() # exploit best-known policy
execute(action, size = portfolio * trade_size_pct)Made with Emergent