SlideShare a Scribd company logo
1 of 15
Financial Simulation

Memo
To:

Professor Gupta

From:

Dongyang Wang(661181660), Yulin Li(661181661), Xueyang Guan(661125198)

Date:

April 22, 2013

Re:

Final Report of the course project

Our goal is to find the best portfolio strategies which consist of a risk-free asset,
two specific US stocks, and various derivatives on the stocks. In this final report,
we have finished the following contents:
1. Construction of Several Strategies;
2. Profit Comparison, Greeks Analytics, Risk Analytics by VaR Model;
3. Conclusions
Part 1: Construction of Several Strategies
Strategy I: Only Bond

First, we choose only bond as our safest strategy. In this one, we will buy the one-year-bond
with our entire portfolio fund and hold it until the maturity. The return is shown in Figure 1.
In this strategy, the advantages are easy to construct and risk free. And the disadvantage is
low rate of return. From the fund we invested, we can only get 1% return back.
Figure 1

Return

Time(Day)

Strategy II: Only Stock

Second, we construct a strategy with only stock. This strategy is also quite popular among
investors. From the first day we will buy the stocks of Bank of America and JP Morgan and hold
it until one year. The advantages of this strategy are easy to construct and unlimited upside
profit. The disadvantage of this strategy is unlimited downside loss. The rate of return is shown
in Figure 2.

2
Figure 2

Strategy III: One Covered Call
In this strategy, we only construct the covered call for BAC. We buy the stock of BAC and call
on BAC and hold them to one year. The advantage of this one is we can get the premium first.
The disadvantage of this strategy is unlimited downside loss. The rate of return is shown in
Figure 3.
Figure 3

3
Strategy IV: Protective Put, Covered Call and Two Stock
We divide one year into two periods. The first one is 9 months. We buy both the stocks,
construct the protective put for JPM and construct the covered call for BAC. In the rest 3-monthperiod, we will use the money from options and sell stocks to buy bond. The rate of return of

thecovered call is in Figure 3. The rate of return of the protective put is shown in Figure 4. From
Strategy III to IV, we add the protective put. The advantages of this protective put are limited
downside loss and unlimited upside profit.The disadvantages of this protective put are high
premium when stock price goes up.

Figure 4

Strategy V: Protective Put, Covered Call and Two Stocks (4 transactions in a year)
The process is shown in Figure 5. We use our entire fund to invest the portfolio. Because the
shares of the stocks and options we use here are integer, there will be some residue of the
entire fund. We put the residue into bond investment of three months. We use the money in
portfolio to invest as we did in StrategyIV. We only hold the stocks for three months and buy the
options with maturity of 3 months. After three months, we sell all the stocks, options and bond.
We set n=floor (Total fund/portfolio price per share). By using n we can know how much we
should three months later. We do this process 4 times in a year.

4
Figure5

Part2: Profits of the Strategies, Greeks and Risk Analytics

Profit Comparison
The profits of these five strategies are shown below in Figure 6. We can see that the most
profitable three strategies are Strategy II, Strategy III, and Strategy IV. The best profit strategy is
single stock. The reason behind this is that we use the Geometric Brownie Motion to calibrate
the stock price. So the stock price in this model is mainly determined by the drift of the model.
Our drift here is positive. So any strategies combining with other options will produce a
premium, which are negative effects of the profits in the strategy.

5
Figure6

120,000
115,000
110,000
Mean

105,000

Lower bound
100,000

Upper bound

95,000
90,000
Strategy Strategy Strategy Strategy Strategy Strategy
1
2
3
4
4(2)
5

Greeks Analytics
After compare the profits results of the strategies, we will analyze the Greeks of the best three
strategies. Strategy II is only stock so we will compare the rest. The results are in Table 1. The
Greeks show that simple covered call is less sensitive than 9-month strategy. The reason behind
this is 9-month strategy contains CC(Covered Call) and PP (Protective Put). PP has unlimited
profit and CC has limited profit.
Table 1 Greeks of Strategy IIIand Strategy IV
StrategyIII (Simple covered call)
Vega=101.84;
Rho=27.77
Strategy IV (9-month)
Vega=319;
Rho=37.05

Risk Management by VaR Model
Figure 7 shows the VaR model of Strategy III (Simple covered call), VaR= 579,430

6
Figure 7

