From 3d0802e31ac923ee58a8ac3d9384c2e9e4ba5f7f Mon Sep 17 00:00:00 2001
From: Brady James Garvin <bgarvin@cse.unl.edu>
Date: Fri, 19 Oct 2018 13:04:12 -0500
Subject: [PATCH] Tweaked method stub based on TA feedback.

---
 js/buy_sell.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/js/buy_sell.js b/js/buy_sell.js
index de36925..6934242 100644
--- a/js/buy_sell.js
+++ b/js/buy_sell.js
@@ -14,12 +14,14 @@ class BuySellPlan {
 }
 
 function combineBuySellPlans(firstPlan, secondPlan) {
-  return new BuySellPlan( // TODO: stub
+  const result = new BuySellPlan( // TODO: placeholder values
     firstPlan.buyPrice,
     secondPlan.sellPrice,
     firstPlan.minimumPrice,
     secondPlan.maximumPrice
   );
+  // TODO: possibly other logic here
+  return result;
 }
 
 function determineBuyAndSellPrices(forecastPrices) {
-- 
GitLab