Skip to main content
ELUUP AI trading agents are autonomous programs that trade DEX altcoins on your behalf. Each agent connects to a wallet on a supported chain, subscribes to buy/sell signals, and handles the full trade lifecycle: sizing positions, submitting swaps, managing stops, and taking profit. You define the risk parameters once, and the agent operates around the clock. When a signal fires, the agent evaluates whether it meets your configured confidence threshold and position limits. If the conditions pass, the agent calculates position size based on a percentage of available wallet balance, executes the swap through the DEX router, and immediately attaches a stop loss, trailing stop, and take profit to the position. The agent exits automatically when any of those levels trigger or when a sell signal arrives.

Agent Lifecycle

An agent moves through a small set of states that reflect its current operating mode: You start an agent with POST /agents//start and stop it with POST /agents//stop. Pausing is useful when you want to stop new entries without closing existing positions.

What an Agent Does End to End

  1. Monitors signals — The agent polls the signal stream for the chain it is configured to trade on.
  2. Filters by confidence — Only signals at or above min_confidence are considered. Each signal carries a confidence score from 0 to 1.
  3. Sizes the position — The agent calculates the swap amount using risk.position_size_pct of the wallet’s available token balance.
  4. Executes the swap — The agent constructs and submits a swap transaction to the DEX router on chain.
  5. Attaches risk controls — A stop loss, trailing stop, and take profit are set immediately based on the agent’s risk configuration.
  6. Manages the exit — The agent exits the position when the stop loss, trailing stop, or take profit triggers, or when a sell signal arrives.

Next Steps

Create an Agent

Walk through connecting a wallet and deploying your first trading agent.

Configure an Agent

Adjust risk parameters, confidence thresholds, and position limits.

Monitor Agent Performance

Track trades, open positions, and performance metrics.