Simulating stock price paths in matlab using monte carlo
1 view (last 30 days)
Show older comments
I am trying to simulate stock price paths and I am using the following code where my initial stock price S0 = 5.However I need to have price paths which extend up to 60 or 70. The following code only provides me price paths upto S = 10. Is there a method to generate price paths starting from 5 to a limit (60 or 70)?
S = ones(M, N+1); #S0 = 5
R = exp((r - sigma^2/2)*dt+sigma*sqrt(dt)*randn(N,M));
SS = cumprod([S0*ones(1,M); R]);
S = SS';
0 Comments
Answers (0)
See Also
Categories
Find more on Financial Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!