DEV Community

温从余
温从余

Posted on

Lingtoon: A Developer Tool for Polymarket Event Filtering

If you are building trading tools or just want smarter access to Polymarket data, Lingtoon offers a clean DSL-based approach to event filtering.

The problem

Polymarket has thousands of active events. Finding the ones worth trading requires filtering by liquidity, volume, time-to-close, and market status simultaneously. Doing this manually is slow and error-prone.

The Lingtoon approach

Lingtoon lets you express filter logic as a DSL expression evaluated against live event data:

(any(markets, "liquidity > 5000000") || volume24hr > 10000000) && endDate - now() > "1d" && !closed
Enter fullscreen mode Exit fullscreen mode

This is readable, composable, and reusable.

Key design decisions

  • No auth required — no wallet binding, no account
  • Client-side logic — your rules run in the browser
  • Natural language assist — describe a filter in plain text, get DSL back

Check it out at lingtoon.com.

Top comments (0)