bbgo/pkg/util/paper_trade.go

7 lines
98 B
Go

package util
func IsPaperTrade() bool {
v, ok := GetEnvVarBool("PAPER_TRADE")
return ok && v
}