Added simple microservice

Not integrated into UI yet
This commit is contained in:
Joe Tretter
2020-03-08 22:40:44 -05:00
parent 40ac3d0386
commit 9fbcf07cb5
5 changed files with 778 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
dbName=quoteStore_2020-02-24.sqlite3
sqlite3 ${dbName} "select distinct Symbol from OptionQuotes;" | while read currSymbol; do
echo SSSS $currSymbol
sqlite3 ${dbName} "select timeStamp from OptionQuotes where symbol='${currSymbol}';"
done