Fix parsing of market data

master
Christopher Creighton 8 years ago
parent 5232e9a282
commit 641b65aa60
  1. 2
      Makefile
  2. 66
      cnn_market.go

@ -3,7 +3,7 @@
# be found in the LICENSE file. # be found in the LICENSE file.
VERSION = 0.2.0 VERSION = 0.2.0
PACKAGE = github.com/michaeldv/mop/cmd/mop PACKAGE = github.com/mop-tracker/mop/cmd/mop
run: run:
go run ./cmd/mop/main.go go run ./cmd/mop/main.go

@ -57,22 +57,23 @@ func NewMarket() *Market {
market.errors = `` market.errors = ``
const any = `\s*(?:.+?)` const any = `\s*(?:.+?)`
const price = `>([\d\.,]+)</span>` const change = `>([\+\-]?[\d\.,]+)<\/span>`
const price = `>([\d\.,]+)<\/span>`
const percent = `>([\+\-]?[\d\.,]+%?)<` const percent = `>([\+\-]?[\d\.,]+%?)<`
rules := []string{ rules := []string{
`>Dow<`, any, percent, any, price, any, percent, any, `>Dow<`, any, percent, any, price, any, change, any,
`>Nasdaq<`, any, percent, any, price, any, percent, any, `>Nasdaq<`, any, percent, any, price, any, change, any,
`">S&P<`, any, percent, any, price, any, percent, any, `">S&P<`, any, percent, any, price, any, change, any,
`>Nikkei 225<`, any, percent, any, price, any, percent, any, `>10\-year yield<`, any, price, any, percent, any,
`>Hang Seng<`, any, percent, any, price, any, percent, any,
`>FTSE 100<`, any, percent, any, price, any, percent, any,
`>DAX<`, any, percent, any, price, any, percent, any,
`>10-year yield<`, any, price, any, percent, any,
`>Oil<`, any, price, any, percent, any, `>Oil<`, any, price, any, percent, any,
`>Yen<`, any, price, any, percent, any, `>Yen<`, any, price, any, percent, any,
`>Euro<`, any, price, any, percent, any, `>Euro<`, any, price, any, percent, any,
`>Gold<`, any, price, any, percent, any, `>Gold<`, any, price, any, percent, any,
`>Nikkei 225<`, any, percent, any, price, any, change, any,
`>Hang Seng<`, any, percent, any, price, any, change, any,
`>FTSE 100<`, any, percent, any, price, any, change, any,
`>DAX<`, any, percent, any, price, any, change, any,
} }
market.regex = regexp.MustCompile(strings.Join(rules, ``)) market.regex = regexp.MustCompile(strings.Join(rules, ``))
@ -147,37 +148,38 @@ func (market *Market) extract(snippet []byte) *Market {
market.Sp500[`latest`] = matches[8] market.Sp500[`latest`] = matches[8]
market.Sp500[`percent`] = matches[9] market.Sp500[`percent`] = matches[9]
market.Tokyo[`change`] = matches[10]
market.Tokyo[`latest`] = matches[11]
market.Tokyo[`percent`] = matches[12]
market.HongKong[`change`] = matches[13] market.Yield[`name`] = `10-year Yield`
market.HongKong[`latest`] = matches[14] market.Yield[`latest`] = matches[10]
market.HongKong[`percent`] = matches[15] market.Yield[`change`] = matches[11]
market.London[`change`] = matches[16] market.Oil[`latest`] = matches[12]
market.London[`latest`] = matches[17] market.Oil[`change`] = matches[13]
market.London[`percent`] = matches[18]
market.Frankfurt[`change`] = matches[19] market.Yen[`latest`] = matches[14]
market.Frankfurt[`latest`] = matches[20] market.Yen[`change`] = matches[15]
market.Frankfurt[`percent`] = matches[21]
market.Yield[`name`] = `10-year Yield` market.Euro[`latest`] = matches[16]
market.Yield[`latest`] = matches[22] market.Euro[`change`] = matches[17]
market.Yield[`change`] = matches[23]
market.Gold[`latest`] = matches[18]
market.Gold[`change`] = matches[19]
market.Oil[`latest`] = matches[24] market.Tokyo[`change`] = matches[20]
market.Oil[`change`] = matches[25] market.Tokyo[`latest`] = matches[21]
market.Tokyo[`percent`] = matches[22]
market.Yen[`latest`] = matches[26] market.HongKong[`change`] = matches[23]
market.Yen[`change`] = matches[27] market.HongKong[`latest`] = matches[24]
market.HongKong[`percent`] = matches[25]
market.Euro[`latest`] = matches[28] market.London[`change`] = matches[26]
market.Euro[`change`] = matches[29] market.London[`latest`] = matches[27]
market.London[`percent`] = matches[28]
market.Gold[`latest`] = matches[30] market.Frankfurt[`change`] = matches[29]
market.Gold[`change`] = matches[31] market.Frankfurt[`latest`] = matches[30]
market.Frankfurt[`percent`] = matches[31]
return market return market
} }

Loading…
Cancel
Save