OCC Symbols And Parsing

Is OCC the Same as OSI?

A practical answer for developers who see OCC, OSI, and option symbol used interchangeably.

Quick answerLast verified April 28, 2026

In practical parsing conversations, people often use OCC and OSI to refer to the standardized U.S. option symbol format. OCC is the clearing organization context; OSI is the Options Symbology Initiative. For developers, the useful task is parsing root, expiration, type, and strike consistently.

OCC

Clearing context

The Options Clearing Corporation is central to listed options clearing.

OSI

Symbology initiative

The standardization effort behind the modern symbol structure.

Developer task

Parse fields

Root, expiration, C/P, and strike are what the parser needs.

How to use the terms safely

If a user asks for an OCC symbol parser, they usually want OSI-style field parsing. If a file says OSI, the output should still map to the same contract fields.

Avoid building separate code paths for the terminology. Build one parser that accepts padded and compact option symbols and returns normalized contract identity.

Last verified

This Q&A page was last reviewed on April 28, 2026. Date-sensitive market calendars, provider docs, and listed contracts can change, so production workflows should verify the live source before trading or publishing an automated answer.

Related questions

Should I call the field OCC symbol or OSI symbol?

Use the wording your users search for, but document the normalized fields clearly.

Does OSI include the strike?

Yes. The modern standardized symbol includes root, expiration, option type, and strike.

Can adjusted contracts still be tricky?

Yes. Corporate actions and adjusted deliverables can require extra contract metadata beyond basic symbol parsing.

Related pages