TheOtherDavid / CoinCheck

A simple app that checks a crypto coin price and sends an SMS alert if there has been a big move recently.
1 stars 0 forks source link

Implement a Price Storage System #1

Closed TheOtherDavid closed 3 years ago

TheOtherDavid commented 3 years ago

The code retrieves the prices, but on its own, that isn't terribly useful. Implement a storage system. A table would be cool, but that would require a database. Let's just start with a CSV file. We should store the price in CBPRO terms, so BTC-USD.

Product Code Timestamp Price

TheOtherDavid commented 3 years ago

Checked in code to write the price to a file. Still need to create a way to get all prices for an individual product.

TheOtherDavid commented 3 years ago

Checked in code to retrieve all prices for a product.