300

250

200

150

100

50

0
40

50

60

70

80

90

100

110

120

Figure 8 shows the VaR model of Strategy IV(9-month), VaR= 750,420
Figure 8

600

500

400

300

200

100

0

0

0.5

1

1.5

2

2.5

3

3.5
5

x 10

7
Part3: Conclusions

1. The profit depends on your model and its parameters, which model do you trust.
2. Complex strategy doesn’t mean better payoff.
3. Simple strategy is useful when we know the trend of stock in the future.
4. Choosing proper strike price can increase the payoff.
5. Even though some strategies give us high payoff, but we need to consider about the risk.
6. For 99% one year VaR, strategy 4 (9 month) has better performance.

8
Appendix:
1.Simple 9 month and 4-time 3 month
%simple 9 months
%parameters of the JPM stock and BAC stock
for i = 1:249
JPM_log(i)=log(JPM(i+1)/JPM(i));
BAC_log(i)=log(BAC(i+1)/BAC(i));
end
sigma_JPM=std(JPM_log)*sqrt(250)*1;
sigma_BAC=std(BAC_log)*sqrt(250)*1;
d_sigma=sqrt(sigma_JPM^2+sigma_BAC^2)*0.01;
miu_JPM=sum(JPM_log)+sigma_JPM^2/2;
miu_BAC=sum(BAC_log)+sigma_BAC^2/2;
P=corrcoef(JPM_log,BAC_log);
p=P(1,2);
%Geometric Brownian Montion
Y1=randn(1000);
Y2=randn(1000);
Y3=randn(1000);
X1=sqrt(1-abs(p))*Y1+sqrt(abs(p))*Y3;
X2=sqrt(1-abs(p))*Y2+sqrt(abs(p))*Y3;
%Calibrate the model
t=1/251;
JPMnew(1:1000,1)=46.64;
JPMnewmiu(1:1000,1)=46.64;
JPMNEW(1)=46.64;
JPMNEW0(1)=46.64;
JPMNEW1(1)=46.64;
JPMNEW2(1)=46.64;
JPMNEW3(1)=46.64;
JPMNEW4(1)=46.64;
BACnew(1:1000,1)=11.44;
BACnewmiu(1:1000,1)=11.44;
BACNEW(1)=11.44;
BACNEW0(1)=11.44;
BACNEW1(1)=11.44;
BACNEW2(1)=11.44;
BACNEW3(1)=11.44;
BACNEW4(1)=11.44;
%different rate
r=monthly_rate( monthrate,1/12);
r1=monthly_rate( monthrate,3/12);
r2=monthly_rate( monthrate,9/12);
r3=monthly_rate( monthrate,12/12);
dr=0.01*monthly_rate( monthrate,12/12)

9
%Simulation:
for i =1:1000
for k = 1:250
JPMnew(i,k+1)=JPMnew(i,k)*exp((r3sigma_JPM^2/2)*t+sigma_JPM*sqrt(t)*X1(i,k));
BACnew(i,k+1)=BACnew(i,k)*exp((r3sigma_BAC^2/2)*t+sigma_BAC*sqrt(t)*X2(i,k));
JPMnewmiu(i,k+1)=JPMnewmiu(i,k)*exp((miu_JPMsigma_JPM^2/2)*t+sigma_JPM*sqrt(t)*X1(i,k));
BACnewmiu(i,k+1)=BACnewmiu(i,k)*exp((miu_BACsigma_BAC^2/2)*t+sigma_BAC*sqrt(t)*X2(i,k));
end
BACNEW(i+1)=BACNEW(1)*exp((r-sigma_BAC^2/2)*1/12+sigma_BAC*sqrt(1/12)*X1(i));
c(i)=exp(-r*1/12)*max(BACNEW(i)-8,0);
p(i)=exp(-r*1/12)*max(8-BACNEW(i),0);
BACNEW0(i+1)=BACNEW0(1)*exp((rsigma_BAC^2/2)*1/12+sigma_BAC*sqrt(1/12)*X1(i));
c0(i)=exp(-r*1/12)*max(BACNEW0(i)-14,0);
p0(i)=exp(-r*1/12)*max(14-BACNEW0(i),0);
BACNEW1(i+1)=BACNEW1(1)*exp((r1sigma_BAC^2/2)*3/12+sigma_BAC*sqrt(3/12)*X1(i));
c1(1,i)=exp(-r1*3/12)*max(BACNEW1(i)-12,0);
p1(i)=exp(-r1*3/12)*max(9-BACNEW1(i),0);
BACNEW2(i+1)=BACNEW2(1)*exp((r1sigma_BAC^2/2)*3/12+sigma_BAC*sqrt(3/12)*X1(i));
c2(i)=exp(-r1*3/12)*max(BACNEW2(i)-13,0);
p2(i)=exp(-r1*3/12)*max(13-BACNEW2(i),0);
%for 3months loop
BACNEW21(i+1)=BACnew(i,63)*exp((r1sigma_BAC^2/2)*3/12+sigma_BAC*sqrt(3/12)*X1(i));
c1(2,i)=exp(-r1*3/12)*max(BACNEW21(i)-12,0);
BACNEW22(i+1)=BACnew(i,126)*exp((r1sigma_BAC^2/2)*3/12+sigma_BAC*sqrt(3/12)*X1(i));
c1(3,i)=exp(-r1*3/12)*max(BACNEW22(i)-12,0);
BACNEW23(i+1)=BACnew(i,189)*exp((r1sigma_BAC^2/2)*3/12+sigma_BAC*sqrt(3/12)*X1(i));
c1(4,i)=exp(-r1*3/12)*max(BACNEW23(i)-12,0);

