robinhood_place_trade
Place buy or sell orders on Robinhood. Use dry_run to preview before executing real trades with real money.
Instructions
Place a buy or sell order on Robinhood. Use dry_run: true to preview without executing. CAUTION: This places real trades with real money.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Whether to buy or sell | |
| symbol | Yes | Stock ticker symbol (e.g., AAPL, TSLA) | |
| dry_run | No | If true, simulate the trade without actually placing it (default: true for safety) | |
| quantity | No | Number of shares to buy/sell (use this OR dollar_amount) | |
| order_type | Yes | Order type: market (execute at current price) or limit (execute at specified price) | |
| limit_price | No | Price per share for limit orders (required for limit orders) | |
| dollar_amount | No | Dollar amount to invest (use this OR quantity) |