1. Homepage
  2. Programming
  3. Cloud Computing (COMM034) Coursework: Monte Carlo method

Cloud Computing (COMM034) Coursework: Monte Carlo method

Engage in a Conversation
PythonFinanceCOMM034Cloud ComputingMonte Carlo methodCandle SticksUKUniversity of Surrey

Cloud Computing (COMM034) CourseNana.COM

Coursework description, 2022-23

Contents

Nature of coursework – it is vital you have read and understood this section ........................................................................ 3 Aim ......................................................................................................................................................................................... 4 Submission .............................................................................................................................................................................. 4 Deadline .................................................................................................................................................................................. 4 Relationship to learning outcomes .......................................................................................................................................... 4 A note on linearity of description ........................................................................................................................................... 4 Approach ................................................................................................................................................................................. 5 Which data will your system analyse? ................................................................................................................................ 7 VM setup and code for the approach ...................................................................................................................................... 8 Requirements – see the user scenario, below, as will support explanation of these ............................................................. 10 Brief example user scenario .................................................................................................................................................. 11 Submissions .......................................................................................................................................................................... 12 Weighting and Composition ................................................................................................................................................. 13 Marking criteria .................................................................................................................................................................... 14 CourseNana.COM

Nature of coursework – it is vital you have read and understood this section This is an individual coursework. It is not a group coursework. It is your own individual efforts that will gain marks for you. Efforts of others on your coursework may become a problem for both you and them, and it is best to avoid this. CourseNana.COM

You may discuss what you are doing with others on the module. BUT do not share report content or code with each other. Also, do not copy+paste material from elsewhere even if you are then changing some of the words of what you have pasted. To use what others have written directly, quote their text properly using “”, attribute it to them, and then discuss or interpret what is important about it for your purpose. Similarly, the source of images that you have not created but are using must be stated. Note that any direct inclusion of work by others implies that marks for what is included should be given to them –only your efforts gain marks for you. Similar applies to code also. CourseNana.COM

Aim

To demonstrate your understanding of how to critically explain, and construct, a Cloud application using multiple services across Cloud providers, involving user-specifiable scaling. CourseNana.COM

You will explain, implement, evaluate, and demonstrate, CourseNana.COM

an application that supports determining the risks of using certain trading signals for a trading strategy using a so-called Monte Carlo method. CourseNana.COM

Such an application might support, for example, building a trading strategy that uses trailing stops – though you are not expected to do this. Background reading may, however, help: https://www.investopedia.com/articles/trading/08/trailingstop-loss.asp Your application will need to adopt the Approach within the set of provided Requirements. CourseNana.COM

Submission

Submissions will be made via SurreyLearn and comprise two components: CourseNana.COM

  1. A PDF document of a maximum of 4 pages that conforms to the template provided
  2. A Zip file for code for your system - excluding libraries that will merely bloat the zip file.

Reminder: this is an individual coursework and must not be worked on in pairs or groups. CourseNana.COM

Submissions will be evaluated using tools including Turnitin. CourseNana.COM

Relationship to learning outcomes CourseNana.COM

LO Description
LO1: Demonstrated with regard to the selected Cloud services and the software implementation, and

related questions of cost and performance. LO2: |Demonstrated with regard to use of Google App Engine and Lambda, as well as justification of the second scalable service, within an industrial/academic problem context. LO3:|Demonstrated with regard to evaluation of alternative and/or additional services and appropriateness of elaboration of the system overall. LO4:|Demonstrated with regard to defining the system in the context of Cloud. LO5:|Demonstrated through the specification, design, implementation and critical evaluation of the software implementation. CourseNana.COM

A note on linearity of description

Some aspects are described across passages and sections – e.g. Audit. Prior to posing questions, check that you have seen/searched all such mentions within the document first. CourseNana.COM

Approach

There are no marks available for re-explaining this approach in your submission. Note that a core of Python code is provided for this approach, within this document, and this Python code must be used for the application created. i. The approach involves identifying trading signals in financial time series and capturing the risk associated to these. Such an assessment might support a subsequent evaluation of a trading strategy. a. Financial time series here comprise daily data – specifically, a summary of the trading day comprising the Open/High/Low/Close values for each trading day (OHLC values can readily be produced for other time intervals – e.g. every 15 minutes). b. OHLC data can be visualised using a “Japanese candlestick”, and certain resulting shapes interpreted from these to indicate something about the data that may ‘signal’ making a trade (buy or sell). The figure below is an example, using real data, of such candlesticks where: i. Open and Close values provide the top and bottom of the ‘box’ on each candlestick – if Close is higher than Open, price movement was upwards overall and the body is green (a price rise from the start of the day to the end); Open higher than Close and the body is red (a price fall from the start of the day to the end); other charts and some pattern naming might use white for upward and black for downward or other colour/shading schemes. ii. A line projecting from the top of the body indicates that the High was above the respective Open/Close; a line projecting from the bottom of the body indicates that the Low was below the respective Open/Close. Such lines are referred to as the wick or shadow. CourseNana.COM

