add max exchange

This commit is contained in:
c9s 2020-08-31 12:32:51 +08:00
parent 31be04cc74
commit dd55857423
3 changed files with 20 additions and 11 deletions

View File

@ -493,4 +493,3 @@ func (e *Exchange) BatchQueryKLineWindows(ctx context.Context, symbol string, in
return klineWindows, nil
}

View File

@ -0,0 +1,9 @@
package max
type Exchange struct {
}
func NewExchange(key, secret string) *Exchange {
return &Exchange{
}
}

View File

@ -0,0 +1 @@
package max