Skip to main content
Glama
Rekko-AI
by Rekko-AI

place_shadow_trade

Record paper trades on prediction markets to track hypothetical positions without executing real transactions.

Instructions

Place a paper (shadow) trade on a prediction market for tracking purposes.

Args: ticker: Market ticker symbol (e.g. "KXBTC-100K"). side: Trade direction: "yes" or "no". size_usd: Trade size in USD.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYes
sideYes
size_usdYes

Implementation Reference

  • Implementation of the place_shadow_trade tool using a POST request to the API.
    @mcp.tool()
    async def place_shadow_trade(ticker: str, side: str, size_usd: float) -> str:
        """Place a paper (shadow) trade on a prediction market for tracking purposes.
    
        Args:
            ticker: Market ticker symbol (e.g. "KXBTC-100K").
            side: Trade direction: "yes" or "no".
            size_usd: Trade size in USD.
        """
        return await _request(
            "POST",
            "/v1/trades/shadow",
            json={"ticker": ticker, "side": side, "size_usd": size_usd},
        )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Rekko-AI/rekko-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server