Browse Community Strategies (leaderboard)
browse_communityBrowse the public community leaderboard of published strategies, ranked by a composite performance score (best first). No signup or key needed.
Copy-trade flow: call this to find a top strategy, then pass its `id` to
`one_shot` as `community_id` to deploy a live signal model running that
exact strategy in one call.
Args:
limit: How many top entries to return (default 20, max 200).
sort: Ranking metric, best-first — one of "composite" (default),
"ret" (total return), "wr" (win rate), "sharpe", "n_trades". Mirrors
the quantifyme.ai/community page's sortable columns, so an agent can
pick the top strategy by the metric it cares about in one call. The
sorted entries keep their `id`, so the winner is directly deployable
via one_shot(community_id=...).
Returns:
dict with:
- scripts (list[dict]): ranked entries, best first. Each has:
id (int — pass to one_shot as community_id), username, title,
description, created_at, score, and metrics {total_ret,
sharpe_strat, win_rate, n_trades, mdd, profit_factor}. SHOW the
top few with their win_rate / total_ret so the user can pick one.
- count (int).
- metric (str): the sort key applied.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | composite | |
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||