
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.
🏅 Top traders
| # | Trader | Total profit |
|---|---|---|
| 1 | Ṁ30 | |
| 2 | Ṁ15 |
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