bbgo_origin/pkg/strategy/drift/output.go

19 lines
413 B
Go
Raw Normal View History

package drift
import (
"io"
"github.com/jedib0t/go-pretty/v6/table"
2022-08-22 18:12:26 +00:00
"github.com/c9s/bbgo/pkg/dynamic"
"github.com/c9s/bbgo/pkg/style"
)
func (s *Strategy) Print(f io.Writer, pretty bool, withColor ...bool) {
var tableStyle *table.Style
if pretty {
tableStyle = style.NewDefaultTableStyle()
}
dynamic.PrintConfig(s, f, tableStyle, len(withColor) > 0 && withColor[0], dynamic.DefaultWhiteList()...)
}