国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CMSE11475、代做Java/Python編程

時間:2024-04-02  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Financial Machine Learning (CMSE11**5)
Group Project Assignment
2023/2024
Content
Content................................................................................................................................................................................................. 1
Project Description......................................................................................................................................................................... 2
Individual Project: ......................................................................................................................................................................... 2
Project Deadline and Submission:........................................................................................................................................... 2
Project topic ................................................................................................................................................................................... 2
Project Hints ................................................................................................................................................................................... 2
Suggested Topics ............................................................................................................................................................................ 3
Forecasting Limit Order Book ............................................................................................................................................... 3
Forecasting Stock Volatility.................................................................................................................................................... 5
Forecasting High Frequency Cryptocurrency Return.................................................................................................. 7
Project Description
The project aims to practice the use of state-of-art machine learning models to analyse financial data and
solve financial problems.
Individual Project:
The project is individual project. No group is required. Students shall select their own topic with data to
complete their own research question alone. Cooperation and discussion with each other in the learning
process is encouraged but the project shall be completed by students’ own work, not a grouped work.
Project Deadline and Submission:
Individual projects run from 15
th January 2024 (week 1) to 29th March 2024 (week 10).
The deadline of submission is 14:00, Thursday, 4
th April 2024.
The submision of the project includes the project report and all implementation codes (do NOT submit any
data). The code shall work on the originally provided datasets. The report and the codes shall be ZIPPED to
one package for submission.
The report MUST follow the given template. All sections are required. The code MUST have complete and
detailed comments for every major logical section.
Project topic
Each student should individually choose a topic from the following suggested topics (with provided data) as
your own project. You are encouraged to revise/improve the project topic to make it more practical,
challenging, and suitable for your own research question. It’s fine if many students select the same suggested
topics as their projects as long as the codes and project reports are significantly distinctive.
The aim of this project is to apply at least THREE out of five techniques illustrated in the course (Deep Neural
Network; XGBoost; Cross-validation; Ensemble Model; Interpretability) to solve a financial problem.
Project Hints
All suggested topics are based on the computer lab examples with some changes and extensions. You can
easily find similar methods and models in the computer lab examples. Carefully studying those examples
and codes are crucial for understanding this course and complete the group coursework.
Suggested Topics
Forecasting Limit Order Book
Topic
Can we use deep neural network to forecast the high-frequency return at multiple horizon for stocks using
their limit order book information?
Data
10-level high frequency Limit Order Book of five stocks: Apple, Amazon, Intel, Microsoft, and Google on 21st
June 2012. Data size from 40MB to 100+MB. You can select to use part of the data.
Method
You may define the following features:are the ask and bid price of 10 levels (𝑖 = 1, … ,10), and w**7;w**5;
𝑖,𝑎
and w**7;w**5;
𝑖,𝑏
are the volume of 10 levels
(𝑖 = 1, … ,10). w**4;w**5;
𝐿𝑂w**; ∈ **7;40
2) Bid-Ask Order Flow (OF)
𝑏𝑂𝐹w**5;,𝑖 = {
w**7;w**5;
𝑖,𝑏
, 𝑖𝑓 𝑏w**5;
𝑖 > 𝑏w**5;−1
𝑖
w**7;w**5;
𝑖,𝑏 − w**7;w**5;−1
𝑖,𝑏
,𝑖𝑓 𝑏w**5;
𝑖 = 𝑏w**5;−1
𝑖
−w**7;w**5;
𝑖,𝑏
, 𝑖𝑓 𝑏w**5;
𝑖 < 𝑏w**5;−1
𝑖
𝑎𝑂𝐹w**5;,𝑖 = {
w**7;w**5;
𝑖,𝑎
, 𝑖𝑓 𝑎w**5;
𝑖 > 𝑎w**5;−1
𝑖
w**7;w**5;
𝑖,𝑎 − w**7;w**5;−1
𝑖,𝑎
,𝑖𝑓 𝑎w**5;
𝑖 = 𝑎w**5;−1
𝑖
−w**7;w**5;
𝑖,𝑎
, 𝑖𝑓 𝑎w**5;
𝑖 < 𝑎w**5;−1
𝑖
𝑂𝐹𝑖 ∈ **7;20
3) Order Flow Imbalance (OFI)
𝑂𝐹𝐼w**5; = 𝑏𝑂𝐹w**5;,𝑖 − 𝑎𝑂𝐹w**5;,𝑖
𝑂𝐹𝐼w**5; ∈ **7;20
The features can be defined as a vector
𝐗w**5; = (w**4;w**5;
𝐿𝑂w**;
, 𝑏𝑂𝐹w**5;,𝑖
, 𝑎𝑂𝐹w**5;,𝑖
,𝑂𝐹𝐼w**5;)
𝑇
The total dimension of feature vector 𝐗w**5;
is 40+20+10=70. 𝐗w**5; ∈ **7;70
.
The target is the the LOB mid-point return 𝐫w**5; over 𝐻 future horizons (𝐻 ≥ 1).
𝐫w**5; = (w**3;w**5;,1, … , w**3;w**5;,𝐻)
𝑇
This project is to estimate the function 𝑓(∙), that takes a sequence of historical 𝐗w**5; as input and generates
vector 𝐫w**5; as output:
𝐫w**5; = 𝑓(𝐗w**5;
,𝐗w**5;−1, 𝐗w**5;−2, … , 𝐗w**5;−𝑾)
Where 𝑾 is the look back window, 𝐫w**5; = (w**3;w**5;,1, … , w**3;w**5;,𝐻)
𝑇
𝑗 = 1, … , 𝐻.
This topic shall use LSTM as one of the potential models. You may try to train the LSTM model with the raw
70-dimension features 𝐗w**5; with different 𝑾. You may also extract the features with lower dimensions 𝑀 < 70
by autoencoder and then train the LSTM model using the extracted features with different 𝑾. You can provide
a comparison of those two methods.
This project shall also address the question of the feature importance.
Forecasting Stock Volatility
Topic
This topic comprises two subtopics, both pertaining to volatility forecasting. These subtopics are as follows:
1) Is stock volatility path-dependent?
2) Is stock volatility past-dependent?
To address these questions, you have the option to employ various machine learning models for forecasting
stock return volatility. This can be achieved either by utilising past returns (path-dependent) or past volatilities
(past-dependent).
Addressing either of the aforementioned sub-questions fulfils the coursework requirements for the
FML course. There is no need to complete work for both questions.
Data
In computer lab_3_1, we show the method to download stock prices from Yahoo Finance. This topic uses the
stock adjusted prices to calculate its volatility. You shall calculate the volatility as the standard deviation of the
Ү**; daily arithmetic returns, but it's essential to note that this volatility should be computed based on returns
within distinct, non-overlapping Ү**;-day intervals. Ү**; can be five or ten days. The following figure shows the
volatility calculation, where w**3;𝑖
is the daily return and ҵ**;𝑖
is the five-day volatility.
To successfully complete the coursework, you must choose a minimum of two stocks to assess one of the
aforementioned questions. The selection of these stocks should align with your personal interests.
Method
The topic is to investigate whether the volatility is path-dependent or past-dependent. But the length 𝐿 of
the path and past are unknown. You can select 𝐿 as 5, 10, 15, 20, or 40 days in the investigation and conclude
with a best 𝐿. Please decide by yourself what lengths 𝐿 to select in your coursework.
For the question of path-dependent, the input features contain the daily returns in past 𝐿 days:
𝐗w**5; = (w**3;w**5;−1, w**3;w**5;−2, w**3;w**5;−2, … , w**3;w**5;−𝐿
)
𝑇
The output is the volatility 𝑦w**5; = ҵ**;w**5;
. Please be aware that the returns in 𝐗w**5;
shall not be included in the
calculation of the output volatility 𝑦w**5;
. As illustrated in figure below, to forecast the volatility ҵ**;w**5;
, you can use
the daily returns w**3;w**5;−1, w**3;w**5;−2,…, w**3;w**5;−𝐿
in past 𝐿 days.
For the question of past-dependent, the input features contain the previous 𝐿 volatilities:
𝐗w**5; = (ҵ**;w**5;−1, ҵ**;w**5;−2, ҵ**;w**5;−3, … , ҵ**;w**5;−𝐿
)
𝑇
The output is the volatility 𝑦w**5; = ҵ**;w**5;
.
This topic shall use any of the machine learning models.
This topic may also answer what length 𝐿 generate the best forecasting results for the path- and pastdependence.
Forecasting High Frequency Cryptocurrency Return
Topic
This topic is to study how machine learning models perform in forecasting 15-minute ahead return in any of
the 14 popular cryptocurrencies.
Data
A dataset “cryptocurrency_prices.csv” of millions of rows of **minute frequency market data dating back to
2018 is provided for building the model. The dataset contains 14 popular cryptocurrencies, distinguished by
asset IDs. The details of the asset IDs and names are in the file “asset_details.csv”. You may choose any
cryptocurrencies to forecast. The “Weight” in the file is to calculate the whole market of cryptocurrency and
will be introduced in next section.
Asset_ID Weight Asset_Name
2 2.3978952** Bitcoin Cash
0 4.30**5093 Binance Coin
1 6.779921**7 Bitcoin
5 1.386294361 EOS.IO
7 2.079441542 Ethereum Classic
6 5.894402834 Ethereum
9 2.3978952** Litecoin
11 1.609437912 Monero
13 1.791759469 TRON
12 2.079441542 Stellar
3 4.**7192** Cardano
8 1.09**2289 IOTA
10 1.09**2289 Maker
4 3.555348061 Dogecoin
In the file “cryptocurrency_prices.csv”, the target has been calculated and provided as the column “Target”.
The target is derived from the log return over the future 15 minutes, for each cryptocurrency asset 𝑎 as the
residual of 15 minutes log return Targetw**5;
𝑎
. Noted that, in each row, the “Target” has already been aligned as
the future 15 minute return residual and is to be forecasted. (Target: Residual log-returns for the asset over
a 15 minute horizon.)
We can see the features included in the dataset as the following:
timestamp: All timestamps are returned as second Unix timestamps (the number of seconds elapsed since
1970-0**01 00:00:00.000 UTC). Timestamps in this dataset are multiple of 60, indicating minute-by-minute
data.
Asset_ID: The asset ID corresponding to one of the crytocurrencies (e.g. Asset_ID = 1 for Bitcoin). The mapping
from Asset_ID to crypto asset is contained in asset_details.csv.
Count: Total number of trades in the time interval (last minute).
Open: Opening price of the time interval (in USD).
High: Highest price reached during time interval (in USD).
Low: Lowest price reached during time interval (in USD).
Close: Closing price of the time interval (in USD).
Volume: Quantity of asset bought or sold, displayed in base currency USD.
VWAP: The average price of the asset over the time interval, weighted by volume. VWAP is an aggregated
form of trade data.
Method
You may define some additional features. For example, the past 5 minute log return, the past 5 minute
absolute log return, past 5 minute highest, past 5 minute lowest, etc.
You may try simple models, i.e., linear tree, and complex models, i.e., LSTM and compare their forecasting
performance.
If using LSTM, you may also study what length of the looking back window provide the best forecasting
performance.
In addition, the feature importance shall also be studied to show which features contribute to the stock relative
performance in the future the best.
Appendix
This appendix introduces how the target is calculated.
The log return at time w**5; for asset 𝑎 is calculated as:
𝑅w**5;
𝑎 = log (
𝑃w**5;+16
𝑎
𝑃w**5;+1
𝑎 )
As the crypto asset returns are highly correlated, forecasting returns for individual asset shall remove the
market signal from individual asset returns. Therefore, the weighted average cryptocurrency market return 𝑀w**5;
is defined as:
is the weight for each cryptocurrency and is defined in the column “Weight” in the file
“asset_details.csv”.
Then, a beta is calculated for each asset ҵ**;
Where the bracket &#**01;∙&#**02; calculate the rolling window average over the past 3750 minute windows.
Then, a regression residual is defined as the target for each asset Targetw**5;
BUT, you don’t need to do this calculation. The target values have been calculated and provided in the 請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 







 

