Strasmore Research
Learn Matt ConnorBy Matt Connor

How to Get Approved for Options Trading

How to get approved for options trading: what the options application asks under FINRA Rule 2360, how brokers score your answers, and honest ways up a level.

How to get approved for options trading comes down to one form: the options application every US broker must collect before it accepts your first options order. Your answers about objectives, experience, income and net worth are scored into an approval level. Our options approval levels guide covers what each level permits, so this post stays on the application: what it asks, how the answers become a level, why a cash account stops short of spreads, and the honest ways up.

What the options application asks, and why

The questions come from a rule. FINRA Rule 2360, the options rule binding every US broker-dealer, requires a firm to exercise due diligence to learn the essential facts about a customer before approving the account for options, and it lists the facts to obtain. That list is why the same questions appear on every application in the industry:

Investment objectives (e.g., safety of principal, income, growth, trading profits, speculation); Employment status (name of employer, self-employed or retired); Estimated annual income from all sources; Estimated net worth (exclusive of family residence); Estimated liquid net worth (cash, securities, other)

FINRA Rule 2360(b)(16)(B), finra.org, accessed September 2026

The paragraph goes on to add marital status, number of dependents, age, and investment experience and knowledge. Objectives run from speculation at one end to safety of principal at the other, and a firm has no basis to approve a short option for an account whose stated goal is preserving capital. Experience (years, trades per year, products traded) is the firm's only evidence that you understand assignment and early exercise. Net worth excludes your home. Liquid net worth counts only cash and securities you could sell within days, and it gates the tiers able to produce a margin call. Together the answers form what the rule calls suitability: whether a strategy's risk fits the person carrying it.

Three procedural pieces sit behind the form. A Registered Options Principal (or a branch manager whose decision a principal then reviews) must approve the account in writing. The broker must deliver the Options Disclosure Document, the OCC booklet titled Characteristics and Risks of Standardized Options, at or before approval. And within 15 days of approval you sign the options agreement, accepting the exchange and FINRA rules that govern options. Miss the window and the approval lapses.

The form is the broker's suitability record, so a false answer is a false statement to your broker rather than a shortcut. It also scores only what you tell it: an out-of-date profile (a new job, a larger portfolio, years of new trading) quietly under-levels you until you update it.

How brokers score the answers into a level

Every broker maps the Rule 2360 facts onto its own ladder. The scoring is proprietary and mostly automated, and the pattern is consistent across the industry. Objectives set the ceiling: selecting only income or safety of principal caps the account at covered calls and cash-secured puts. Experience sets the floor: no options experience lands at the lowest tier, spreads generally ask for a year or more, uncovered writing asks for several. Liquid net worth and income gate the uncovered tiers, with thresholds that climb at each level. Account type is a hard gate: spreads and uncovered writing require a margin account, and IRAs and custodial accounts carry their own ceilings.

Three brokers say as much in their own words. Fidelity's options FAQ puts it in one line:

Your financial situation, trading experience, and investment objectives are taken into consideration for approval.

Fidelity, Options Trading FAQs, accessed September 2026

Robinhood's support pages tie the level to the investor profile you confirm during the application and state that Level 3 is available in margin accounts, not in cash accounts or Robinhood Retirement (accessed September 2026). Schwab's how-to-apply page (accessed September 2026) offers to add margin access before you continue, notes that your responses affect the level you receive, and says the decision is emailed within three business days.

Why a cash account caps you below spreads

A cash account has one rule: every position is paid for in full. Buying a call or put costs the premium and nothing more. Selling a put in a cash account requires the full purchase price of 100 shares at the strike to sit in cash against it, which is what cash-secured means. A spread breaks that rule. Its short leg is secured by the long leg rather than by cash or stock, and that netting is a margin computation under Regulation T and FINRA Rule 4210. Brokers do not run margin math in a cash account, so the spread tiers open only once a margin agreement is on file.

The difference is easiest to see in dollars. The first panel prices one short SPY put at each five-point strike below the June 12, 2026 close, expiring July 17, 2026, the way a cash account holds it.

