Python Forum
Finance: Black Scholes Model not working
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Finance: Black Scholes Model not working
#1
Hi,

I'm trying to learn Python and is only my second day learning the code. At the moment, I'm trying to use the Mibian library to do some simple options pricing.

I've written this simple code to do some calculations:

import mibian

def BSModel():
    c = mibian.BS([40.75, 32, 1, 127, 30], putPrice=0.95)
    print("Implied vol is ",c.impliedVolatility)
    print("Delta is ",c.putDelta)
    print("Theta is ",c.putTheta)
    print("Vega is ",c.vega)
    print("Gamma is ",c.gamma)
The results from the above are as below:

Output:
BSModel() Implied vol is 45.654296875 Delta is None Theta is None Vega is None Gamma is None
Strangely, it's only showing the calculation for the implied volatility but the rest is returning none. I've tried changing the input data but it's doing the same.

I feel like I'm made some newbie error somewhere. Appreciate any feedback. Thanks.
Reply


Messages In This Thread
Finance: Black Scholes Model not working - by pwt - May-27-2020, 05:27 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  model.fit and model.predict errors hatflyer 6 1,347 Nov-10-2023, 01:39 AM
Last Post: hatflyer
  Python help for yahoo finance! Zshanar 7 3,388 Jul-31-2022, 05:27 PM
Last Post: paulyan
  remove all color but red, then replace it with black kucingkembar 14 7,165 Dec-29-2021, 07:50 PM
Last Post: deanhystad
  FileNotFoundError: [Errno 2] No such file or directory: 'model/doc2vec.model/Articles Anldra12 10 5,836 Jun-11-2021, 04:48 PM
Last Post: snippsat
  Checkbuttons always come up as black boxes regardless of the state kenwatts275 5 4,748 Jul-07-2020, 08:00 PM
Last Post: kenwatts275
  How to use nb-black python cde formatter ErnestTBass 3 6,857 Jun-04-2020, 03:51 PM
Last Post: ErnestTBass
  after using openpyxl to add colors to script, black shows up white online in excel Soundtechscott 1 3,701 Jun-08-2019, 10:33 PM
Last Post: Soundtechscott
  Because the emoji appears black and white at the exit ? nerd 3 5,627 Jan-28-2019, 11:34 PM
Last Post: nerd
  Real time pricing Yahoo finance nathanz 1 2,529 Aug-09-2018, 01:02 PM
Last Post: metulburr
  Python interface only black and white........ Wilson 3 6,180 Jul-15-2017, 01:20 PM
Last Post: sparkz_alot

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020