秋田预测市场 · Discord 审计

sheisty6参与话题 0消息总数 13

该用户的聊天记录定位。

Reset

聊天记录

共 13 条,显示第 1-13 条
sheisty6 2026-06-19 08:53:52 Kalshi

under the hood, selling no is just going long, or creating a bid order

under the hood, selling no is just going long, or creating a bid order

sheisty6 2026-06-05 04:11:35 Polymarket

oh nice, thx

oh nice, thx

sheisty6 2026-06-05 04:08:37 Polymarket

Has anyone encountered frequent expired orders with reason ORD_REJECT_REASON_EXCHANGE_OPTION on poly US?

Has anyone encountered frequent expired orders with reason ORD_REJECT_REASON_EXCHANGE_OPTION on poly US?

sheisty6 2026-06-04 12:38:08 Polymarket

anyone know current taker delays on US sports (on poly us)?

anyone know current taker delays on US sports (on poly us)?

sheisty6 2026-06-02 06:51:12 Polymarket

excellent

excellent

sheisty6 2026-06-02 06:50:58 Polymarket

thank you im happy to join 😂

thank you im happy to join 😂

sheisty6 2026-06-02 06:50:49 Polymarket

have you found the orderbook websockets reliable? and do the updates come thru in sync for both tokens on the same orderbook?

have you found the orderbook websockets reliable? and do the updates come thru in sync for both tokens on the same orderbook?

sheisty6 2026-06-02 06:49:45 Polymarket

oof

oof

sheisty6 2026-06-02 06:45:15 Polymarket

thank you. it was surprisingly difficult to find this clarification in the docs

thank you. it was surprisingly difficult to find this clarification in the docs

sheisty6 2026-06-02 06:40:32 Polymarket

I had the same assumption, but the clob api tells me they are essentially just mirrors of each other 🫤

I had the same assumption, but the clob api tells me they are essentially just mirrors of each other 🫤

sheisty6 2026-06-02 06:30:04 Polymarket

Sorry -- maybe my vocabulary was wrong. There is one *market* for the winner with two outcomes -- Team A and Team B

Sorry -- maybe my vocabulary was wrong. There is one *market* for the winner with two outcomes -- Team A and Team B

sheisty6 2026-06-02 06:27:21 Polymarket

Thanks. Yes, YES and NO are separate markets -- so I'm wondering why they have the exact same (inversed) liquidity in the response I showed above (where the first bid/ask is team A and the second bid/ask is team B). I'm essentially wondering if I need to sum team A asks with team B bids to get the total liquidity available for team A to win. That would seem suspect given the liquidity is exactly the same across the two (679926.76)

Thanks. Yes, YES and NO are separate markets -- so I'm wondering why they have the exact same (inversed) liquidity in the response I showed above (where the first bid/ask is team A and the second bid/ask is team B). I'm essentially wondering if I need to sum team A asks with team B bids to get the total liquidity available for team A to win. That would seem suspect given the liquidity is exactly the same across the two (679926.76)

sheisty6 2026-06-02 06:19:58 Polymarket

Dumb question from a dev coming from kalshi. For a market that has two mutually exclusive outcomes (e.g. Knicks / Spurs moneyline), will the orderbooks come back merged from the clob api? For example, would the best bid for knicks ever not have the same amount of liquidity as the best ask for the Spurs? ``` ➜ ~ curl -sS -X POST 'https://clob.polymarket.com/books' \ -H 'Content-Type: application/json' \ -d '[ {"token_id": "46476571633828462836475465912978735855757483955249703286193576900705262818709"}, {"token_id": "21824609976117105848555444850550421549651562100464735804855968490014825878128"} ]' | jq '.[] | {asset_id, neg_risk, best_bid: .bids[-1], best_ask: .asks[-1]}' { "asset_id": "46476571633828462836475465912978735855757483955249703286193576900705262818709", "neg_risk": false, "best_bid": { "price": "0.36", "size": "1365482.25" }, "best_ask": { "price": "0.37", "size": "679926.76" } } { "asset_id": "21824609976117105848555444850550421549651562100464735804855968490014825878128", "neg_risk": false, "best_bid": { "price": "0.63", "size": "679926.76" }, "best_ask": { "price": "0.64", "size": "1365482.25" } } ```

Dumb question from a dev coming from kalshi. For a market that has two mutually exclusive outcomes (e.g. Knicks / Spurs moneyline), will the orderbooks come back merged from the clob api? For example, would the best bid for knicks ever not have the same amount of liquidity as the best ask for the Spurs? ``` ➜ ~ curl -sS -X POST 'https://clob.polymarket.com/books' \ -H 'Content-Type: application/json' \ -d '[ {"token_id": "46476571633828462836475465912978735855757483955249703286193576900705262818709"}, {"token_id": "21824609976117105848555444850550421549651562100464735804855968490014825878128"} ]' | jq '.[] | {asset_id, neg_risk, best_bid: .bids[-1], best_ask: .asks[-1]}' { "asset_id": "46476571633828462836475465912978735855757483955249703286193576900705262818709", "neg_risk": false, "best_bid": { "price": "0.36", "size": "1365482.25" }, "best_ask": { "price": "0.37", "size": "679926.76" } } { "asset_id": "21824609976117105848555444850550421549651562100464735804855968490014825878128", "neg_risk": false, "best_bid": { "price": "0.63", "size": "679926.76" }, "best_ask": { "price": "0.64", "size": "1365482.25" } } ```