Explorar el Código

Market

- HistoricalBars
Alexey Kim hace 2 semanas
padre
commit
9729b3dcc8
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      market.go

+ 3 - 0
market.go

@@ -3,6 +3,7 @@ package sentio
 import (
 	"context"
 	"errors"
+	"time"
 )
 
 var (
@@ -25,6 +26,8 @@ type Market interface {
 	Portfolio() (Portfolio, error)
 	PortfolioHistory() ([]PortfolioRecord, error)
 
+	HistoricalBars(symbol string, interval time.Duration, from *time.Time) ([]Bar, error)
+
 	Account() (MarketAccount, error)
 	MaxBudget() float64
 	Cooldown() uint8