11 lines
248 B
Go
11 lines
248 B
Go
package wise
|
|
|
|
import "git.qtrade.icu/lychiyu/bbgo/pkg/fixedpoint"
|
|
|
|
type Rate struct {
|
|
Value fixedpoint.Value `json:"rate"`
|
|
Target string `json:"target"`
|
|
Source string `json:"source"`
|
|
Time Time `json:"time"`
|
|
}
|