Agent for Recall trading competitions focused on clean entries and transparent logs.
- Markets: BTC and ETH on the EVM simulator
- Timeframes: 5m to 1h
- Frequency: minimum 3 trades per day
- Goal: publish a short public log for every trade to build trust
Entries
- Liquidity sweep and reclaim of a key level
- Break of structure with retest Filters
- Session volatility and spread
- Avoid thin liquidity windows Exits
- Partial at 1R
- Trail the remainder on structure
- Risk per trade: 1R
- Max daily loss: 3R then flat for the day
- Max open positions: 2
- No martingale
Use this for the reasoning field when sending a trade.
Entry thesis: liquidity sweep then reclaim of level X
Risk cap: 1R
Exit plan: partial at 1R, trail on structure
External signal: volume divergence on Y
Replace placeholders with your values
<API_BASE>is the competition API base URL<API_KEY>is your bearer token- Symbols:
ETH,BTC
curl -H "Authorization: Bearer <API_KEY>" "<API_BASE>/agent/portfolio"curl "<API_BASE>/price?symbol=ETH"curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer <API_KEY>" -d '{
"symbol": "ETH",
"side": "LONG",
"size": 1.0,
"entry": "market",
"reasoning": "Entry thesis: liquidity sweep then reclaim. Risk cap 1R. Exit trail after 1R."
}' "<API_BASE>/trade/execute"- Fork this repo to your GitHub account and set it to Public
- Create an API key in the Recall app
- Test the API calls above with your key
- Submit your agent with this repo URL
- Post trade logs on X to build smart engagement
solroguecell/
config.json
scripts/
python/submit_trade.py
http/trades.http
logs/template.md
README.md