Supported Indices
Search indices available in the Console algorithm Search tab.
Supported Indices
These are the indices currently available in Console -> Algo -> New Algo -> Search at console.mbd.xyz.
Use these names with the algorithm builder Search tab and with DSL calls such as .index("token-items"). Choose the index that matches the entity your feed should return: items, trades, wallet positions, wallets, users, or notification events.
Items
| Index | Returns | Common use |
|---|---|---|
token-items | Token or coin items | Token discovery, market movement, asset feeds |
polymarket-items | Polymarket market items | Prediction-market discovery and market feeds |
hyperliquid-items | Hyperliquid items | Hyperliquid market or asset feeds |
Trades
| Index | Returns | Common use |
|---|---|---|
base-trades | Base trade events | Base trading activity feeds |
ethereum-trades | Ethereum trade events | Ethereum trading activity feeds |
solana-trades | Solana trade events | Solana trading activity feeds |
polymarket-trades | Polymarket trade events | Prediction-market trade feeds |
hyperliquid-trades | Hyperliquid trade events | Hyperliquid trader and activity feeds |
alpha-trade-events-kalshi | Kalshi trade events | Kalshi market and trader activity feeds |
Wallet Positions
| Index | Returns | Common use |
|---|---|---|
base-wallet-positions | Base wallet positions | Wallet holdings and portfolio feeds |
ethereum-wallet-positions | Ethereum wallet positions | Wallet holdings and portfolio feeds |
solana-wallet-positions | Solana wallet positions | Wallet holdings and portfolio feeds |
polymarket-wallet-positions | Polymarket wallet positions | Prediction-market exposure feeds |
hyperliquid-wallet-positions | Hyperliquid wallet positions | Hyperliquid portfolio and exposure feeds |
Wallets And Users
| Index | Returns | Common use |
|---|---|---|
polymarket-wallets | Polymarket wallets | Trader discovery, leaderboard-style feeds |
hyperliquid-wallets | Hyperliquid wallets | Trader discovery and wallet feeds |
kalshi-wallets | Kalshi wallets | Kalshi trader discovery |
wallet-users | Wallet-user aliases | Mapping wallets to app or user identities |
Notifications
| Index | Returns | Common use |
|---|---|---|
dex-notifications | DEX notification events | Feed or notification surfaces driven by DEX events |
hyperliquid-notifications | Hyperliquid notification events | Feed or notification surfaces driven by Hyperliquid events |
kalshi-notifications | Kalshi notification events | Feed or notification surfaces driven by Kalshi events |
polymarket-notifications | Polymarket notification events | Feed or notification surfaces driven by Polymarket events |
Picking The Right Index
| If you want to show... | Start with... |
|---|---|
| Tokens, coins, or markets | Item indices such as token-items, polymarket-items, or hyperliquid-items |
| Recent activity | Trade indices such as solana-trades, polymarket-trades, or alpha-trade-events-kalshi |
| Holdings or exposure | Wallet-position indices such as base-wallet-positions or polymarket-wallet-positions |
| Traders, wallets, or users | Wallet/user indices such as polymarket-wallets, hyperliquid-wallets, kalshi-wallets, or wallet-users |
| Notification-backed candidates | Notification indices such as dex-notifications or polymarket-notifications |
Example
import mbd from "algo-dsl";
export default async function algo() {
return mbd
.search()
.index("token-items")
.notNull("symbol")
.range("volume_24hr", { gt: 0 })
.sortBy("timestamp", "desc")
.size(30);
}After selecting an index, use the Search tab to add filters, sort fields, and hydration fields that match the selected index.
Updated about 2 months ago
Did this page help you?