BACNEW3(i+1)=BACNEW3(1)*exp((r2sigma_BAC^2/2)*9/12+sigma_BAC*sqrt(9/12)*X1(i));
c3(i)=exp(-r2*9/12)*max(BACNEW3(i)-7,0);
p3(i)=exp(-r2*9/12)*max(7-BACNEW3(i),0);
BACNEW4(i+1)=BACNEW4(1)*exp((r2sigma_BAC^2/2)*9/12+sigma_BAC*sqrt(9/12)*X1(i));
c4(i)=exp(-r2*9/12)*max(BACNEW4(i)-12,0);
p4(i)=exp(-r2*9/12)*max(12-BACNEW4(i),0);%99 model

10
JPMNEW(i+1)=JPMNEW(1)*exp((r-sigma_JPM^2/2)*1/12+sigma_JPM*sqrt(1/12)*X1(i));
cc(i)=exp(-r*1/12)*max(JPMNEW(i)-35,0);
pp(i)=exp(-r*1/12)*max(35-JPMNEW(i),0);
JPMNEW0(i+1)=JPMNEW0(1)*exp((rsigma_JPM^2/2)*1/12+sigma_JPM*sqrt(1/12)*X1(i));
cc0(i)=exp(-r*1/12)*max(JPMNEW0(i)-50,0);
pp0(i)=exp(-r*1/12)*max(50-JPMNEW0(i),0);
JPMNEW1(i+1)=JPMNEW1(1)*exp((r1sigma_JPM^2/2)*3/12+sigma_JPM*sqrt(3/12)*X1(i));
cc1(i)=exp(-r1*3/12)*max(JPMNEW1(i)-35,0);
pp1(1,i)=exp(-r1*3/12)*max(35-JPMNEW1(i),0);
%for 3months loop
JPMNEW11(i+1)=JPMnew(i,63)*exp((r1sigma_JPM^2/2)*3/12+sigma_JPM*sqrt(3/12)*X1(i));
pp1(2,i)=exp(-r1*3/12)*max(35-JPMNEW11(i),0);
JPMNEW12(i+1)=JPMnew(i,126)*exp((r1sigma_JPM^2/2)*3/12+sigma_JPM*sqrt(3/12)*X1(i));
pp1(3,i)=exp(-r1*3/12)*max(35-JPMNEW12(i),0);
JPMNEW13(i+1)=JPMnew(i,189)*exp((r1sigma_JPM^2/2)*3/12+sigma_JPM*sqrt(3/12)*X1(i));
pp1(4,i)=exp(-r1*3/12)*max(35-JPMNEW13(i),0);