QuerySelling one SPY put in a cash account: premium collected vs. cash held (June 12, 2026 close, July 17 expiry)
strikeput_pricepremium_collectedcash_collateralpremium_pct_of_collateral
74012.371237740001.67
73510.61060735001.44
7308.96896730001.23
7257.71771725001.06
7206.58658720000.91
7155.72572715000.8
7104.87487710000.69
7054.19419705000.59
7003.59359700000.51
The exact SQL behind every number
SELECT
    toInt32(round(toFloat64(strike_price)))                                  AS strike,
    round(any(toFloat64(option_close)), 2)                                   AS put_price,
    toInt32(round(any(toFloat64(option_close)) * 100))                       AS premium_collected,
    toInt32(round(toFloat64(strike_price) * 100))                            AS cash_collateral,
    round(any(toFloat64(option_close)) / toFloat64(strike_price) * 100, 2)   AS premium_pct_of_collateral
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
  AND toDate(date) = toDate('2026-06-12')
  AND toDate(expiration_date) = toDate('2026-07-17')
  AND lower(toString(option_type)) LIKE 'p%'
  AND iv_converged = 1
  AND volume > 0
  AND toFloat64(underlying_close) > 0
  AND toFloat64(strike_price) < toFloat64(underlying_close)
  AND toFloat64(strike_price) >= toFloat64(underlying_close) * 0.94
  AND toInt32(round(toFloat64(strike_price))) % 5 = 0
  AND abs(toFloat64(strike_price) - round(toFloat64(strike_price))) < 0.001
GROUP BY strike_price
ORDER BY strike DESC
Run this yourself

SPY closed that session at $742.45. Selling the 740 put collected $1237, and the cash account held $74000 against it: the premium is 1.67% of the capital parked. Walk down the ladder and the premium shrinks while the collateral barely moves.

The second panel pairs each short put with a long put five points lower, the credit spread a margin account holds. The maximum loss on a five-point spread is the width, $500, minus the credit received, and that figure is also the margin requirement.

QueryThe same short put as a five-point credit spread in a margin account (June 12, 2026 close, July 17 expiry)
short_strikelong_strikeshort_put_pricelong_put_pricenet_credit_dollarsmargin_requirement_dollarscredit_pct_of_requirementcash_vs_margin_ratiospy_close
74073512.3710.617732354.8229.1742.45
73573010.68.9616433648.8218.8742.45
7307258.967.7112537533.3194.7742.45
7257207.716.5811338729.2187.3742.45
7207156.585.728641420.8173.9742.45
7157105.724.878541520.5172.3742.45
7107054.874.196843215.7164.4742.45
7057004.193.596044013.6160.2742.45
7006953.593.18414598.9152.5742.45
The exact SQL behind every number
SELECT
    s.strike                                                          AS short_strike,
    l.strike                                                          AS long_strike,
    s.put_price                                                       AS short_put_price,
    l.put_price                                                       AS long_put_price,
    toInt32(round((s.put_price - l.put_price) * 100))                 AS net_credit_dollars,
    toInt32(round((s.strike - l.strike) * 100)) - net_credit_dollars  AS margin_requirement_dollars,
    round(net_credit_dollars / margin_requirement_dollars * 100, 1)   AS credit_pct_of_requirement,
    round(s.strike * 100 / margin_requirement_dollars, 1)             AS cash_vs_margin_ratio,
    s.spy_close                                                       AS spy_close
FROM
(
    SELECT
        toInt32(round(toFloat64(strike_price)))               AS strike,
        strike - 5                                            AS long_strike,
        round(any(toFloat64(option_close)), 2)                AS put_price,
        toString(round(any(toFloat64(underlying_close)), 2))  AS spy_close
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND toDate(date) = toDate('2026-06-12')
      AND toDate(expiration_date) = toDate('2026-07-17')
      AND lower(toString(option_type)) LIKE 'p%'
      AND iv_converged = 1
      AND volume > 0
      AND toFloat64(underlying_close) > 0
      AND toFloat64(strike_price) < toFloat64(underlying_close)
      AND toFloat64(strike_price) >= toFloat64(underlying_close) * 0.94
      AND toInt32(round(toFloat64(strike_price))) % 5 = 0
      AND abs(toFloat64(strike_price) - round(toFloat64(strike_price))) < 0.001
    GROUP BY strike_price
) AS s
INNER JOIN
(
    SELECT
        toInt32(round(toFloat64(strike_price)))               AS strike,
        round(any(toFloat64(option_close)), 2)                AS put_price
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND toDate(date) = toDate('2026-06-12')
      AND toDate(expiration_date) = toDate('2026-07-17')
      AND lower(toString(option_type)) LIKE 'p%'
      AND iv_converged = 1
      AND volume > 0
      AND toFloat64(underlying_close) > 0
      AND toFloat64(strike_price) < toFloat64(underlying_close)
      AND toFloat64(strike_price) >= toFloat64(underlying_close) * 0.90
      AND toInt32(round(toFloat64(strike_price))) % 5 = 0
      AND abs(toFloat64(strike_price) - round(toFloat64(strike_price))) < 0.001
    GROUP BY strike_price
) AS l ON l.strike = s.long_strike
ORDER BY short_strike DESC
Run this yourself

