소스 검색

Market

- refactoring LatestBar(symbol string) (*Bar, error)
Alexey Kim 1 개월 전
부모
커밋
eec3ca0f16
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      market.go

+ 1 - 1
market.go

@@ -19,7 +19,7 @@ type Market interface {
 	IsMarketOpened() bool
 	Time() Clock
 
-	LatestBar(symbol string) (Bar, error)
+	LatestBar(symbol string) (*Bar, error)
 
 	Buy(ctx context.Context, symbol string, ratio float64) (Order, error)
 	Sell(ctx context.Context, symbol string, ratio float64) (Order, error)