程序代写代做 C • Problem A (22 points total)

• Problem A (22 points total)
Consider the nonsynchronous trading model discussed. Let rt be the true return of a stock at time t. It is assumed to be independent and identically distributed with E(rt) = μ and V ar(rt) = 2. Let rto be the observed return. When there is no trade at time t, we have rto = 0. When there is a trade, then rto = rt +rt1 +···+rtkt where kt is the largest nonneg- ative integer such that no trade occurred in the periods tkt,tkt +1,··· ,t1. For each time period, the probability that the security is not traded is ⇡ = 0.3, which is independent from rt. Furthermore, whether there is a trade or not is independent from period to period.
(a) What is the probability that there is a trade at time t and t 4, but no trade in between? Why? (4 pts)
(b) What is the observed ro in terms of the true log returns rt, rt1, rt2, rt3, ··· when t3
there is a trade at time t3 and t5, but no trade in between? (4 pts)
(c)WhatisP(ro =r|ro =r )? (6pts) t t t1 t1
(d) Show in details that COV (ro, ro ) = ⇡2μ2. (8 pts) t t2
2

• Problem B (16 points total)
Let {Xt} denote the time series of interest. However, because measurement process is not perfect, we actually observe Yt = Xt + Wt. We assume that {Xt} and {Wt} are independent processes, and that {Wt} is a mean 0 white noise process with variance 1, and that {Xt} is weakly stationary. We call {Xt} the signal and {WT } the measurement noise. We call X2 /W2 the signal to noise ratio (SNR).
(1) Prove that the process Yt is weakly stationary. (7 pts)
(2) Prove that the larger the SNR, the closer the autocorrelation function of the observed process {Yt} is to the autocorrelation function of the signal {Xt}. (9 pts)
(hint: express the autocorrelation function of the process {Yt} as a function of X2 , W2 and the autocorrelation function of the process {Xt}.
3

In problem C, you should carry out the analysis in R, and summarize the results using figures, tables and detailed explanations. Do not simply turn in your R codes and R outputs as your report.
• Problem C (62 points total)
Pick a stock whose FIRST letter is the same as the FIRST letter of your FIRST name. The stock should have market capital greater than 1 billion. Obtain adjusted daily closing pricing of the stock. Use dates from=’2015-01-01’,to=’2019-12-31’. Compute daily log returns of the stock. Note that there should be 1341 returns (the first return is on 2015- 01-05). Use the first 1200 as training( the return up to Oct 9th, 2019) and the last 141 as the holdout set. If there doesn’t exist any autocorrelation in the data, choose another stock that satisfies the criteria.
1. Write a procedure using for loops to identify the best arima orders p and q of the training data(returns from 2015-01-05 to 2019-10-09) based on the AIC value. When running the for loops,set the maximum number of p and q to be both 5. Perform model fitting and model diagnosis on the model chosen. (10 pts)
2. Now fix the order of the arima model, and at each step, only parameter estimation changes. Use this model to predict one day ahead. Compare the predicted direction (namely if the prediction return is positive or negative) with the direction of the actual return. Were you right? For the next day re-estimate the parameters using returns from 2015-01-06 to 2019-10-10 and predict the next day’s direction. Repeat until the test data is exhausted. Report the probability of being correct (calculated as the percentage of times the model predicts the directions correctly). (10 pts)
3. Check if there exist significant ARCH e↵ect in the time series. If so, identity the best ARMA+GARCH model. Pay attention to the error distribution, choose between normal, t, and skewed t distributions. Perform model fitting and model diagnosis on the fitted model. (8 pts)
4. Suppose you are given a $100, 000 account. Starting from Oct. 9th, at the end of the trading day, you decide whether to long the stock based on the arima model prediction for Oct. 10th. If the prediction is positive, then you long(buy) using all your money at the adjusted closing price of Oct. 9th and close(meaning sell) at the end of Oct 10th using the corresponding adjusted closing price. Otherwise you do nothing. We neglect transaction costs here. For the next day, re-estimate the model and predict, and carry out the trade. What is the value of your portfolio at the end of the process? (8 pts)
5. Now, do the same thing as in the previous step, except that you long only portions of account according to your prediction. This time we use the ARMA+GARCH model identified in (3). When the predicted return is in between 0 and 0.1⇥t, you long using 50% of your money, when the predicted return is in between 0.1 ⇥ t and 0.2 ⇥ t, you long using 80% of your money, and when the predicted return is greater than 0.2 ⇥ t, you long using 100% of your money. t is the predicted volatility. You do this in a rolling fashion as previously. What is the value of your portfolio at the end of the process? (8 points)
6. Define and carry out one more trading strategy the best you can. The strategy needs to use the predicted returns and predicted volatilities from the fitted models . You can neglect the transaction cost. This part will be graded on the substantiality and complexity of the strategy. (18 pts)
4