The 740/735 put spread brought in $177 against a margin requirement of $323. The cash-secured version of the same short strike held 229.1 times as much capital, and even at the furthest strike in the ladder, 700, the cash account holds 152.5 times the spread's requirement. The spread gives up premium (the long leg costs money) for a loss capped at the width. The panels show only what each account type is built to hold. Which structure fits a given trader is a separate question.

What a margin upgrade changes

A margin account adds a margin agreement and, under FINRA Rule 4210, a $2,000 minimum equity requirement. Nothing forces you to borrow: interest accrues only on a debit balance, and a spread held with its full requirement in cash carries no loan. What changes is the math the broker is willing to run: short legs can be secured by long legs, and defined-risk spreads open up. Uncovered writing sits a level higher, with its own experience and net-worth thresholds; the collateral rules for that tier are in our guide to margin for selling naked options. Two side effects come with the switch. Day trades are counted under the pattern day trader rule, and the account becomes eligible for margin calls, which how risky options trading really is walks through with numbers.

Common reasons an options application is denied

Most rejections come from an answer colliding with a rule in the scoring rather than from a judgment on the applicant:

  1. Objectives that exclude the strategy. Ticking only safety of principal or income while requesting spreads produces a lower tier or a denial.
  2. No documented experience. Zero years and zero trades lands at the base tier at nearly every broker, regardless of income.
  3. Liquid net worth below the tier's threshold, or income and net worth figures that contradict each other.
  4. The wrong account type. A cash account cannot receive a spread tier, custodial accounts have their own caps, and at Robinhood both co-owners of a joint account must apply and qualify.
  5. A lapsed agreement. An approval never followed by the signed options agreement inside 15 days has to be redone.

How to get approved for a higher options level: the honest routes

  • Re-apply after the waiting period, with an updated profile. Brokers set a cooling-off window after a decision, typically weeks to a few months, and the application page or a representative will state it. Before re-applying, update the investor profile the score is drawn from: the form knows only what you last told it.
  • Build a documented trading history. Months of long calls, covered calls, cash-secured puts and protective puts in the same account are the firm's own evidence of experience, and assignments handled carry more weight with a reviewing principal than a self-reported number of years.
  • Ask a representative. Automated scoring is a first pass. A Registered Options Principal makes the decision, and a call or secure message naming the strategies you want, and why your profile supports them, gets a human review.
  • Fix the account type. If the block is a cash account, the margin agreement is the missing piece. Extra experience does not lift that cap.

The route that does not work is misstating the profile. The form is a suitability record the firm relies on and regulators can audit, and a padded experience answer removes the one check designed to keep a first short option from being an uncovered one.

Options approval in an IRA

An IRA cannot borrow, so it can never be a Regulation T margin account, and uncovered writing is off the table at every broker. What most firms offer instead is a limited-margin or spreads agreement that lets the account net a long leg against a short leg without a loan. Fidelity's FAQ lists covered calls, cash-covered puts, long straddles and spreads up to four legs among the strategies its IRAs can access; Robinhood Retirement supports Level 2 strategies only. Approval runs through the same Rule 2360 questions, with the account type as an extra ceiling. The settlement mechanics and the strategy-by-strategy rules are in trading options inside an IRA.

FAQ

How long does options approval take?

At most brokers a first application is scored automatically and answered within minutes to a few business days. Schwab's how-to-apply page states that the status is emailed within three business days. Requests for the uncovered tiers, or applications flagged for human review, take longer.

Can I get approved for options trading with no experience?

Usually yes, at the lowest tier. Buying calls and puts and writing covered calls are approved for new traders at most firms once the objectives and financial answers fit. The spread and uncovered tiers ask for documented options experience, which an account builds by trading at the base tier.

Do I need a margin account to trade options?

Not for buying options or for covered and cash-secured writing, which work in a cash account. Spreads and any uncovered writing require a margin agreement, and Robinhood states that Level 3 is unavailable in cash accounts.

What happens if my options application is denied?

A denial is a suitability decision inside the broker and never reaches a credit file. You can keep trading stocks, update your investor profile if it was incomplete, and re-apply after the firm's waiting period or ask a representative to review the decision.


Both ladders ship with the exact SQL beneath them. Expand a panel to see how each figure was computed, or run the same query for another ticker and date on the Strasmore terminal.

#options approval#brokerage accounts#finra 2360#margin account#options basics