Optimal API provider/plan for US stocks real-time

Discussion in 'Data Sets and Feeds' started by moskvich, Apr 30, 2024.

  1. moskvich

    moskvich

    Hey guys,

    Looking for (near) real-time for display only (wont use the feed for trading).
    US equities and major cmmdtys continuously updated around the clock.
    Something that's robust and doesnt cost $hundred

    Thanks!
     
  2. ZBZB

    ZBZB

    moskvich likes this.
  3. 2rosy

    2rosy

  4. Databento

    Databento Sponsor

  5. moskvich

    moskvich


    pricing scheme too complex....

    could you give me an estimate per month for running 10 tickers real-time?
     
  6. Databento

    Databento Sponsor

    $11.56/month for all top-of-book changes and trades of the 10 most active tickers (see this page > Batch select all symbols on page > Click "MBP-1" and "Live").
     
    moskvich likes this.
  7. moskvich

    moskvich

    looking for a plan that's something like: subscribing to any dynamically selected 10 tickers at any given time without having to subscribe for the whole mkt. would that be possible?
     
    Last edited: May 1, 2024
    Databento likes this.
  8. Databento

    Databento Sponsor

    Yes you can just specify whatever you want in your subscription request:

    Code:
    import databento as db
    
    client = db.Live(key="YOUR_API_KEY")
    
    # Subscribe to 3 specific symbols
    client.subscribe(
        dataset="XNAS.ITCH",
        schema="trades",
        symbols=["NVDA", "AAPL", "SPY"],
    )
    
    # Subscribe to the entire feed (all symbols)
    client.subscribe(
        dataset="XNAS.ITCH",
        schema="trades",
        symbols="ALL_SYMBOLS",
    )
     
    moskvich likes this.
  9. moskvich

    moskvich


    Thanks, is there a dedicated coding/tech support contact that i could reach out
    to in case i have further questions?