get_trade_signals
Generate AI-powered trading signals with entry/exit recommendations and confidence scores for cryptocurrency tokens on supported blockchain networks.
Instructions
Get AI-powered trading signals and market recommendations.
Args: token: Optional token address or symbol to focus on chain: Blockchain network. Options: ethereum, base, polygon
Returns: Trading signals with entry/exit recommendations and confidence scores.
Price: $0.75
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | ||
| chain | No | ethereum |
Implementation Reference
- coinrailz_mcp/__init__.py:350-365 (handler)Handler for "get_trade_signals" that prepares a payload and calls the "trade-signals" CoinRailz service. Note: It is missing the @mcp.tool() decorator which might imply it is a legacy helper or mis-registered, though the prompt asked to find the implementation.
async def get_trade_signals(token: str = None, chain: str = "ethereum") -> str: """ Get AI-powered trading signals and market recommendations. Args: token: Optional token address or symbol to focus on chain: Blockchain network. Options: ethereum, base, polygon Returns: Trading signals with entry/exit recommendations and confidence scores. Price: $0.75 """ payload = {"token": token, "chain": chain} if token else {"chain": chain} result = await call_coinrailz_service("trade-signals", payload) return json.dumps(result, indent=2)