掃一掃在手機打開當前頁
  • 上一篇:菲律賓大使館周末上班嗎 大使館上班時間是什么時候
  • 下一篇:QBUS6820代做、Python編程語言代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    亚洲精品一区二区三区av| 久久国产精品亚洲| 国产乱码精品一区二区三区不卡| 青青草国产免费| 青草热久免费精品视频| 日本福利视频网站| 日韩国产在线一区| 人妻熟女一二三区夜夜爱| 欧美在线播放一区二区| 狠狠综合久久av| 国产日韩精品在线播放| 黄页网站在线观看视频| 蜜桃av久久久亚洲精品| 国产精品一区二区女厕厕| 91精品国自产在线观看| 久久久久久久久久久网站| 久久精品国产sm调教网站演员| 日韩视频免费在线| 伊甸园精品99久久久久久| 痴汉一区二区三区| 国内久久久精品| 国产欧美欧洲| 日韩中文字幕不卡视频| 不卡av在线播放| 色综合久久av| 国产在线精品91| 97成人在线观看视频| 久久久久亚洲精品国产 | 国产成人精彩在线视频九色| 日韩在线观看免费| 亚洲午夜精品久久久中文影院av| 欧美专区中文字幕| 91九色在线免费视频| 国产精品免费一区二区三区在线观看| 亚洲欧美日韩精品久久久| 免费看日b视频| 日韩中文字幕免费看| 亚洲专区中文字幕| 国产伦精品一区| 国产精品伦子伦免费视频| 亚洲AV无码成人精品一区| 国产日韩欧美日韩大片| 国产精品久久视频| 欧美日韩视频免费| 色婷婷久久一区二区| 欧美亚洲伦理www| 久久久精品国产亚洲| 欧洲精品在线视频| 久久久视频在线| 午夜精品久久久久久久男人的天堂 | 国产精品丝袜视频| 亚洲中文字幕久久精品无码喷水 | 国产精品亚发布| 精品国产区在线| 麻豆久久久9性大片| 国产精品免费成人| 国产主播在线看| 麻豆成人在线看| 国产美女久久精品香蕉69| 麻豆国产精品va在线观看不卡| 欧美凹凸一区二区三区视频| 久久精品视频99| 日韩美女免费观看| 久久久免费av| 欧美做暖暖视频| 国产精品吊钟奶在线| 免费看黄在线看| 久99九色视频在线观看| 成人在线观看a| 亚洲人成网站在线播放2019 | 久久久久九九九| 日本视频一区二区在线观看| 国产v亚洲v天堂无码久久久| 日韩精品一区二区三区电影| 三级精品视频久久久久| 国产中文欧美精品| 欧美精品一区二区免费| 97久草视频| 欧美精品一区免费| 亚洲精品国产精品久久| 久99久在线| 国产女同一区二区| 日韩视频在线免费播放| 久久亚洲私人国产精品va| 97热精品视频官网| 欧美精品与人动性物交免费看| 久久国产精品视频| 精品国产拍在线观看| 国产日韩欧美综合精品| 日韩激情视频一区二区| 一区二区三区在线观看www| 国产精品99久久免费黑人人妻 | 国产无套粉嫩白浆内谢的出处| 亚洲a区在线视频| 久热精品视频在线观看| 国产成人av网| …久久精品99久久香蕉国产| 国产亚洲欧美在线视频| 日韩国产小视频| 色乱码一区二区三在线看| 美女黄色丝袜一区| 国产精品乱码| 日韩亚洲欧美中文在线| 91麻豆国产语对白在线观看| 国产一区二区丝袜| 女女同性女同一区二区三区91 | 青青青在线视频播放| 亚洲视频小说| 亚洲精品在线视频观看| 亚洲国产精品视频一区| 国产99视频精品免费视频36| 国产精品高潮呻吟视频| 久久九九国产精品怡红院| 九九久久99| 久久精品视频网站| 国产精品日韩一区二区| 国产精品免费看久久久香蕉| 久久久免费观看| 国产成人精品a视频一区www| 久久青青草原一区二区| 国产传媒久久久| 北条麻妃久久精品| 国产精品美女在线播放| 精品久久久三级| 亚洲影院色在线观看免费| 亚洲91精品在线亚洲91精品在线| 色婷婷精品国产一区二区三区 | 国产免费亚洲高清| 国产欧美精品va在线观看| 国产欧美日韩综合精品二区| chinese少妇国语对白| 久久久噜噜噜久噜久久| 国产精品久久久久久久app| 国产精品第三页| 亚洲97在线观看| 精品日产一区2区三区黄免费| 国产中文字幕日韩| 久久精品日韩| 久久夜色精品亚洲噜噜国产mv| 在线一区高清| 欧洲国产精品| 成人亚洲欧美一区二区三区| 久久国产精品久久| 中文字幕人成一区| 欧美一区二区三区……| 精品欧美国产一区二区三区不卡| 国产老熟妇精品观看| 亚洲欧洲中文| 国产尤物91| 色av中文字幕一区| 大波视频国产精品久久| 国产欧美日韩网站| 久久精品电影网站| 欧美一区1区三区3区公司| 国产乱人伦精品一区二区三区| 久久色在线播放| 无码内射中文字幕岛国片| 国产在线精品二区| 国产精品视频区| 午夜精品www| 91精品国产综合久久香蕉最新版| 欧美成人精品在线| 欧美精品一区二区三区四区五区 | 亚洲一区二区在线观| 成人免费在线小视频| 一区二区三区在线视频111| 国内精品模特av私拍在线观看| 日韩综合视频在线观看| 电影午夜精品一区二区三区| 91精品视频免费观看| 久久久久久国产精品| 69精品小视频| 日韩欧美精品在线不卡| 国产精品视频在线免费观看| 国内精品视频免费| 久久久久久成人| 久久久亚洲影院你懂的| 欧洲视频一区二区三区| 欧美精品在线观看| 成人免费91在线看| 日本a在线免费观看| 国产精品丝袜高跟| 毛葺葺老太做受视频| 亚洲wwwav| 久久久天堂国产精品| 日本乱人伦a精品| 国产成人精品一区| 狠狠爱一区二区三区| 九色在线视频观看| 日韩美女在线观看| 国产成人精品最新| 国产在线精品一区二区三区 | 国产资源在线免费观看| 国产a级片网站| 久久精品国产99精品国产亚洲性色 | 日韩精品免费播放| 久久亚洲国产精品| 国产成人精品久久亚洲高清不卡| 国产一区在线观| 日韩美女在线观看一区|