JPMNEW2(i+1)=JPMNEW2(1)*exp((r1sigma_JPM^2/2)*3/12+sigma_JPM*sqrt(3/12)*X1(i));
cc2(i)=exp(-r1*3/12)*max(JPMNEW2(i)-50,0);
pp2(i)=exp(-r1*3/12)*max(50-JPMNEW2(i),0);
JPMNEW3(i+1)=JPMNEW3(1)*exp((r2sigma_JPM^2/2)*9/12+sigma_JPM*sqrt(9/12)*X1(i));
cc3(i)=exp(-r2*9/12)*max(JPMNEW3(i)-35,0);%99model
pp3(i)=exp(-r2*9/12)*max(35-JPMNEW3(i),0);
JPMNEW4(i+1)=JPMNEW4(1)*exp((r2sigma_JPM^2/2)*9/12+sigma_JPM*sqrt(9/12)*X1(i));
cc4(i)=exp(-r2*9/12)*max(JPMNEW4(i)-50,0);
pp4(i)=exp(-r2*9/12)*max(50-JPMNEW4(i),0);
payoff9(i)=(-max(BACnewmiu(i,189)-12,0)+max(35JPMnewmiu(i,189),0)+JPMnewmiu(i,189)+BACnewmiu(i,189));%9 month
payoff99(i)=(max(12-BACnewmiu(i,189),0)-max(JPMnewmiu(i,189)35,0)+JPMnewmiu(i,189)+BACnewmiu(i,189));%9 month
payoff3(1,i)=(-max(BACnewmiu(i,63)-12,0)+max(35JPMnewmiu(i,63),0)+JPMnewmiu(i,63)+BACnewmiu(i,63));%3.1 month

11
payoff3(2,i)=(-max(BACnewmiu(i,126)-12,0)+max(35JPMnewmiu(i,126),0)+JPMnewmiu(i,126)+BACnewmiu(i,126));%3.2 month
payoff3(3,i)=(-max(BACnewmiu(i,189)-12,0)+max(35JPMnewmiu(i,189),0)+JPMnewmiu(i,189)+BACnewmiu(i,189));%3.3 month
payoff3(4,i)=(-max(BACnewmiu(i,251)-12,0)+max(35JPMnewmiu(i,251),0)+JPMnewmiu(i,251)+BACnewmiu(i,251));%3.4 month
a(i,1)=100000;
n(i,1)=17;
JPM3(i,1:4)=[46.64;JPMnewmiu(i,63);JPMnewmiu(i,126);JPMnewmiu(i,189)];
BAC3(i,1:4)=[11.44;BACnewmiu(i,63);BACnewmiu(i,126);BACnewmiu(i,189)];
for j=1:3
Bond(i,j) =(a(i,j)-n(i,j)*100*(JPM3(i,j)+BAC3(i,j)c1(j,i)+pp1(j,i)))*exp(r1*3/12);
a(i,j+1)=n(i,j)*payoff3(j,i)*100+Bond(i,j);
Portfolio(i,j+1)=JPM3(i,j+1)+BAC3(i,j+1)-c1(j+1,i)+pp1(j+1,i);
n(i,j+1)=floor(a(i,j+1)/(100*Portfolio(i,j+1)));
end
payoff3new(i)=n(i,3)*payoff3(4,i)*100+Bond(i,3);
r33(i)=monthly_rate( monthrate,12/12);
bondsimple(i)=exp(r33(i)*1);
end
C1(1)=mean(c1(1,1:1000)); % K=9,
C1(2)=mean(c1(2,1:1000)) ;% K=9,
C1(3)=mean(c1(3,1:1000)) ;% K=9,
C1(4)=mean(c1(4,1:1000)) ;% K=9,
C3=mean(c3); % K=7, T=9/12
P3=mean(p3) ;% K=7, T=9/12
C4=mean(c4); % K=12, T=9/12
P4=mean(p4);% K=12, T=9/12

T=3/12
T=3/12
T=3/12
T=3/12

PP1(1)=mean(pp1(1,1:1000)); % K=50, T=9/12
PP1(2)=mean(pp1(2,1:1000));
PP1(3)=mean(pp1(3,1:1000));
PP1(4)=mean(pp1(4,1:1000));
CC3=mean(cc3); % K=35, T=9/12
PP3=mean(pp3); % K=35, T=9/12
CC4=mean(cc4) ;% K=50, T=9/12
PP4=mean(pp4); % K=50, T=9/12
Payoff9=mean(payoff9)
payoff9sort=sort(payoff9);
VaR=payoff9sort(10);
VaRR=(VaR*1700+(100000-1700*(46.64+11.44-C4+PP3))*exp(r2*9/12))*exp(r1*3/12)
std9=std(payoff9);
Payoff9real=(Payoff9*1700+(100000-1700*(46.64+11.44C4+PP3))*exp(r2*9/12))*exp(r1*3/12)
%CI for payoff 9 month short call for BAC long put for JPM

