DEV Community

温从余
温从余

Posted on

Writing Your First Polymarket Filter Rule with Lingtoon

New to Lingtoon? Here is a quick guide to writing your first filter rule.

Key fields

  • volume24hr — 24-hour trading volume
  • endDate — when the event closes
  • closed — is the event closed
  • markets — sub-markets with liquidity

Start simple

volume24hr > 100000 && !closed
Enter fullscreen mode Exit fullscreen mode

Add time constraints

volume24hr > 100000 && !closed && endDate - now() > "1d"
Enter fullscreen mode Exit fullscreen mode

Filter by liquidity

volume24hr > 100000 && !closed && any(markets, "liquidity > 500000")
Enter fullscreen mode Exit fullscreen mode

Try the rule editor at lingtoon.com — free, no signup needed.

Top comments (0)