You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
davhojt 4328e8f3dc chore(mobile-dev): move resources closer to each project 2 years ago
..
audit docs(stock-market): improve audit format 2 years ago
resources chore(mobile-dev): move resources closer to each project 2 years ago
README.md chore(mobile-dev): move resources closer to each project 2 years ago

README.md

Stock Market

Exercise

Develop an app that will simulate a real-time stock market. You may use Yahoo API for data retrieval.

For any new user, provide them with 1,000,000$ fake dollars, so that they can do operations within your app. These operations include:

  • Log in/out
  • Buy/hold stocks
  • See historical charts of stock prices
  • Retrieve data about a particular stock for the last year or since the company went public
  • Updating data about a stock (Updating data atleast 5 times in a second is considered real-time)

Make sure to manage states via any of the following patterns:

  • BLoC
  • Provider
  • MVC

Todo list

  • Route for login/signup page
  • Route with all the purchased stocks
  • Route to display historical data of the chosen stock
  • All the data must be fetched in real-time
  • Choose 20 stocks to monitor

Objective

  • Fetching data in real-time
  • Visualizing custom widgets in real-time
  • Making authentication and authorization services
  • Use of patterns