As is well known, an option vertical spread (for example a shortPut + a longPut)
does reduce the margin requirement vastly, compared to a single shortPut.
Let's say you have such an option spread contract open. For example this one:
The net margin requirement for this spread contract is:
(shortPut.Strike - longPut.Strike) - max(0, shortPut.Premium - longPut.Premium)
= (105 - 90) - max(0, 9.60 - 3.60) = $9 multiplied by 100 = $900.
The net assignment requirement is of course the money required to buy the stock,
in this case (shortPut.Strike - shortPut.Premium) * 100 = (105 - 9.60) * 100 = $9540.00
But what happens if your shortPut gets assigned, but you don't have enough funds in your margin account to fulfill your obligation from the shortPut contract to buy the stock?
After all the risk was, thanks to the spread construct, only $900, wasn't it?...
does reduce the margin requirement vastly, compared to a single shortPut.
Let's say you have such an option spread contract open. For example this one:
Code:
Spot=105 DTE=30
shortPut: Strike=105 Premium=9.60 (IV=80.1146)
longPut: Strike=90 Premium=3.60 (IV=83.0780)
(shortPut.Strike - longPut.Strike) - max(0, shortPut.Premium - longPut.Premium)
= (105 - 90) - max(0, 9.60 - 3.60) = $9 multiplied by 100 = $900.
The net assignment requirement is of course the money required to buy the stock,
in this case (shortPut.Strike - shortPut.Premium) * 100 = (105 - 9.60) * 100 = $9540.00
But what happens if your shortPut gets assigned, but you don't have enough funds in your margin account to fulfill your obligation from the shortPut contract to buy the stock?

After all the risk was, thanks to the spread construct, only $900, wasn't it?...

Last edited:
