|
@@ -21,6 +21,6 @@ type Market interface {
|
|
|
Orders(criteria OrderListCriteria) ([]Order, error)
|
|
|
Portfolio() (Portfolio, error)
|
|
|
PortfolioHistory() ([]PortfolioRecord, error)
|
|
|
- Quotes(symbols ...string) (map[string]Quote, error)
|
|
|
- HistoricalBars(symbols []string, interval time.Duration, from *time.Time) (map[string][]Bar, error)
|
|
|
+ Quotes() (map[string]Quote, error)
|
|
|
+ HistoricalBars(interval time.Duration, from *time.Time) (map[string][]Bar, error)
|
|
|
}
|