Browse Source

Market

- fix: Quote
Alexey Kim 2 weeks ago
parent
commit
a79df5d2b5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      market.go

+ 1 - 1
market.go

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