This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
tacitus/trade.go

45 lines
1.1 KiB
Go
Raw Normal View History

2017-09-07 23:04:47 -07:00
package tacitus
import (
"github.com/shopspring/decimal"
2017-09-09 10:14:50 -07:00
"strings"
2017-09-07 23:04:47 -07:00
"time"
)
2017-09-09 10:14:50 -07:00
var PRODUCTS = [...]string{"BTCUSD", "ETHUSD"}
2017-09-07 23:04:47 -07:00
type Trade struct {
2017-09-09 10:14:50 -07:00
Id int `json:"-"`
TradeId int `json:"trade_id,"`
Product string `json:"product,"`
Price decimal.Decimal `json:"price,"`
Size decimal.Decimal `json:"size,"`
Buy bool `json:"buy,"`
Sell bool `json:"sell,"`
Timestamp time.Time `json:"timestamp,"`
2017-09-07 23:04:47 -07:00
}
type TradeService interface {
Trade(id int) (*Trade, error)
TradeByTradeId(id int, prod string) (*Trade, error)
CreateTrade(t *Trade) error
DeleteTrade(id int)
TradesInDateRange(product string, start, end time.Time) ([]Trade, error)
2017-09-09 10:14:50 -07:00
FirstTrades(product string, limit int) ([]Trade, error)
LastTrades(product string, limit int) ([]Trade, error)
TradesAfter(product string, id, limit int) ([]Trade, error)
TradesBefore(product string, id, limit int) ([]Trade, error)
}
func ValidProduct(prod string) bool {
prod = strings.ToUpper(prod)
for _, p := range PRODUCTS {
if p == prod {
return true
}
}
return false
2017-09-07 23:04:47 -07:00
}