Files
OptiTrainer/server/quoteDBs/createInfoMap.sh
Joe Tretter 9fbcf07cb5 Added simple microservice
Not integrated into UI yet
2020-03-08 22:40:44 -05:00

8 lines
252 B
Bash

#!/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