Liquidity-Pulse
Liquidity-Pulse is a market-analytics tool that monitors emerging Polymarket markets for early liquidity opportunities.
What it does
Liquidity-Pulse is a market-analytics tool that monitors emerging Polymarket markets for early liquidity opportunities. When a market's volume and attention signal crosses configured thresholds, the bot emits an OrderIntent for user-controlled maker quote placement. All execution decisions remain with the user; this bot provides structured analytics and sizing recommendations only.
Pipeline placement
Applies to: Polymarket binary markets that are gaining attention but currently have wide spreads and thin depth, offering attractive
Why it matters
| If this fails | Consequence |
|---|---|
| Quote placed before sufficient volume confirmation | Early quotes on unproven markets may sit unmatched or attract adverse selection from informed traders who discovered the market first. |
| Spread tightening faster than quote updates | Quotes placed at the initial wide spread become the worst price on the book as other makers tighten, leading to adverse selection. |
| Market resolves before position unwinds | Short-lived markets may reach resolution before an early maker position can be exited, forcing settlement at a potentially unfavorable resolution price. |
Inputs
Polymarket inputs
| Input | Source | Required | Use |
|---|---|---|---|
| CLOB book depth, spread, and volume | ws_market | required | Measure current spread width and depth; detect volume pickup above tighten_at_volume_usd. |
| Market metadata (creation time, category, status) | gamma | required | Compute market age; verify event_lead_time_h; confirm market is open. |
| Market status (open/closed) | clob_public | required | Skip closed or resolved markets. |
Internal inputs
| Input | Source | Required | Use |
|---|---|---|---|
| KillSwitch active flag | KillSwitch | required | Abort all intent emission if KillSwitch active. |
| Attention signal (volume trend, social mention rate) | internal (market scanner) | required | Gate quote entry on attention signal exceeding threshold. |
| Builder code bytes32 | internal config | required | Injected into builder field on every signed V2 OrderIntent. |
Authority
What this bot is permitted to do
State
Readiness
Spec started
Status
planned
Class
Alpha Strategy
Default mode
shadow_only
Developer owner
Polytraders core — Strategy pod
Capital impact
Direct
Reason codes emitted
| Code | Severity | Meaning | Action |
|---|---|---|---|
| LP_QUOTE_EMITTED | INFO | Attention signal fired, spread viable, hours_to_event OK. GTC post-only maker OrderIntent emitted. | Emit GTC maker OrderIntent. |
| LP_TOO_CLOSE_TO_RESOLUTION | HARD_REJECT | hours_to_event < 1h hard floor. Resolution risk too high for new maker positions. | Skip; no OrderIntent. |
| LP_TIGHT_SPREAD | WARN | Recommended spread between 100 and 200 bps; adverse selection risk elevated. | Emit with lower confidence; log warning. |
| LP_SPREAD_BELOW_FLOOR | HARD_REJECT | Computed spread < 50 bps hard floor. | Skip; no OrderIntent. |
| KILL_SWITCH_ACTIVE | HARD_REJECT | Global kill switch is active. | Skip all markets; no OrderIntents emitted. |
Related bots in Strategy
Used by
Reverse index — strategies that currently reference strat.liquidity-pulse. If you change this bot's authority or reason codes, these strategies must re-pass shadow.
| Strategy | State | Activity |
|---|---|---|
| AI Frontier — release-day taker | frozen | last triggered 38m ago |
| NBA props — line-shop | demo-wired | last triggered 45m ago |
Showing 2 of 2 · demo-wired ≠ production-live
Why this matters
Strategy bots does NOT sign, route, or directly submit orders to the chain. Understanding the authority boundary prevents misuse and makes promotion-gate reviews faster and more reliable. View raw spec JSON →