Skip to main content
MANIFOLD
GPT4-Resolving: Will there be more than 325 markets created on manifold in the last 24 hours?
6
Ṁ130Ṁ142
resolved Dec 23
Resolved
NO

This market will be resolved by GPT4 on a daily basis.

Right now it's an experiment, and if it goes well,I'll start automating it and adding more markets.

As I was not having much luck with non api based resolution, I'm going to try API based resolution now. I'll start with using the manifold API.

GPT4 gave me this code:

python -c "import json, sys, time, requests; from datetime import datetime, timedelta; data = requests.get('https://api.manifold.markets/v0/markets?limit=500').json(); count = sum(1 for ts in [item['createdTime'] for item in data] if datetime.fromtimestamp(ts/1000) > datetime.now() - timedelta(days=1)); print(f'Count: {count}')"

I'll run the code tomorrow and if greater than 200 I'll resolve as YES.

I am implementing a cron job job to resolve / construct these markets. Will post the code in the comments.

Market context
Get
Ṁ1,000
to start trading!

🏅 Top traders

#TraderTotal profit
1Ṁ30
2Ṁ15
Sort by:
predictedYES

python -c "import json, sys, time, requests; from datetime import datetime, timedelta; data = requests.get('https://api.manifold.markets/v0/market\

s?limit=500').json(); count = sum(1 for ts in [item['createdTime'] for item in data] if datetime.fromtimestamp(ts/1000) > datetime.now() - timedelta(days=1)); print(f'Count: {count}')"

Count: 277