freeCodeCamp/curriculum/challenges/german/10-coding-interview-prep/take-home-projects/chart-the-stock-market.md

30 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: bd7158d8c443eddfaeb5bd0e
title: Chart the Stock Market
challengeType: 4
forumTopicId: 302363
dashedName: chart-the-stock-market
---
# --description--
Build a full stack JavaScript app that is functionally similar to this: <a href="https://chart-the-stock-market.freecodecamp.rocks/" target="_blank" rel="noopener noreferrer nofollow">https://chart-the-stock-market.freecodecamp.rocks/</a>. 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.
Wenn du fertig bist, stelle sicher, dass dein Projekt öffentlich zugänglich gehostet ist. Gib dann die URL in das `Solution Link`-Feld ein. Füge optional einen Link zum Quellcode deines Projekts in das `GitHub Link`-Feld ein.
# --solutions--
```js
// solution required
```