Git Product home page Git Product logo

go-yql-finance's Introduction

go-yql-finance

Yahoo finance API wrapper for Go

Usage

import (
  "github.com/bhoeting/go-yql-finance"
)

Historical Data

GetHistoricalData() returns a slice of type HistoricalPiece which is defined below:

type HistoricalPiece struct {
	Low      float64
	High     float64
	Open     float64
	Close    float64
	Volume   float64
	AdjClose float64
	Date     time.Time
}

The function can be used like this:

// The second parameter is the time interval.
// You can pass in "d", "w", "m", "daily", "weekly", or "montly".
days := yql.GetHistoricalData("GOOG", "daily")

for _, day := range days {
	fmt.Println(day.Close)
}

Current Data

GetCurrentData() returns a slice of type CurrentPiece which is defined below:

type CurrentPiece struct {
	Ask       float64
	Open      float64
	Name      string
	Symbol    string
	Change    float64
	PrevClose float64
}

The function can be used like this:

current := yql.GetCurrentData("GOOG", "AAPL")

for _, day := range days {
	fmt.Println(day.Ask)
}

TradingDay

Both the CurrentPiece and HistoricalPeice types implement the interface TradingDay

type TradingDay interface {
	Price() float64
}

Price() returns the Ask field from the CurrentPiece and the Close field from the HistoricalPiece

go-yql-finance's People

Contributors

bhoeting avatar

Stargazers

Prof Syd Xu avatar  avatar  avatar

Watchers

James Cloos avatar  avatar

Forkers

abnd90 sndnvaps

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.