As per this comment, @evangriffiths suggested that for long-running markets, we might want to define betting intervals dynamically based on the duration of the market. Instead of using a fixed time interval, consider having max_bets_per_market: int = 10, and check if a timedelta of market_duration / 10 has elapsed since the last bet.
This approach would space out bets uniformly over the market's duration.
As per this comment, @evangriffiths suggested that for long-running markets, we might want to define betting intervals dynamically based on the duration of the market. Instead of using a fixed time interval, consider having
max_bets_per_market: int = 10
, and check if a timedelta ofmarket_duration / 10
has elapsed since the last bet.This approach would space out bets uniformly over the market's duration.
PR: https://github.com/gnosis/prediction-market-agent/pull/523 Comment: https://github.com/gnosis/prediction-market-agent/pull/523#discussion_r1806623151 Requested by: @kongzii