Skip to content

Develop a server side application using Node.js and MongoDB

Notifications You must be signed in to change notification settings

kunal2699/Crypto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Using Nodejs and Mongodb

  • Fetch.js : Implement a background job that will fetch the current price in USD, market cap in USD and 24 hour change of 3 cryptocurrencies: Bitcoin, Matic, and Ethereum and store it in a database. This job should run once every 2 hours.

  • Latest_data.js: Implement an API /stats, that will return the latest data about the requested cryptocurrency.

  • Query params:
    {
    coin: bitcoin // Could be one of the above 3 coins
    }

  • Deviation.js: Implement an API, /deviation, that will return the standard deviation of the price of the requested cryptocurrency for the last 100 records stored by the background service in the database.

  • For example, consider the database only has 3 records for bitcoin, each with a price of 40000, 45000, 50000 respectively. Then the result should return 4082.48.

  • Query params:
    {
    coin: bitcoin // Could be one of the above 3 coins
    }

About

Develop a server side application using Node.js and MongoDB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published