12
CI9=[((Payoff9-1.96*std9/sqrt(1000))*exp(r1*3/12)*1700+(1000001700*(46.64+11.44C4+PP3))*exp(r3*9/12))*exp(r1*3/12),((Payoff9+1.96*std9/sqrt(1000))*exp(r1*3/
12)*1700+(100000-1700*(46.64+11.44-C4+PP3))*exp(r3*9/12))*exp(r1*3/12)]
% payoff 9 month short call for JPM long put for BAC
Payoff99=mean(payoff99);
std99=std(payoff99);
Payoff99real=(Payoff99*1700+(100000-1700*(46.64+11.44+P4CC3))*exp(r2*9/12))*exp(r1*3/12);
CI99=[((Payoff99-1.96*std99/sqrt(1000))*exp(r1*3/12)*1700+(1000001700*(46.64+11.44CC3+P4))*exp(r3*9/12))*exp(r1*3/12),((Payoff99+1.96*std99/sqrt(1000))*exp(r1*
3/12)*1700+(100000-1700*(46.64+11.44-CC3+P4))*exp(r3*9/12))*exp(r1*3/12)];
%3 months
std3=std(payoff3new);
Payoff3real=mean(payoff3new);
CI3=[Payoff3real-1.96*std3/sqrt(1000),Payoff3real+1.96*std3/sqrt(1000)];
%Bond
Bondsimple=mean(bondsimple);
stdb=std(bondsimple);
CIb=[Bondsimple-1.96*stdb/sqrt(1000),Bondsimple+1.96*stdb/sqrt(1000)];

2. 12-month Covered Call for BAC
% 12-month Covered Call BAC
BACnew(1:1000,1)=11.44;
BACnewmiu(1:1000,1)=11.44;
r3=monthly_rate( monthrate,12/12)*1.01
%parameters of the JPM stock and BAC stock
for i = 1:249
JPM_log(i)=log(JPM(i+1)/JPM(i));
BAC_log(i)=log(BAC(i+1)/BAC(i));
end
sigma_JPM=std(JPM_log)*sqrt(250);
sigma_BAC=std(BAC_log)*sqrt(250);
miu_JPM=sum(JPM_log)+sigma_JPM^2/2;
miu_BAC=sum(BAC_log)+sigma_BAC^2/2;
P=corrcoef(JPM_log,BAC_log);
p=P(1,2);
%Geometric Brownian Montion
Y1=randn(1000);
Y2=randn(1000);
Y3=randn(1000);
X1=sqrt(1-abs(p))*Y1+sqrt(abs(p))*Y3;
X2=sqrt(1-abs(p))*Y2+sqrt(abs(p))*Y3;
for i =1:1000
for k = 1:250

13
BACnew(i,k+1)=BACnew(i,k)*exp((r3sigma_BAC^2/2)*t+sigma_BAC*sqrt(t)*X2(i,k));
BACnewmiu(i,k+1)=BACnewmiu(i,k)*exp((miu_BACsigma_BAC^2/2)*t+sigma_BAC*sqrt(t)*X2(i,k));
end
c(i)=exp(-r3*1)*max(BACnew(i,251)-12,0);
cprofit(i)=max(BACnewmiu(i,251)-12,0);
n=floor(1000/(11.44-mean(c)));
bond(i)=(100000-n*100*(11.44-c(i)))*exp(r3*1);
payoff(i)=bond(i)+n*100*(BACnewmiu(i,251)-cprofit(i));
end
C=mean(c);
Cprofit=mean(cprofit);
S1=mean(BACnew(1:1000,251));
S2=mean(BACnewmiu(1:1000,251));
Bond=(100000-n*100*(11.44-C))*exp(r3*1)
Payoff=mean(payoff)
stdp=std(payoff)
CI=[Payoff-1.96*stdp/sqrt(1000),Payoff+1.96*stdp/sqrt(1000),]
payoffsort=sort(payoff);
VaR=payoffsort(10)

3. Simple stock for BAC and JPM
% simple stock
BACnew(1:1000,1)=11.44;
BACnewmiu(1:1000,1)=11.44;
JPMnew(1:1000,1)=46.64;
JPMnewmiu(1:1000,1)=46.64;
r3=monthly_rate( monthrate,12/12);
%parameters of the JPM stock and BAC stock
for i = 1:249
JPM_log(i)=log(JPM(i+1)/JPM(i));
BAC_log(i)=log(BAC(i+1)/BAC(i));
end
sigma_JPM=std(JPM_log)*sqrt(250);
sigma_BAC=std(BAC_log)*sqrt(250);
miu_JPM=sum(JPM_log)+sigma_JPM^2/2;
miu_BAC=sum(BAC_log)+sigma_BAC^2/2;
P=corrcoef(JPM_log,BAC_log);
p=P(1,2);
%Geometric Brownian Montion
Y1=randn(1000);
Y2=randn(1000);
Y3=randn(1000);
X1=sqrt(1-abs(p))*Y1+sqrt(abs(p))*Y3;
X2=sqrt(1-abs(p))*Y2+sqrt(abs(p))*Y3;
for i =1:1000

14
for k = 1:250
BACnewmiu(i,k+1)=BACnewmiu(i,k)*exp((miu_BACsigma_BAC^2/2)*t+sigma_BAC*sqrt(t)*X2(i,k));
JPMnewmiu(i,k+1)=JPMnewmiu(i,k)*exp((miu_JPMsigma_BAC^2/2)*t+sigma_JPM*sqrt(t)*X2(i,k));
end
end
stdbac=std(BACnewmiu(1:1000,251));
stdjpm=std(JPMnewmiu(1:1000,251));
stdnew=sqrt(stdbac^2+stdjpm^2);
BACnewmiumean=mean(BACnewmiu(1:1000,251))
JPMnewmiumean=mean(JPMnewmiu(1:1000,251))
PAYOFF=1721.8*(JPMnewmiumean+BACnewmiumean)
CI=[PAYOFF-1.96*1000*stdnew/sqrt(1000),PAYOFF+1.96*1000*stdnew/sqrt(1000)]

15

More Related Content

Similar to Financial Simulation Project

Summer training @ jainam shares consultancy ltd
Summer training @ jainam shares consultancy ltdSummer training @ jainam shares consultancy ltd
Summer training @ jainam shares consultancy ltdMohit Jariwala
 
CS Liquid Alternative Beta Performance Review 2013
CS Liquid Alternative Beta Performance Review 2013CS Liquid Alternative Beta Performance Review 2013
CS Liquid Alternative Beta Performance Review 2013Brian Shapiro
 
Midcap Category – riskier than largecaps but outperform over long run
Midcap Category – riskier than largecaps but outperform over long runMidcap Category – riskier than largecaps but outperform over long run
Midcap Category – riskier than largecaps but outperform over long runDhuraivel Gunasekaran
 
Midcap category – Riskier than largecaps but outperform over long run
Midcap category – Riskier than largecaps but outperform over long runMidcap category – Riskier than largecaps but outperform over long run
Midcap category – Riskier than largecaps but outperform over long runDhuraivel Gunasekaran
 
Stock repair strategy
Stock repair strategyStock repair strategy
Stock repair strategy?? ?
 
Parametric perspectives-winter-2010 (1)
Parametric perspectives-winter-2010 (1)Parametric perspectives-winter-2010 (1)
Parametric perspectives-winter-2010 (1)Kola Wade
 
HDFC sec note mf category analysis - arbitrage funds - june 2015
HDFC sec note   mf category analysis - arbitrage funds - june 2015HDFC sec note   mf category analysis - arbitrage funds - june 2015
HDFC sec note mf category analysis - arbitrage funds - june 2015Dhuraivel Gunasekaran
 
JP Morgan Prime Brokerage 2013 Hedge Fund Terms Analysis
JP Morgan Prime Brokerage 2013 Hedge Fund Terms AnalysisJP Morgan Prime Brokerage 2013 Hedge Fund Terms Analysis
JP Morgan Prime Brokerage 2013 Hedge Fund Terms AnalysisBrian Shapiro
 
Increasing Personal Retirement
Increasing Personal RetirementIncreasing Personal Retirement
Increasing Personal RetirementLindsay Brasington
 
