|
@@ -19,6 +19,8 @@ type Market interface {
|
|
|
IsMarketOpened() bool
|
|
|
Time() Clock
|
|
|
|
|
|
+ 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)
|
|
|
CancelOrder(id string) error
|