Closed AlexCatarino closed 8 months ago
Under Reality Models: Pricing has three sections
var call = AddOptionContract(symbol)
call.IV = IV([call, put], ...) // use duck typing
call.Delta = D(...)
foreach (var removed in changes.RemovedSecurities)
DeregisterIndicator(removed.IV)
foreach (var added in changes.AddedSecurities)
added.IV = IV(added.Symbol, ...)
Under Securities > Requesting Data:
To override the default pricing model of the Option, set a pricing model.
and option.PriceModel = OptionPriceModels.BinomialCoxRossRubinstein()
.
Before Properties: Adds Price Modeling
Example:
Under Universes > Equity Option
Same for Index Option case.
In Get Price Model Data use indicators instead.
Not yet please
On Wed, Mar 6, 2024 at 5:28 PM Alexandre Catarino @.***> wrote:
In Get Price Model Data https://www.quantconnect.com/docs/v2/research-environment/datasets/equity-options#10-Get-Price-Model-Data use indicators instead.
— Reply to this email directly, view it on GitHub https://github.com/QuantConnect/Documentation/issues/1608#issuecomment-1981949572, or unsubscribe https://github.com/notifications/unsubscribe-auth/AD5F5DFYYO3PK3LNJBYLSBDYW6KAJAVCNFSM6AAAAABC2K6YL2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBRHE2DSNJXGI . You are receiving this because you are subscribed to this thread.Message ID: @.***>
-- Jared Broad Founder & CEO
www.quantconnect.com Phone-USA: +1 917 327 0556 Democratizing Finance, Empowering Individuals Facebook http://www.facebook.com/QuantConnect | Twitter https://twitter.com/#!/QuantConnect | LinkedIn http://www.linkedin.com/company/quantconnect | Skype: jaredbroad
Expected Behavior
Option indicators: https://github.com/QuantConnect/Lean/pull/7680 https://github.com/QuantConnect/Lean/pull/7704 etc... has it's own page since they are a special indicator type.
Actual Behavior
Undocumented.
Checklist
master
branch