Skip to main content

symbol

Commands for searching and querying symbols tracked by TraderBro.


traderbro symbol list

List tracked symbols with prediction and mention counts.

Usage

traderbro symbol list [flags]

Flags

FlagTypeDefaultDescription
--typestringFilter by type: stock, etf, crypto
--countrystringFilter by country code (e.g. US, BD)
--sectorstringFilter by sector
--searchstringSearch by name or ticker
--has-predictionsboolfalseOnly symbols with analyst predictions

Examples

# All symbols with predictions
traderbro symbol list --has-predictions --json

# US stocks only
traderbro symbol list --type stock --country US --json

# Technology sector symbols
traderbro symbol list --sector Technology --json

Output (JSON mode)

{
"count": 312,
"results": [
{
"id": 42,
"symbol": "NVDA",
"name": "NVIDIA Corporation",
"symbol_type": "stock",
"country": "US",
"predictions_count": 18,
"mentions_count": 47
}
]
}

Search symbols by name or ticker.

Usage

traderbro symbol search <query> [flags]

Examples

traderbro symbol search "Tesla" --json
traderbro symbol search NVDA --json

Output (JSON mode)

{
"count": 2,
"results": [
{
"id": 7,
"symbol": "TSLA",
"name": "Tesla, Inc.",
"symbol_type": "stock",
"country": "US"
}
]
}

traderbro symbol mentions

List content mentions for a symbol (from tweets, videos, articles).

Usage

traderbro symbol mentions <id> [flags]

Flags

FlagTypeDefaultDescription
--typestringFilter by mention type

Examples

traderbro symbol mentions 42 --json
traderbro symbol mentions 42 --type prediction --json

Output (JSON mode)

{
"results": [
{
"id": 201,
"mention_type": "prediction",
"direction": "bullish",
"confidence_score": 85,
"key_quote": "NVDA is a must-hold..."
}
]
}

traderbro symbol predictions

List analyst predictions for a symbol.

Usage

traderbro symbol predictions <id> [flags]

Examples

traderbro symbol predictions 42 --json

Output (JSON mode)

{
"results": [
{
"id": 101,
"analyst_name": "No Limit Gains",
"direction": "bullish",
"stated_price_target": "650",
"confidence_score": 85,
"published_at": "2025-03-15T10:00:00Z"
}
]
}

Exit codes

CodeMeaning
0Success
2Authentication failure
3Symbol not found
4Validation error
5Network error