Skip to content

Commit 76c64b2

Browse files
committed
delete metadata cell in solutions
1 parent 1739697 commit 76c64b2

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

lectures/markov_asset.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1082,13 +1082,6 @@ call_option(apm, ζ, p_s)
10821082
Let's show the last two functions as a plot
10831083
10841084
```{code-cell} ipython3
1085-
---
1086-
mystnb:
1087-
figure:
1088-
caption: |
1089-
Consol and call option exercise two comparison
1090-
name: fig_ex2_prices
1091-
---
10921085
fig, ax = plt.subplots()
10931086
ax.plot(s, consol_price(apm, ζ), label='consol')
10941087
ax.plot(s, call_option(apm, ζ, p_s), label='call option')
@@ -1176,13 +1169,6 @@ def finite_horizon_call_option(ap, ζ, p_s, k):
11761169
Now let's compute the option values at `k=5` and `k=25`
11771170
11781171
```{code-cell} ipython3
1179-
---
1180-
mystnb:
1181-
figure:
1182-
caption: |
1183-
Finite horizon call option values
1184-
name: fig_ex3_finite
1185-
---
11861172
fig, ax = plt.subplots()
11871173
for k in [5, 25]:
11881174
w = finite_horizon_call_option(apm, ζ, p_s, k)

0 commit comments

Comments
 (0)