iii. Resulting shapes can have various names such as a Green/Red Marabozu (Japanese for dominance) or Spinning Top, and can involve more than one candlestick – for example Harami (Japanese for pregnant) or Three Black Crows. Note how the latter name implies a specific colour/shade scheme. CourseNana.COM

Here, we’re only going to look at 2 patterns that each involve 3 candlesticks: (i) Three White Soldiers; (ii) Three Black Crows. For the above figure, the combination of 6th , 7th and 8th candlesticks from the left should fit our expectations for Three Black Crows, and example code is provided that will act as a detector for such shapes in data being obtained directly from Yahoo Finance (the pattern identification code could be more sophisticated, for example it doesn’t check if the 2nd and 3rd have Open value between Open and Close – the real body – of the candle before, but we’re using simpler principles here). CourseNana.COM

Three White Soldiers – rising, close values above previous close values and each close above the open CourseNana.COM

Three Black Crows – falling, close values below previous close values and each close below the open CourseNana.COM

Table 1: Images from https://www.ig.com/uk/trading-strategies/16-candlestick-patterns-every-trader-should-know-180615 CourseNana.COM

c. What we want to know, before we might conduct any other analysis, is how much risk would be associated to each potential signal and whether each might generally be profitable some days after the signal. For risk, a Monte Carlo analysis offers one option: we use characteristics of the recent price history to simulate a substantially longer price series, then determine the amount that might be lost and confidence involved – for example, this could be expressed between people as: “there is a 95% confidence that no more than 5% of the amount traded would be lost, and a 99% confidence that no more than 7.5% of the amount traded would be lost”: i. If we have a minimum price history requirement of 101 days, including the signal, we first calculate the daily returns – the % change in value compared to the day before, i.e. (priceprevious)/previous – which would offer 100 such values. ii. The returns series will be characterised by its mean and standard deviation, and we use a random number generator (Normal/Gaussian distribution) to simulate (generate) a series containing lots of such values that could closely fit to these parameters. iii. By sorting the resulting series, of potential gains and losses, and picking off values at 95% and 99%, we know theoretical % changes of interest with respect to what could be expressed between people. We could, by extending from this point, use these values to see if there are ways to optimize the trading strategy – for example, by trading in high, or low, risk situations. iv. Example code is provided that offers an example of capturing such values. This analysis needs to use high numbers of ‘shots’, but this takes time - and each user is impatient. It is quite possible to undertake such analysis using parallel resources: each resource generates a new series and provides its values; these values are then averaged, appropriately, in order to generate the resulting two values needed. . To determine if it’s profitable, we simply choose how many days later we want to look at price difference. CourseNana.COM

For this coursework, we want a system that will reduce the overall wait time for results for a larger value at risk analysis (more shots) and enable the user to identify which signals relate more, or less, risk and whether profitable. CourseNana.COM

Which data will your system analyse?

Your system will use one of the “Other symbols” identified in the code comment depending on the 2nd character of your Surrey username (i.e. a username such as qq0134): CourseNana.COM

  1. If the second character is from ‘a’ to ‘f’ inclusive: ZM
  2. If the second character is from ‘g’ to ‘l’ inclusive: AMZN
  3. If the second character is from ‘m’ to ‘r’ inclusive: BP.L
  4. If the second character is anything else: NFLX

VM setup and code for the approach

First, locate and start the COMM034 VM (check that the network connection has not become lost!) In the VM, create a requirements.txt file listing the following 3 libraries and install using pip3, per Lab 1: CourseNana.COM

pandas
yfinance
pandas_datareader

Warnings such as “Can't uninstall 'pytz'. No files were found to uninstall.” can be safely ignored. CourseNana.COM

Note that if you wanted to add them to a GAE project you would extend the requirements.txt for that – i.e. ensuring that Flask, gunicorn, boto3 are already included. CourseNana.COM

The code provided on the next pages should, for initial testing, be put into a single file. This provides for the core of the code that would be expected to be seen. However, it will be expected that you will ‘take this apart’ to use in your system. CourseNana.COM

