소스 검색

Market

- add Quote
Alexey Kim 2 주 전
부모
커밋
f8d078a111
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      market.go
  2. 9 0
      quote.go

+ 1 - 0
market.go

@@ -27,6 +27,7 @@ type Market interface {
 	PortfolioHistory() ([]PortfolioRecord, error)
 
 	HistoricalBars(symbol string, interval time.Duration, from *time.Time) ([]Bar, error)
+	Quote(symbol string) (Quote, error)
 
 	Account() (MarketAccount, error)
 	MaxBudget() float64

+ 9 - 0
quote.go

@@ -0,0 +1,9 @@
+package sentio
+
+type Quote struct {
+	AskPrice float64
+	AskSize  int
+
+	BidPrice float64
+	BidSize  int
+}