11 lines
308 B
Go
11 lines
308 B
Go
|
|
package entities
|
||
|
|
|
||
|
|
import "github.com/shopspring/decimal"
|
||
|
|
|
||
|
|
type Price struct {
|
||
|
|
Ask decimal.Decimal // limit seller / market buyer. ask > bid.
|
||
|
|
Bid decimal.Decimal // limit buyer / market seller. bid < ask.
|
||
|
|
Spread decimal.Decimal // delta between ask and bid.
|
||
|
|
Pair Pair // trading pair
|
||
|
|
}
|