I don't think there is without the API. If I get around to fetching that info with a python script I'll post updated values every so often
I’m not sure how to see 2024 specifically.
But I see that in each user profile you can pull up rating, rank, # questions, and # Traders engaged.
I just searched e.g., strutheo (who is leading in this particular market we are chatting inside)
Select users
Select 2nd tab Questions
He is ranked #11 with 1.3k questions (markets) and 20k Traders
But he just celebrated his 100th day on March 3! I don’t know how to calibrate his # markets to the other contenders.
Here is the correlated list of top traders, top creators, etc
@SusanneinFrance I will try to figure out the current number now. I expect it to be easy, by looking at all markets, filtering by ones created in the timestamps consistent with 2024, and +1ing each creator when such a market was created by them. HYPE!
disclaimer: I may have made a mistake somewhere somehow. The data is a few days old.
from cache import load_markets
from datetime import datetime
markets = load_markets()
markets[0]['createdTime']
def market_created_time_in_2024(market):
created_time_str = str(market['createdTime']) # 1716430315206
created_time = datetime.fromtimestamp(int(created_time_str) / 1000)
return created_time.year == 2024
markets = list(filter(market_created_time_in_2024, markets))
# count the number of markets created by each market creator
from collections import defaultdict
market_creators = defaultdict(int)
for market in markets:
market_creators[market['creatorUsername']] += 1
# sort market creators by number of markets created
market_creators = sorted(market_creators.items(), key=lambda x: x[1], reverse=True)
for i, (creator, count) in enumerate(market_creators[:20]):
print(f'{i+1:3}. {creator[:18]:18}|{count:10,}')