top of page

The Claude Agent That Trades My Robinhood Account While I Work

It has its own brokerage account, an entry run at 9:45 and an exit review at 2pm, and a written list of things it may never do. That rule set is the whole point, and it is the free download on this page. Rules and method only here: no returns, no positions, no advice.

Build no. 04  Â·  Branden Bell  Â·  6 min read  Â·  Built with Claude

TL;DR

Built  A Claude agent with its own Robinhood Agentic account that enters after the open and reviews exits in the early afternoon, inside limits it cannot talk its way past.

Who  Anyone about to point an AI agent at a live brokerage account.

Changed  The decisions are written down while the market is closed instead of argued with at 10am.

Yours  The whole rule set, free, no email. Rules only, no order-placing code.

The five scheduled runs, their times in ET, and which ones may place orders
The hard guardrail block from the run instructions, one account, defined risk only, no stacking, no autonomous cancels

The five runs, and which ones may touch orders. Entries and exits are separate runs on purpose, so a bug in one cannot swallow the other.

Why I Gave It Its Own Account

Robinhood opened agent trading in 2026 over MCP, the same protocol Claude uses to reach any other tool. The part that made me comfortable was not the agent. It was that agent trading happens in a separate account you fund on purpose, and the agent cannot reach anything else you own.

So the very first rule I wrote was not about strategy. It was an account number, hardcoded, with an instruction never to inspect or trade anything else. Everything after that is damage control on a bounded amount of money.

Robinhood is blunt about the rest. You can authorise an agent to trade without confirming each order, and you assume all risk for what it does. I agree with them. That is the deal, and it is the reason the rest of this page exists.

What The Agent May Never Do

  • Touch any account other than the one named in its instructions.
  • Hold anything with an unbounded loss. Long stock and ETFs, long calls, long puts, debit spreads.
  • Short a stock or sell a naked option. A bearish idea trades as a put.
  • Buy an option expiring inside two days, or one with a wide spread and no open interest.
  • Add to an underlying it already holds, or cancel an order on its own.
  • Act on stale data. When the broker call errors, the run stops and reports the error text.

None of that is clever. It is the difference between a bad day and a bad month.

04  It reviews exits again at 2pm

The afternoon run never opens anything. It only looks at what is already held and applies the same exit model to fresh quotes. That run is why a position entered in the morning does not sit unattended into the close on a day the tape turns.

The Part That Does The Work

Most of the instructions are not strategy. They are the list of things the agent is not allowed to do, written plainly enough that a run can be held to them.

# The first rule, and the only one that bounds the damage

ACCOUNT  one account, named by number in the instructions.
          Never inspect, trade, cancel, or infer permission
          anywhere else. Never move money.

# What it may hold

ALLOWED  long equities and ETFs, long calls, long puts,
          debit spreads. Max loss known at entry.
NEVER    naked short options, short stock, 0 to 2 DTE,
          anything with an unbounded loss.

# When it may not act at all

- A position or open order already exists on that underlying.
- The quote is stale, or the broker call errored.
- The tape is broadly risk-off.
- No candidate cleared every gate. Cash is a position.

Straight from the run instructions, with the account number removed. The whole rule set is in the free download.

What Changed

The decisions now get made while the market is closed. The agent does not get to renegotiate a stop at 11am because a position is red, and I do not get to either, because the rule is written down and the run reports what it did.

No performance claims on this page. It is a rule set and a schedule, not a track record, and none of it is advice. An agent that follows every rule here can still lose money, and the person who signed up for that is me.

Get The Guardrail Template, No Charge

The rule set above, templatized, with everything of mine stripped out. There is no order-placement code in it on purpose. You bring your own agent and your own broker connection, and point it at these.

  • account-lock.md  The one rule that bounds the blast radius
  • instrument-limits.md  What it may hold, and what it may never hold
  • entry-gates.md  What has to be true before anything opens
  • sizing.md  The only sizing decision worth having
  • exit-model.md  Stops, breakeven, trails, and the option rules
  • schedule.md  What each run of the day may and may not do
  • honesty-rules.md  The rules that stop a confident lie
  • grading.md  How you learn whether any of it works

No email, no signup. The numbers in it are one person's risk tolerance on a small account, not advice. Change every one of them before you point anything at a live account.

Who This Suits

Worth your time if you are about to connect an agent to a live brokerage account, or you already did and have not yet written down what it may never do.

Skip it if you want a strategy or a signal. There is neither here, and nothing on this page is financial advice.

And if you would rather not build it yourself

I Do This Around Your Business, Not Mine

This one is mine, built on my own account and my own risk. Most of my week is the same work at client scale, on their stack: ClickUp systems for service businesses, and the Claude tooling that sits on top of them.

If you are pointing agents at anything that matters, and the rules they run under have never been written down, that is the conversation.

  • 1  A call. You talk, I ask, nothing gets pitched.
  • 2  Honest answers on what to automate, what to guard, and what to leave alone.
  • 3  If it is worth going deeper, we keep going. If it is not, I say so.

The intro call is free. If we go further, consulting is $250 for the first hour, then $75 an hour.

Thirty minutes, on my calendar, no charge and nothing to cancel.

I am Branden Bell. I run Bell Consulting Solutions out of St. Petersburg, Florida. PMP, ClickUp Verified Consultant, and the person who answers the email.

The exit model: initial stop from ATR, breakeven at 1R, trailing stop tightened by VWAP, option stops
The honesty rules: never fabricate a fill, never invent a source, state the fire time, log the quiet days

The guardrail block, as it sits in the run instructions. Every line is something the agent may not do, and it is longer than the part that picks anything.

The exit model. Stops and trails compute from ATR and VWAP on live data, not from how the position feels at lunch.

The honesty rules. An agent that fills gaps with plausible text is worse than no agent, because you will believe it.

How The Loop Runs

Five scheduled runs, each with one job. The two that may place orders are the two carrying the most rules.

01  It reads the broker state, then the tape

The entry run starts by pulling live positions, open orders and buying power from the broker. Not a cache, not the morning research page. If that call fails, the run stops there and says so. Every decision after that point is made against a state I can reconstruct later.

02  It manages what it already holds, then looks at anything new

Open positions get handled first, against the exit model, every single run. Only then does it look at candidates, and only when nothing is already open on that underlying. An agent that hunts for new trades while an old one bleeds is just an expensive optimist.

03  It has one sizing decision, trade or no trade

A candidate that clears every gate gets the full allocation. A candidate that misses one gate gets nothing. No conviction tiers, no half sizes, because tiering is how you take a trade you already decided against.

That only works because the account itself is the position sizer. It holds an amount I can lose without it changing anything about my week, which is the honest version of risk management at this size.

05  It logs every run, including the quiet ones

Every run commits a summary, whether it traded or not, with the gate that blocked it when it did nothing. A quiet day and a broken agent look identical in a log that only records trades.

Then a weekly run grades every closed trade against the actual fills and computes expectancy. That is the only part that can tell me whether any of the rest of this is worth running.

bottom of page