Hi,
At IB's web site the following formula for naked call margin calc is given:
Stock Options
Call Price + Maximum ((20% * Underlying Price - Out of the Money Amount), (10% * Underlying Price))
Is the 20% to calculate from the UnderlyingPrice or from (UnderlyingPrice - OTMAmount) ?
And: is my following calculation of OTM correct:
OTM = 0;
if (Call && (Strike > UnderlyingPrice)) OTM = Strike - UnderlyingPrice;
if (Put && (Strike < UnderlyingPrice)) OTM = UnderlyingPrice - Strike;
Thx
At IB's web site the following formula for naked call margin calc is given:
Stock Options
Call Price + Maximum ((20% * Underlying Price - Out of the Money Amount), (10% * Underlying Price))
Is the 20% to calculate from the UnderlyingPrice or from (UnderlyingPrice - OTMAmount) ?
And: is my following calculation of OTM correct:
OTM = 0;
if (Call && (Strike > UnderlyingPrice)) OTM = Strike - UnderlyingPrice;
if (Put && (Strike < UnderlyingPrice)) OTM = UnderlyingPrice - Strike;
Thx
