Is there something like a market maker to help provide liquidity?
Is it setting probabilities/prices using something like black-scholes?
How would you design a very simple prediction market MVP?
1–10 of 11 posts
Is there something like a market maker to help provide liquidity?
Is it setting probabilities/prices using something like black-scholes?
How would you design a very simple prediction market MVP?
https://www.sciencedirect.com/book/9780444507440/handbook-of...
Not sure if you want to buy it but I got it from my Uni library.
Some have a market maker, but usually that's not the case. The price is determined by the ratio between the binary options in the market. Ones with multiple potential outcomes can be reduced to binary easily for input into the black-scholes formula. " the algorithm" generally in cases like this are just the game theoretical incentive structure and human behavior does the rest.
MVP, that's a complex question. You've got to pick your stack, mode of payment, design an interface, back end, API, I'd start with just a server side back end to do all the computations and build the API and then integrate it to your payment method whether that's a bitcoin node or whatever, and then build an interface from there. If you're using ethereum or something like that, youre going to need to do it in a trustless sort of way, so that back end thing is going to be smart contracts and the API is going to be contract calls.
Not that sure about Polymarket, but Kalshi uses a limit order book and has incentives for market makers to provide liquidity. The prices are set by what people are willing to buy and sell for, not by an algorithm.
Not that sure about Polymarket, but Kalshi uses a limit order book and has incentives for market makers to provide liquidity. The prices are set by what people are willing to buy and sell for, not by an algorithm.
Ok, that's helpful but I'd argue even a limit order book has an algorithm (albeit simple)
Why wouldn’t it just be a simple order book? You could easily manipulate it by stacking a bunch of orders just outside the book’s depth, pushing the market in your desired direction. This creates the illusion of ‘smart money’ at play, and with low liquidity, others would quickly follow suit. This strategy would be cheap and surprisingly effective in thinly traded markets.