#!/usr/bin/env python3
import math
import random
import yfinance as yf
import pandas as pd
from datetime import date, timedelta
from pandas_datareader import data as pdr
# override yfinance with pandas – seems to be a common step
yf.pdr_override()
# Get stock data from Yahoo Finance – here, asking for about 3 years
today = date.today()
decadeAgo = today - timedelta(days=1095)
# Get stock data from Yahoo Finance – here, Gamestop which had an interesting
#time in 2021: https://en.wikipedia.org/wiki/GameStop_short_squeeze
data = pdr.get_data_yahoo('GME', start=decadeAgo, end=today)
# Other symbols: TSLA – Tesla, AMZN – Amazon, ZM – Zoom, ETH-USD – Ethereum-Dollar etc.
# Add two columns to this to allow for Buy and Sell signals
# fill with zero
data['Buy']=0
data['Sell']=0
# Find the signals – uncomment print statements if you want to
# look at the data these pick out in some another way
# e.g. check that the date given is the end of the pattern claimed
for i in range(2, len(data)):
body = 0.01

and
and
and
and

# Three Soldiers
if (data.Close[i] - data.Open[i]) >= body \
data.Close[i] > data.Close[i-1] \
(data.Close[i-1] - data.Open[i-1]) >= body \
data.Close[i-1] > data.Close[i-2] \
(data.Close[i-2] - data.Open[i-2]) >= body:
data.at[data.index[i], 'Buy'] = 1
#print("Buy at ", data.index[i])

and
and
and
and

# Three Crows
if (data.Open[i] - data.Close[i]) >= body \
data.Close[i] < data.Close[i-1] \
(data.Open[i-1] - data.Close[i-1]) >= body \
data.Close[i-1] < data.Close[i-2] \
(data.Open[i-2] - data.Close[i-2]) >= body:
data.at[data.index[i], 'Sell'] = 1
#print("Sell at ", data.index[i])

# Data now contains signals, so we can pick signals with a minimum amount
# of historic data, and use shots for the amount of simulated values
# to be generated based on the mean and standard deviation of the recent history
minhistory = 101
shots = 10000
for i in range(minhistory, len(data)):
if data.Buy[i]==1: # if we’re interested in Buy signals
mean=data.Close[i-minhistory:i].pct_change(1).mean()
std=data.Close[i-minhistory:i].pct_change(1).std()
# generate much larger random number series with same broad characteristics
simulated = [random.gauss(mean,std) for x in range(shots)]
# sort and pick 95% and 99% - not distinguishing long/short risks here
simulated.sort(reverse=True)
var95 = simulated[int(len(simulated)*0.95)]
var99 = simulated[int(len(simulated)*0.99)]
print(var95, var99) # so you can see what is being produced

For your system, you will need to take the code above and build from it appropriately along with what you have seen in labs to meet the set of Requirements provided. CourseNana.COM

Note, in particular, that little of the code above needs to run in parallel, and consider where code that needs only to be run once per session should be run, and when, within the system. CourseNana.COM

Additional advice (a small hint): it is readily possible to avoid using libraries (e.g. Pandas) that will otherwise take more effort to use in the scalable services (Lambda, EC2 etc) – and it is advisable to avoid needing those as it can take more effort to get them to work there (esp. in Lambda)! CourseNana.COM

If you wanted to avoid having to support use of DataFrame in Lambda, look at what, for example, [entry[3] for entry in data.values.tolist()] might offer with respect to the above – and that it is possible to go further still. CourseNana.COM

Requirements – see the user scenario, below, as will support explanation of these

i.You must use: (i) Google App Engine, (ii) AWS Lambda, and (iii) one of the other scalable services in AWS: Elastic Compute Cloud (EC2), Elastic MapReduce (EMR) or – should you wish to explore – EC2 Container Service (ECS). ii. Subsequent mentions of scalable services in this document mean Lambda plus your choice from EC2 or EMR or ECS. Your system must offer a persistent front-end through which the user will be able to initialise (create or ‘warm up’, as necessary) and terminate (as necessary to remove any possible continuous cost) scalable services separately from using them to run the analysis. iii. The scalable services, and not Google App Engine, must calculate risk values – Google App Engine can be used to collect and average risk values. iv. The system must provide for the following with respect to how to initialise and analyse: a. Initialisation: i. A way for the user to specify which of your two scalable services, as S, to use for estimating – i.e. if you have chosen EC2, the selection here will be between Lambda and EC2. Note that, for this example, only Lambda or EC2 would then be being used for analysis unless the user changes to the other scalable service; ii. A way for the user to specify a value of R, as the number of resources (in the scalable services) to be used in parallel for calculating risk; iii. Using S and R, a way to provision (create or ‘warm up’, as necessary) the appropriate number of resources in the scalable services (note that ‘warm up’ is needed for all of the scalable services). This is likely to include readying any other data or service connections needed in advance of any analysis; iv. Capture of the time required for creation or ‘warm up’ such that it could be reported to the user and is available for analysis with respect to overall system running costs. b. For the risk analysis –the system must provide the following: i. A way to specify the value of H as the length of price history from which to generate the mean and standard deviation; ii. A way to specify the value of D as the number of data points (shots) to use by each R for calculating risk; iii. A way to specify the value of T as Buy or Sell to allow for separate analysis of each type of signal; iv. A way to specify the value of P as the number of days after which to check profit (or loss); v. Using H, D, T, and P, a way to run the calculations across the R resources where each resource returns its own risk values for averaging, and information is captured about the runtimes involved, such that the work done can be reported to the user and be stored for analysis – see ‘Audit’ page, below. c. For output – the system must provide the following: i. A result page with (a) a chart, using either Image Charts or the [old] Google Chart service, showing a line each for the 95% and 99% risk values for each signal and two lines relating the averages over each such that higher and lower risk signals can be seen readily, and (b) a table where each row shows signal date, associated risk values, and profit/loss values. ii. An ‘Audit’ page, showing information about each selection of S, R, H, D, T, P, the value of total profit (or loss), the two averaged risk values, and the compute runtime/cost for all analysis undertaken to date - such that you could use this information to estimate costs for much higher numbers of data points (D). d. Reset – the system must provide a way to ‘zero’ the analysis without needing to warm up new resources. e. Switch off – the system must provide a way to ‘terminate’ EC2/EMR/ECS resources so that no further costs would be incurred. CourseNana.COM

