Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/take-home-projects/chart-the-stock-market.md
Oliver Eyton-Williams ee1e8abd87 feat(curriculum): restore seed + solution to Chinese (#40683)
* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2021-01-12 19:31:00 -07:00

1.0 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
bd7158d8c443eddfaeb5bd0e Chart the Stock Market 4 302363 chart-the-stock-market

--description--

Build a full stack JavaScript app that is functionally similar to this: https://watchstocks.herokuapp.com/. Use a site builder of your choice to complete the project.

Here are the specific user stories you should implement for this project:

User Story: You can view a graph displaying the recent trend lines for each added stock.

User Story: You can add new stocks by their symbol name.

User Story: You can remove stocks.

User Story: You can see changes in real-time when any other user adds or removes a stock. For this you will need to use Web Sockets.

When you are done, make sure a working demo of your project is hosted somewhere public. Then submit the URL to it in the `Solution Link` field. Optionally, also submit a link to your project's source code in the `GitHub Link` field.

--solutions--

// solution required