Applications for financial futures
Applications for financial futuresApplications for financial futures
Applications for financial futuresFuturum2
 
Project Economics in New Product Development
Project Economics in New Product DevelopmentProject Economics in New Product Development
Project Economics in New Product DevelopmentPlaybook
 
Chapter 9 on Valuation and Reporting in Organization
Chapter 9 on Valuation and Reporting in OrganizationChapter 9 on Valuation and Reporting in Organization
Chapter 9 on Valuation and Reporting in OrganizationFirdaus Fitri Zainal Abidin
 
Dynamic asset allocation strategy
Dynamic asset allocation strategyDynamic asset allocation strategy
Dynamic asset allocation strategyRifat Ahsan
 
Mf0010 security analysis and portfolio management
Mf0010  security analysis and portfolio managementMf0010  security analysis and portfolio management
Mf0010 security analysis and portfolio managementsmumbahelp
 

Similar to Financial Simulation Project (20)

Summer training @ jainam shares consultancy ltd
Summer training @ jainam shares consultancy ltdSummer training @ jainam shares consultancy ltd
Summer training @ jainam shares consultancy ltd
 
Inaugural Speech
Inaugural SpeechInaugural Speech
Inaugural Speech
 
CS Liquid Alternative Beta Performance Review 2013
CS Liquid Alternative Beta Performance Review 2013CS Liquid Alternative Beta Performance Review 2013
CS Liquid Alternative Beta Performance Review 2013
 
Statistical Arbitrage
Statistical Arbitrage Statistical Arbitrage
Statistical Arbitrage
 
Midcap Category – riskier than largecaps but outperform over long run
Midcap Category – riskier than largecaps but outperform over long runMidcap Category – riskier than largecaps but outperform over long run
Midcap Category – riskier than largecaps but outperform over long run
 
Midcap category – Riskier than largecaps but outperform over long run
Midcap category – Riskier than largecaps but outperform over long runMidcap category – Riskier than largecaps but outperform over long run
Midcap category – Riskier than largecaps but outperform over long run
 
Stock repair strategy
Stock repair strategyStock repair strategy
Stock repair strategy
 
Parametric perspectives-winter-2010 (1)
Parametric perspectives-winter-2010 (1)Parametric perspectives-winter-2010 (1)
Parametric perspectives-winter-2010 (1)
 
Gcmp 2010
Gcmp 2010Gcmp 2010
Gcmp 2010
 
HDFC sec note mf category analysis - arbitrage funds - june 2015
HDFC sec note   mf category analysis - arbitrage funds - june 2015HDFC sec note   mf category analysis - arbitrage funds - june 2015
HDFC sec note mf category analysis - arbitrage funds - june 2015
 
JP Morgan Prime Brokerage 2013 Hedge Fund Terms Analysis
JP Morgan Prime Brokerage 2013 Hedge Fund Terms AnalysisJP Morgan Prime Brokerage 2013 Hedge Fund Terms Analysis
JP Morgan Prime Brokerage 2013 Hedge Fund Terms Analysis
 
Increasing Personal Retirement
Increasing Personal RetirementIncreasing Personal Retirement
Increasing Personal Retirement
 
Wharton Final Report
Wharton Final ReportWharton Final Report
Wharton Final Report
 
Applications for financial futures
Applications for financial futuresApplications for financial futures
Applications for financial futures
 
Project Economics in New Product Development
Project Economics in New Product DevelopmentProject Economics in New Product Development
Project Economics in New Product Development
 
Chapter 9 on Valuation and Reporting in Organization
Chapter 9 on Valuation and Reporting in OrganizationChapter 9 on Valuation and Reporting in Organization
Chapter 9 on Valuation and Reporting in Organization
 
Dynamic asset allocation strategy
Dynamic asset allocation strategyDynamic asset allocation strategy
Dynamic asset allocation strategy
 
Mf0010 security analysis and portfolio management
Mf0010  security analysis and portfolio managementMf0010  security analysis and portfolio management
Mf0010 security analysis and portfolio management
 
Mutual fund
Mutual fundMutual fund
Mutual fund
 
Chapter 7
Chapter 7Chapter 7
Chapter 7
 

Recently uploaded

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 

Recently uploaded (20)

Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 

Financial Simulation Project