Skip to content
Snippets Groups Projects
Commit 3d0802e3 authored by Brady James Garvin's avatar Brady James Garvin
Browse files

Tweaked method stub based on TA feedback.

parent 8fd96f58
No related branches found
No related tags found
No related merge requests found
...@@ -14,12 +14,14 @@ class BuySellPlan { ...@@ -14,12 +14,14 @@ class BuySellPlan {
} }
function combineBuySellPlans(firstPlan, secondPlan) { function combineBuySellPlans(firstPlan, secondPlan) {
return new BuySellPlan( // TODO: stub const result = new BuySellPlan( // TODO: placeholder values
firstPlan.buyPrice, firstPlan.buyPrice,
secondPlan.sellPrice, secondPlan.sellPrice,
firstPlan.minimumPrice, firstPlan.minimumPrice,
secondPlan.maximumPrice secondPlan.maximumPrice
); );
// TODO: possibly other logic here
return result;
} }
function determineBuyAndSellPrices(forecastPrices) { function determineBuyAndSellPrices(forecastPrices) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment