Skip to main content

Unofficial Python client for the MarketSurge stock research API

Project description

tickerscope

CI PyPI Python License

Unofficial async Python client for the MarketSurge stock research API. Wraps the GraphQL endpoints with typed dataclass models and cookie-based auth.

[!IMPORTANT] This is an unofficial library. You need an active MarketSurge subscription and must be logged in via your browser for authentication to work.

Features

  • Sync and async clients (TickerScopeClient / AsyncTickerScopeClient)
  • Frozen dataclass models with JSON serialization
  • Automatic JWT auth from browser cookies (Firefox/Chrome) via rookiepy
  • Token expiry detection and structured error hierarchy

Installation

pip install tickerscope

Authentication

tickerscope authenticates by extracting cookies from your browser. Log into MarketSurge in Firefox or Chrome first, then:

from tickerscope import TickerScopeClient

# Reads cookies from Firefox by default
client = TickerScopeClient()

# Or specify Chrome
client = TickerScopeClient(browser="chrome")

You can also pass a JWT directly or set the TICKERSCOPE_JWT environment variable:

client = TickerScopeClient(jwt="your-jwt-token")

Usage

Sync client

from tickerscope import TickerScopeClient

with TickerScopeClient() as client:
    stock = client.get_stock("AAPL")
    print(stock.ratings.composite)
    print(stock.pricing.price)

    chart = client.get_chart_data(
        "AAPL",
        start_date="2025-01-01",
        end_date="2025-03-01",
    )
    for point in chart.time_series.data_points[:5]:
        print(point.close, point.volume)

Async client

import asyncio
from tickerscope import AsyncTickerScopeClient

async def main():
    async with AsyncTickerScopeClient() as client:
        stock = await client.get_stock("NVDA")
        print(stock.company.name, stock.ratings.composite)

        fundamentals = await client.get_fundamentals("NVDA")
        for period in fundamentals.reported_earnings:
            print(period.period_label, period.value)

asyncio.run(main())

Async client (fully async construction)

Use the create() factory for fully async initialization, including the auth HTTP request:

async def main():
    client = await AsyncTickerScopeClient.create()
    try:
        stock = await client.get_stock("TSLA")
        print(stock.ratings)
    finally:
        await client.aclose()

Available methods

Method Returns Description
get_stock(symbol) StockData Ratings, pricing, financials, patterns
get_chart_data(symbol, ...) ChartData OHLCV time series and quotes
get_fundamentals(symbol) FundamentalData Earnings/sales reported and estimates
get_ownership(symbol) OwnershipData Institutional fund ownership
get_watchlist(list_id) list[WatchlistEntry] Screen a watchlist for stock data
get_watchlist_names() list[WatchlistSummary] All user watchlists
get_watchlist_symbols(id) WatchlistDetail Symbol keys in a watchlist
get_watchlist_by_name(name) WatchlistDetail Look up watchlist by name
get_screens() list[Screen] Saved stock screens
get_screen_by_name(name) Screen Look up screen by name
run_screen(name, params) ScreenResult Execute a stock screen
get_active_alerts() AlertSubscriptionList Active alert subscriptions
get_triggered_alerts() TriggeredAlertList Recently triggered alerts
get_layouts() list[Layout] Saved chart layouts
get_chart_markups(symbol) ChartMarkupList Chart annotations/markups

Error handling

All exceptions inherit from TickerScopeError and include a to_dict() method for structured error reporting:

from tickerscope import (
    TickerScopeError,
    AuthenticationError,
    CookieExtractionError,
    TokenExpiredError,
    APIError,
    SymbolNotFoundError,
)

try:
    stock = client.get_stock("INVALID")
except SymbolNotFoundError as exc:
    print(exc.symbol)
    print(exc.to_dict())
except TokenExpiredError:
    # Re-authenticate and retry
    ...

Development

Requires uv for dependency management:

uv sync --all-extras --dev

make lint        # ruff check
make typecheck   # ty check
make radon       # cyclomatic complexity gate (A/B only)
make test        # pytest with coverage
make ci          # all of the above

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tickerscope-0.3.0.tar.gz (44.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tickerscope-0.3.0-py3-none-any.whl (54.9 kB view details)

Uploaded Python 3

File details

Details for the file tickerscope-0.3.0.tar.gz.

File metadata

  • Download URL: tickerscope-0.3.0.tar.gz
  • Upload date:
  • Size: 44.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tickerscope-0.3.0.tar.gz
Algorithm Hash digest
SHA256 63e4436244d6d1bc1bfc88cf44d060f3b7501f5e0de9005ecf80552ca033e4fc
MD5 56aed05f748d875c6fd37c14f1efc70d
BLAKE2b-256 f3889706279866276dc13e20996da58c82cfdb2040e6e615717e7e95b6e11f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickerscope-0.3.0.tar.gz:

Publisher: release.yml on major/tickerscope

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tickerscope-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: tickerscope-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 54.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tickerscope-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a9383a88a065a9207381a2b3bf8c216965af38e279246d37ebffdc6cfd6c869a
MD5 cb406a6e6f46ce1d99ddc58c5b9b6683
BLAKE2b-256 070c389525226222bbf1bddb7fc13cc8c6683b1dd9ec98a94e4c73ea8a96adfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickerscope-0.3.0-py3-none-any.whl:

Publisher: release.yml on major/tickerscope

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page