Cellex Agents

Agents on Cellex are autonomous AI agents designed with a backstory, risk tolerance, and a basic foundational algorithm that helps them navigate the Web3 space efficiently. Because they primarily handle real funds in Ethereum, it is important that their foundation is secure and designed for optimal returns on their investments.
The Cellex Agent evaluates newly launched tokens using real-time data from Telegram, Twitter, whitepapers, and market feeds. Based on defined criteria and AI-driven judgment, it decides whether to invest in or divest from a token while operating with a user-defined Ethereum capital allocation
Input Sources: Telegram messages, Twitter feed, whitepapers, web search, and market APIs (OHLCV data).
Autonomous Actions: Buy/sell tokens based on base and dynamic criteria. Monitoring: Agent keeps updating its internal state with new messages and market movements.
Automated Trading: Executes trades based on its evaluation logic.
Components
Data Scraping: Fetches messages/data from TG, Twitter, and other sources. Evaluation: Calculates criteria A (rule-based), B (AI/judgment), and decides action. Execution: Connects to exchanges (or simulated) to execute trades. Crawler: Continuously fetches latest input data and updates agent's evaluation. Market Data API: Fetches OHLCV and other token-specific data.
Evaluation & Decision Logic
A token must meet certain rule-based, quantitative criteria before Cellex considers investing:
π³: Liquidity (e.g., 0 if liquidity is 0 and 1 if itβs > $100,000 in first hour)
π―: Number of unique holders (e.g., 0 if 0 and 1 if > 500 within 24 hours)
π΄: Market Cap (e.g., 0 if below $1,000 and 1 if > $10,000,000)
π: Social buzz (sigmoid function of messages + tweets + mentions per day)
πͺ: Smart contract safety, 1 β probability of red flags (rug-pull functions, blocking sell functions, etc.)
πΊ: Sentiment Score from TG & Twitter (NLP sentiment analysis, range 0 to 1, 0.5 means neutral)
πΈ: Whitepaper quality (LLM/AI score combining relevance, completeness and uniqueness)
π΅: Token novelty (LLM/AI output, cosine similarity with known scams/legit projects)
πΎ: Web search findings (scam reports, listing status, partnerships, etc.)
πΆ: Organic community engagement (number and diversity of contributors)
πππ’π¦: Buy threshold (e.g. 0.7)
ππ πππ: Sell threshold (e.g. 0.4)
Formula:
π=π€1.πΏ+π€2.π»+π€3.π+π€4.π+π€5.πΆ+π€6.π+π€7.π+π€8.π+π€9.π+π€10.π
All variables will be normalized between 0 and 1 If certain variable is unavailable, its weight can be turned to 0 to ignore it during calculation. The sum of all weights π€1+π€2+β―π€π=1
Decision:
If π>πππ’π¦, then Cellex agent executes βbuyβ function; if π<ππ πππ, then the agent executes βsellβ function; if ππ πππ<π<πππ’π¦, then the tokens are in hold position.
Trade Volume
π¬: available capital in ETH authorized to the Cellex agent
π³πππ: portion of available funds that can be invested in an individual token
πΉ: risk tolerance (between 0 and 1) per token
πΏ: the amount in ETH. When selling, π will be positive; when buying, it will be negative
Example:
If a new token βCellex Tokenβ is launched and its data is as:
Liquidity reaches $25,000 in first hour, πΏ=0.25 (i.e., 25000/100000)
400 unique holders in 24h, π»=0.8 (i.e., 400/500)
$500,000 Market Cap, π=0.049 (i.e., (500,000-1,000)/10,000,000)
π=0 (i.e., data not available)
Smart contract safety, πΆ=0.7 (i.e., 0.3 chance of malicious code in contract)
Sentiment Score from TG & Twitter, π=0.67 (mildly positive)
π=0 (i.e., data not available)
π=0 (i.e., data not available)
π=0 (i.e., data not available)
π=0 (i.e., data not available)
Buy threshold, πππ’π¦=0.45 (assuming market is very bullish)
Sell threshold, ππ πππ=0.2
If all available variables have equal weightage, then:
π€1=π€2=π€3=π€5=π€6=15=0.2 π€4=π€7=π€8=π€9=π€10=0
Therefore, the decision to buy or cell will be: π=0.2Γ0.25+0.2Γ0.8+0.2Γ0.049+0.2Γ0.7+0.2Γ0.6=0.4798 Since π>πππ’π¦, therefore the Cellex Agent will decide to BUY Cellex Token. To calculate the amount against which the token will be bought:
π¬: 1.5ETH
π³πππ: 0.05 (only 5% of funds can be utilized in buying a token)
πΉ: 0.5 (the risk tolerance will be 1 if π=1)
π=1.5Γ0.05Γ0.5
Conclusion:
Cellex Agent will BUY Cellex Token against 0.0375 ETH.
Last updated