Fill in Order Details

  • Submit paper details for free using our simple order form

Make Payment Securely

  • Add funds to your account. There are no upfront payments. The writer will only be paid once you have approved your paper

Writing Process

  • The best qualified expert writer is assigned to work on your order
  • Your paper is written to standard and delivered as per your instructions

Download your paper

  • Download the completed paper from your online account or your email
  • You can request a plagiarism and quality report along with your paper

Econometric, Option Valuation

Econometric, Option Valuation

Name

Institution

Date

Course

Mat lab code for Monte Carlo

%%%%%%%%%% Option parameters %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

S = 55; % Value of the underlying

K = 50; % Strike (exercise price)

r = 0.05; % Risk free interest rate

sigma = 0.25; % Volatility

T = 3; % Time to expiry

%%%%%%%%%% Monte-Carlo Method Parameters %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

randn(’state’,0) % Repeatable trials on/off

M=1e7; % Number of Monte-Carlo trials

%%%%%%%%%% Use final values to compute

final_vals=S*exp((r-0.5*sigma^2)*T + sigma*sqrt(T)*randn(M,1));

option_values=max(K-final_vals,0); % Evaluate the Put option options

present_vals=exp(-r*T)*option_values; % Discount under r-n assumption

int=1.96*std(present_vals)/sqrt(M); % Compute confidence intervals

put_value=mean(present_vals); % Take the average

display(put_value)

display([put_value-int put_value+int])

Matlab code for data generating FTSE 100

A s c r i p t to produce the p l o t s f o r the p r i c e s and GARCH( 1 , 1 ) o f %

% the FTSE100 , S&P500 , and NIKKEI225 i n d i c e s . %

% %

%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????%

% INPUTS: %

% % % This s c r i p t r e q u i r e s the Datastream Toolbox %

% %

% OUTPUTS: %

% % % Figure 1 ???? The thr e e i n d i c e s d a i l y adjus t ed c l o s i n g %

% pr i c e s f r om 1990 to today ( July 2012) % % Figure 2 ???? The d a i l y c ont inous l y compounded r e turns %

% o f a l l i n d i c e s from 1990 to today ( July 2012) ,% % ove r layed by the GARCH( 1 , 1 ) c o n d i t i o n a l %

% s tandard de v i a t i on . % % %

%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????% % %

%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????% % Chr i s t o s De l i v o r i a s ???? OR MSc Student %

% The Uni v e r s i t y o f Edinburgh % % August 2012 %

%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????%

% Clear e x i s t i n g data and f i g u r e s c l f ;

c l e a r a l l ;

c l o s e a l l ;

format sho r t ;

% Connect to Yahoo Finance and f e t c h data

Connect = yahoo ;

dataFTSE=f e t c h (Connect , ’^FTSE ’ , ’ Jan 1 1990 ’ , today , ’d ’ ) ;

dataN225=f e t c h (Connect , ’^N225 ’ , ’ Jan 1 1990 ’ , today , ’d ’ ) ;

dataGSPC=f e t c h (Connect , ’^GSPC’ , ’ Jan 1 1990 ’ , today , ’d ’ ) ;

c l o s e (Connect ) ;

% Ca l cul a t e d a i l y r e turns and GARCH SD f o r each index

dataFTSEret = [ 0 . 0 p r i c e 2 r e t (dataFTSE ( : , end ) ) ’ ] ;

retFTSE=f i n t s (dataFTSE ( : , 1 ) , dataFTSEret ’ , ’ retFTSE100 ’ , ’d ’ , . . .

’ retFTSE100 ’ ) ;

[ c o e f f 1 , e r r o r s 1 , LLF1 , innovat ions1 , sigmas1 ] = . . .

g a r c h f i t ( dataFTSEret ) ;

sigmaFTSE = f i n t s (dataFTSE ( : , 1 ) , sigmas1 ’ , ’ retFTSE100 ’ , . . .

’d ’ , ’ retFTSE100 ’ ) ;

dataN225ret = [ 0 . 0 p r i c e 2 r e t ( dataN225 ( : , end ) ) ’ ] ;

