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

IndexReturnsCommon use
token-itemsToken or coin itemsToken discovery, market movement, asset feeds
polymarket-itemsPolymarket market itemsPrediction-market discovery and market feeds
hyperliquid-itemsHyperliquid itemsHyperliquid market or asset feeds

Trades

IndexReturnsCommon use
base-tradesBase trade eventsBase trading activity feeds
ethereum-tradesEthereum trade eventsEthereum trading activity feeds
solana-tradesSolana trade eventsSolana trading activity feeds
polymarket-tradesPolymarket trade eventsPrediction-market trade feeds
hyperliquid-tradesHyperliquid trade eventsHyperliquid trader and activity feeds
alpha-trade-events-kalshiKalshi trade eventsKalshi market and trader activity feeds

Wallet Positions

IndexReturnsCommon use
base-wallet-positionsBase wallet positionsWallet holdings and portfolio feeds
ethereum-wallet-positionsEthereum wallet positionsWallet holdings and portfolio feeds
solana-wallet-positionsSolana wallet positionsWallet holdings and portfolio feeds
polymarket-wallet-positionsPolymarket wallet positionsPrediction-market exposure feeds
hyperliquid-wallet-positionsHyperliquid wallet positionsHyperliquid portfolio and exposure feeds

Wallets And Users

IndexReturnsCommon use
polymarket-walletsPolymarket walletsTrader discovery, leaderboard-style feeds
hyperliquid-walletsHyperliquid walletsTrader discovery and wallet feeds
kalshi-walletsKalshi walletsKalshi trader discovery
wallet-usersWallet-user aliasesMapping wallets to app or user identities

Notifications

IndexReturnsCommon use
dex-notificationsDEX notification eventsFeed or notification surfaces driven by DEX events
hyperliquid-notificationsHyperliquid notification eventsFeed or notification surfaces driven by Hyperliquid events
kalshi-notificationsKalshi notification eventsFeed or notification surfaces driven by Kalshi events
polymarket-notificationsPolymarket notification eventsFeed or notification surfaces driven by Polymarket events

Picking The Right Index

If you want to show...Start with...
Tokens, coins, or marketsItem indices such as token-items, polymarket-items, or hyperliquid-items
Recent activityTrade indices such as solana-trades, polymarket-trades, or alpha-trade-events-kalshi
Holdings or exposureWallet-position indices such as base-wallet-positions or polymarket-wallet-positions
Traders, wallets, or usersWallet/user indices such as polymarket-wallets, hyperliquid-wallets, kalshi-wallets, or wallet-users
Notification-backed candidatesNotification 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.


Did this page help you?