I would like to create a (relatively) simple website where users can:
Register using Google.
Look at random historic 30-day stock charts for tickers on NYSE and Nasdaq.
Enter if the stock looked at will RISE or FALL over the next 10 days.
See what happened.
Track their right / wrong answers.
I am writing to get advice about how I can use Julia and related technologies to accomplish my goal. Ideally, I would like to know if there are worked examples that I can translate to my purpose.
I don’t have too much to add, but I’m bookmarking this to keep me in the loop.
I would guess you want to break down the project into smaller bits to see what is needed.
Where are you getting the data? With what frequency? How will you performantly display it? (NB: you should check the licensing agreements because you are displaying the data publicly)
I’d guess that storing the prices in some memory-mapped format would be best (HDF5? Arrow?), and displaying them with some small javascript library would be the easiest and the least resource intensive. Nobody has a Julia wrapper for Lightweight Charts yet, but that is what came to mind here.
I am not familiar with any Julia packages for handling authentication/accounts with Google (or any services).