19 lines
429 B
Go
19 lines
429 B
Go
|
package drift
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
|
||
|
"github.com/jedib0t/go-pretty/v6/table"
|
||
|
|
||
|
"git.qtrade.icu/lychiyu/bbgo/pkg/dynamic"
|
||
|
"git.qtrade.icu/lychiyu/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()...)
|
||
|
}
|