dev-master
9999999-dev
The Development Requires
by Shadi Akiki
0.0.2
0.0.2.0
The Development Requires
by Shadi Akiki
0.0.1
0.0.1.0
The Development Requires
by Shadi Akiki
Wallogit.com
2017 © Pedro Peláez
Black-Scholes option pricing in php, (*1)
Based on Black-Scholes in Multiple Languages and wikipedia formula, (*2)
composer require shadiakiki1986/blackscholes, (*3)
Call option price example from quora, (*4)
require_once 'vendor/autoload.php'; $strike = 470; $interest = 0.02; $timeToMaturity = 0.17; $underlyingPrice = 460; $volatility = 0.58; $bs = new \shadiakiki1986\BlackScholes( $underlyingPrice, $strike, $timeToMaturity, $interest, $volatility ); var_dump($bs->call());
will display 40.1047 (note that they have a mistake in their d1 function), (*5)
Alternatively, (*6)
$call = new \shadiakiki1986\BlackScholesStatic::calculate( 'c', $underlyingPrice, $strike, $timeToMaturity, $interest, $volatility ); var_dump($call);