11 lines
74 B
Go
11 lines
74 B
Go
package model
|
|
|
|
type Signal int
|
|
|
|
const (
|
|
Hold Signal = iota
|
|
Buy
|
|
Sell
|
|
)
|
|
|