retN225=f i n t s ( dataN225 ( : , 1 ) , dataN225ret ’ , ’ retNIKKEI ’ , ’d ’ , . . .

’ retNIKKEI ’ ) ;

[ c o e f f 2 , e r r o r s 2 , LLF2 , innovat ions2 , sigmas2 ] = . . .

g a r c h f i t ( dataN225ret ) ;

sigmaN225 = f i n t s ( dataN225 ( : , 1 ) , sigmas2 ’ , ’ retNIKKEI ’ , . . .

v

’d ’ , ’ retNIKKEI ’ ) ;

dataGSPCret = [ 0 . 0 p r i c e 2 r e t (dataGSPC ( : , end ) ) ’ ] ;

retGSPC=f i n t s (dataGSPC( : , 1 ) , dataGSPCret ’ , ’ retSP500 ’ , ’d ’ , . . .

’ retSP500 ’ ) ;

[ c o e f f 3 , e r r o r s 3 , LLF3 , innovat ions3 , sigmas3 ] = . . .

g a r c h f i t ( dataGSPCret ) ;

sigmaGSPC = f i n t s (dataGSPC( : , 1 ) , sigmas3 ’ , ’ retSP500 ’ , . . .

’d ’ , ’ retSP500 ’ ) ;

% Create a f i n a n c i a l ins t rument f o r each index with d a i l y p r i c e s

tsFTSE=f i n t s (dataFTSE ( : , 1 ) ,dataFTSE ( : , end ) , . . .

’FTSE100 ’ , ’d ’ , ’FTSE100 ’ ) ;

tsN225=f i n t s ( dataN225 ( : , 1 ) , dataN225 ( : , end ) , . . .

’NiKKEI225 ’ , ’d ’ , ’NiKKEI225 ’ ) ;

tsGSPC=f i n t s (dataGSPC( : , 1 ) ,dataGSPC ( : , end ) , . . .

’ SP500 ’ , ’d ’ , ’ SP500 ’ ) ;

% Pl o t s the index p r i c e s

f i g u r e ( 1 ) ;

subplot 31 1;

pl o t ( tsFTSE) ;

x l a b e l ( ’Time ( date ) ’ ) ;

y l a b e l ( ’ Adjusted Close p r i c e ( $ ) ’ ) ;

subplot 31 2;

pl o t ( tsGSPC) ;

x l a b e l ( ’Time ( date ) ’ ) ;

y l a b e l ( ’ Adjusted Close p r i c e ( $ ) ’ ) ;

subplot 31 3;

pl o t ( tsN225 ) ;

x l a b e l ( ’Time ( date ) ’ ) ;

y l a b e l ( ’ Adjusted Close p r i c e ( $ ) ’ ) ;

yt = ge t ( gca , ’YTick ’ ) ;

s e t ( gca , ’YTickLabel ’ , s p r i n t f ( ’%.0 f | ’ , yt ) ) ;

% Plot the r e turns and GARCH

f i g u r e ( 2 ) ;

subplot 31 1; hold on ;

pl o t ( retFTSE) ; pl o t ( sigmaFTSE) ; hold o f f ;

subplot 31 2; hold on ;

pl o t ( retN225 ) ; pl o t ( sigmaN225 ) ; hold o f f ;

subplot 31 3; hold on ;

pl o t ( retGSPC) ; pl o t ( sigmaGSPC) ; hold o f f ;

Matlab code for FTSE 100

setdbprefs(‘DataReturnFormat’, ‘structure’)

connection = database(‘SDE_Data’, ”, ”);

cursor = exec(connection, ‘SELECT ALL Dates,Canada,France,Germany,Japan,UK,US,

Euribor3M FROM Simulation_Data ORDER BY Dates ASC’);

cursor = fetch(cursor);

close(cursor), close(connection)

SDE_Data = cursor.Data

SDE_Data =

Dates: [1359×1 double]

Canada: [1359×1 double]

France: [1359×1 double]

Germany: [1359×1 double]

Japan: [1359×1 double]

UK: [1359×1 double]

US: [1359×1 double]

Euribor3M: [1359×1 double]

fields = fieldnames(SDE_Data);

dates = SDE_Data.Dates;

