diff --git a/functions/index.js b/functions/index.js index a47dabc..d07e8ee 100644 --- a/functions/index.js +++ b/functions/index.js @@ -68,7 +68,7 @@ exports.getRichQuick = functions const stocksToBuy = gptCompletion.data.choices[0].text.match(/\b[A-Z]+\b/g); console.log(`Thanks for the tips Jim! ${stocksToBuy}`); - if (!stocksToBuy) { + if (!stocksToBuy || stocksToBuy == 'AAPL' || stocksToBuy == 'AMD' || stocksToBuy == 'NVDA') { console.log('sitting this one out'); return null; }