Git Product home page Git Product logo

stockprice's Introduction

1) Build the system by using Gradle.

2) Run the command: java -jar stockPriceService.jar.
Notes: This requires internet connection to get data from third party service.

3) Requirements:
Story #1:
		As a REST API Client, I want to request a ​Close Price ​ for a ​ticker symbol ​ for a range of
		dates (start date and end date).
		Acceptance Criteria
		● REST API supports GET with URI, /api/v2/{ticker
		symbol}/closePrice?startDate=YYYY-MM-DD&endDate=YYYY-MM-DD. For example: http://localhost:8080/api/v2/FB/closePrice?startDate=2016-09-03&endDate=2016-11-01
		● Json is returned in the following format:
		{
		"Prices": {
		"Ticker": "GE",
		"DateClose": ["1999-03-30", "28.32"],
		“DateClose": ["1999-03-31", "27.94"]...
		}
		}
		● An invalid ticker symbol or range of dates returns a easy to understand error and
		HTTP Code of 404
		Definition of Done
		● Unit Tests pass for all Acceptance Criteria
		Technical Notes
		● Data source for this will be
		https://www.quandl.com/docs/api#quick-start-examples.
Story #2:
		As a REST API Client, I want to request the ​200 day moving average ​ price for a ticker
		symbol beginning with a start date.
		Acceptance Criteria
		● REST API supports GET with URI, /api/v2/{ticker
		symbol}/200dma?startDate=YYYY-MM-DD
		● Json is returned in the following format:
		{
		"200dma": {
		"Ticker": "GE",
		"Avg": "28.32"
		}
		}
		● An invalid ticker symbol or start date returns a easy to understand error and
		HTTP Code of 404. If there is no data for the start date, the first possible start
		date is suggested in the error message.
		Definition of Done
		● Unit Tests pass for all Acceptance Criteria
		Technical Notes
		● See Technical Notes for User Story #1
Story #3:
		As a REST API Client, I want to make a single request for the ​200 day moving average
		price for a up to 1000 ticker symbols beginning with a start date.
		Acceptance Criteria
		● REST API supports GET, URI: /api/v2/200dma?startDate=YYYY-MM-DD&ticker={tickerSymbol},{tickerSymbol}. For example: /api/v2/200dma?startDate=2016-11-25&ticker=FB,MSFT
		Json is returned in the following format:
		{
		 200dmas:
			{
				"StartDate": "YYYY-MM-DD",
				"Data":
					[
						{
							"Ticker": "FB",
							"Avg": "11.22",
							"StartDate": "YYYY-MM-DD"
						},
						{
							"Ticker": "MSFT",
							"Error": "Invalid Ticker Symbol"
						}
					]
			}
		 }
		}
		● An invalid ticker symbol generates a message in the JSON response that there
		is no data for it.
		● If there is no data for a ticker symbol with the start date provided, data for the
		first possible start date is provided back to the client.
		Definition of Done
		● Unit Tests pass for all Acceptance Criteria
		Technical Notes
		● See Technical Notes for User Story #1
Story #4:
		As the Microservice, I want to cache the Close Dates for the 100 Most Frequently Used
		ticker symbols so that I will reduce latency on User Story #1
		
	
Please see architecture.png to have an overview about the system.

stockprice's People

Contributors

xuanit avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.