コード例 #1
0
def bs_step(current, strike, maturity, rate, volatility):
    put, call = finance.black_scholes(current, strike, maturity, rate,
                                      volatility)
    call = call.optimized()
    call.evaluate()
コード例 #2
0
ファイル: test_finance.py プロジェクト: EasonLiao/spartan
 def test_put(self):
   put, call = finance.black_scholes(self.current, self.strike, maturity, rate, volatility)
   #util.log_info(put)
   #util.log_info(optimize(put))
   util.log_info(put.glom())
コード例 #3
0
ファイル: test_finance.py プロジェクト: EasonLiao/spartan
 def test_print_graph(self):
   put, call = finance.black_scholes(self.current, self.strike, maturity, rate, volatility)
コード例 #4
0
ファイル: test_finance.py プロジェクト: EasonLiao/spartan
 def test_call(self):
   put, call = finance.black_scholes(self.current, self.strike, maturity, rate, volatility)
   #util.log_info(call)
   util.log_info(call.glom())
コード例 #5
0
 def test_print_graph(self):
     put, call = finance.black_scholes(self.current, self.strike, maturity,
                                       rate, volatility)
コード例 #6
0
 def test_put(self):
     put, call = finance.black_scholes(self.current, self.strike, maturity,
                                       rate, volatility)
     #util.log_info(put)
     #util.log_info(optimize(put))
     util.log_info(put.glom())
コード例 #7
0
 def test_call(self):
     put, call = finance.black_scholes(self.current, self.strike, maturity,
                                       rate, volatility)
     #util.log_info(call)
     util.log_info(call.glom())
コード例 #8
0
def bs_step(current, strike, maturity, rate, volatility):
  put, call = finance.black_scholes(current, strike, maturity, rate, volatility)
  call = call.optimized()
  call.evaluate()