countries = fields(2:end-1);

yields = SDE_Data.Euribor3M; % daily effective yields

yields = 360 * log(1 + yields); % continuous, annualized yields

for i = length(countries):-1:1

prices(:,i) = SDE_Data.(countries{i}); % daily closing prices

end

figure, plot(dates, ret2price(price2ret(prices))), datetick(‘x’)

xlabel(‘Date’), ylabel(‘Index Value’), title (‘Normalized Daily Index Closings’)

legend(countries, ‘Location’, ‘NorthWest’)

figure, plot(dates, 100 * yields)

datetick(‘x’), xlabel(‘Date’), ylabel(‘Annualized Yield (%)’)

title(‘Risk Free Rate (3-Month Euribor Continuously-Compounded)’)

Matlab code for estimating e-views

n = 200; k = 3; evec = randn(n,1);

xmat = [ones(n,1) randn(n,k)]; y = zeros(n,1); u = zeros(n,1);

beta = ones(k,1); beta(1,1) = 10.0; % constant term

for i=2:n; % generate a model with 1st order serial correlation

u(i,1) = 0.4*u(i-1,1) + evec(i,1);

y(i,1) = xmat(i,:)*beta + u(i,1);

end;

% truncate 1st 100 observations for startup

yt = y(101:n,1); xt = xmat(101:n,:);

n = n-100; % reset n to reflect truncation

Vnames = strvcat(‘y’,’cterm’,’x2′,’x3′);

result = ols(yt,xt); prt(result,Vnames); plt(result);

WHAT OUR CURRENT CUSTOMERS SAY

  • Google
  • Sitejabber
  • Trustpilot
Zahraa S
Zahraa S
Absolutely spot on. I have had the best experience with Elite Academic Research and all my work have scored highly. Thank you for your professionalism and using expert writers with vast and outstanding knowledge in their fields. I highly recommend any day and time.
Stuart L
Stuart L
Thanks for keeping me sane for getting everything out of the way, I’ve been stuck working more than full time and balancing the rest but I’m glad you’ve been ensuring my school work is taken care of. I'll recommend Elite Academic Research to anyone who seeks quality academic help, thank you so much!
Mindi D
Mindi D
Brilliant writers and awesome support team. You can tell by the depth of research and the quality of work delivered that the writers care deeply about delivering that perfect grade.
Samuel Y
Samuel Y
I really appreciate the work all your amazing writers do to ensure that my papers are always delivered on time and always of the highest quality. I was at a crossroads last semester and I almost dropped out of school because of the many issues that were bombarding but I am glad a friend referred me to you guys. You came up big for me and continue to do so. I just wish I knew about your services earlier.
Cindy L
Cindy L
You can't fault the paper quality and speed of delivery. I have been using these guys for the past 3 years and I not even once have they ever failed me. They deliver properly researched papers way ahead of time. Each time I think I have had the best their professional writers surprise me with even better quality work. Elite Academic Research is a true Gem among essay writing companies.
Got an A and plagiarism percent was less than 10%! Thanks!

ORDER NOW

CategoriesUncategorized

Consider Your Assignments Done

“All my friends and I are getting help from eliteacademicresearch. It’s every college student’s best kept secret!”

Jermaine Byrant
BSN

“I was apprehensive at first. But I must say it was a great experience and well worth the price. I got an A!”

Nicole Johnson
Finance & Economics

Our Top Experts

See Why Our Clients Hire Us Again And Again!


OVER

10.3k
Reviews

RATING
4.89/5
Average

YEARS
13
Mastery

Success Guarantee

When you order form the best, some of your greatest problems as a student are solved!

Reliable

Professional

Affordable

Quick

Using this writing service is legal and is not prohibited by any law, university or college policies. Services of Elite Academic Research are provided for research and study purposes only with the intent to help students improve their writing and academic experience. We do not condone or encourage cheating, academic dishonesty, or any form of plagiarism. Our original, plagiarism-free, zero-AI expert samples should only be used as references. It is your responsibility to cite any outside sources appropriately. This service will be useful for students looking for quick, reliable, and efficient online class-help on a variety of topics.