Consider the following moving average trading strategy: Let 7MA be the 7-days moving average, and let 14MA be the 14-days moving average. If the 7MA crosses the 14MA from below, then buy your entire budget. If the 7MA crosses the 14MA from above, then sell your entire portfolio. Your task is to implement the above strategy and test it with MATLAB on the JustEat6M stock’s daily closing prices that are provided on the moodle page of the module (Unit 1). Assume you have £1M available to invest and that only integer quantities of the asset can be traded. Your code should import data from the JustEat6M file. Make sure that your code runs if the JustEat6M file is in the same folder as the .m file that you submit, without the need to rename the JustEat6M file or make any other amendments. In particular: a. (20%) b. (10%) c. (10%) Your code should implement the above strategy by identifying for which days the trading conditions hold and adapting the budget and portfolio variables accordingly. Your code should output when your algorithm buys or sells, as well as the profit/loss at each deal and in total. Your code should be clear and adequately commented to pinpoint the parts where the above calculations are performed.