Show More
@@ -13,7 +13,8 b' rc = client.MultiEngineClient()' | |||||
13 | # Initialize the common code on the engines |
|
13 | # Initialize the common code on the engines | |
14 | rc.run('mcpricer.py') |
|
14 | rc.run('mcpricer.py') | |
15 |
|
15 | |||
16 |
# Push the variables that won't change |
|
16 | # Push the variables that won't change | |
|
17 | #(stock print, interest rate, days and MC paths) | |||
17 | rc.push(dict(S=100.0, r=0.05, days=260, paths=10000)) |
|
18 | rc.push(dict(S=100.0, r=0.05, days=260, paths=10000)) | |
18 |
|
19 | |||
19 | task_string = """\ |
|
20 | task_string = """\ | |
@@ -23,8 +24,8 b' vp, ap, vc, ac = op.vanilla_put, op.asian_put, op.vanilla_call, op.asian_call' | |||||
23 | """ |
|
24 | """ | |
24 |
|
25 | |||
25 | # Create arrays of strike prices and volatilities |
|
26 | # Create arrays of strike prices and volatilities | |
26 |
K_vals = N. |
|
27 | K_vals = N.linspace(90.0,100.0,5) | |
27 |
sigma_vals = N. |
|
28 | sigma_vals = N.linspace(0.0, 0.2,5) | |
28 |
|
29 | |||
29 | # Submit tasks |
|
30 | # Submit tasks | |
30 | taskids = [] |
|
31 | taskids = [] |
General Comments 0
You need to be logged in to leave comments.
Login now