Your system may incorporate additional Cloud components, for example for storage for the ‘Audit’. However, the mantra of Keep It Stupid-Simple should be followed and additional components should not be added unnecessarily. CourseNana.COM

Brief example user scenario

The user asks the system to ‘warm up’ 4 resources (R) of the type selected (S). Resources, whether Lambda, EC2, EMR, or any other, are brought to a point where they are ready for running analysis. CourseNana.COM

The user specifies 80,000 shots (D) per R, with a history of 200 days per signal (H) and for Buy signals (T) and a Profitability time horizon P of 10 days. CourseNana.COM

In doing so, the user expects that, for each signal, 320,000 shots are being produced in total, and there will be the averaging of 4 values for each of 95% and 99% - i.e. two values per R – that results in one value per signal for each of 95% and 99% - and only these two values result from analysis per signal. In addition, the value of profit (or loss) for each signal is calculated using the difference between the price at the signal and, when available, the price P days forward of the signal – for a Buy signal, there is profit if the price has moved higher but loss if lower; for Sell, there is profit if the price has moved lower but loss if it has moved higher. CourseNana.COM

Following this analysis, the user will be presented with a chart showing all risk values – the two risk values for each signal, and two lines of averages over these – one over the 95% signal values and one over the 99% signal values. The total value of profit/loss, and the table, will also be presented to the user. CourseNana.COM

The user could run further analysis, but for this scenario has done enough so wants (non-Lambda) resources to be terminated. This does not, however, delete the Audit, which needs to be stored across uses/sessions (NB: variables within Python code do not allow for this over extended time periods, and nor do other temporary storage mechanisms that depend on continued running of supporting components). CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
Python代写,Finance代写,COMM034代写,Cloud Computing代写,Monte Carlo method代写,Candle Sticks代写,UK代写,University of Surrey代写,Python代编,Finance代编,COMM034代编,Cloud Computing代编,Monte Carlo method代编,Candle Sticks代编,UK代编,University of Surrey代编,Python代考,Finance代考,COMM034代考,Cloud Computing代考,Monte Carlo method代考,Candle Sticks代考,UK代考,University of Surrey代考,Pythonhelp,Financehelp,COMM034help,Cloud Computinghelp,Monte Carlo methodhelp,Candle Stickshelp,UKhelp,University of Surreyhelp,Python作业代写,Finance作业代写,COMM034作业代写,Cloud Computing作业代写,Monte Carlo method作业代写,Candle Sticks作业代写,UK作业代写,University of Surrey作业代写,Python编程代写,Finance编程代写,COMM034编程代写,Cloud Computing编程代写,Monte Carlo method编程代写,Candle Sticks编程代写,UK编程代写,University of Surrey编程代写,Pythonprogramming help,Financeprogramming help,COMM034programming help,Cloud Computingprogramming help,Monte Carlo methodprogramming help,Candle Sticksprogramming help,UKprogramming help,University of Surreyprogramming help,Pythonassignment help,Financeassignment help,COMM034assignment help,Cloud Computingassignment help,Monte Carlo methodassignment help,Candle Sticksassignment help,UKassignment help,University of Surreyassignment help,Pythonsolution,Financesolution,COMM034solution,Cloud Computingsolution,Monte Carlo methodsolution,Candle Stickssolution,UKsolution,University of Surreysolution,