Skip to main content
Execution: venue.trade() in chat code, strategy.execute() in strategy agents.

Overview

Robinhood connects to Scalar Field via OAuth. Once linked, the account is a tradable venue: Scalar Field reads positions, balances, and order history, and places equity and ETF orders in the account.

Order Semantics

  • Symbols are plain tickers (AAPL, SPY).
  • Options and crypto orders are not supported — equities and ETFs only.
  • Fractional quantities are supported. Size from a dollar budget with round(budget / price, 2).
  • The slippage_bps parameter does not apply to brokerage venues.

Connecting

Click “Connect” on the portfolio page and authorize with your Robinhood account.

Usage

In strategy agents, use strategy.execute(symbol, target_qty) instead — see Strategies.

Data Functions

Equity research uses the cross-asset market-data functions; each links to its full reference:

Notes

  • Avoid trading directly in the Robinhood app while strategies are active on the account — see Reconciliation for how position mismatches are handled.
  • Orders submitted outside market hours are queued for the next market open.

Related