2020-08-03 05:17:17 +00:00
package service
import (
2021-01-26 09:21:18 +00:00
"strings"
"time"
2020-08-03 05:17:17 +00:00
"github.com/jmoiron/sqlx"
2020-08-03 07:25:06 +00:00
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
2020-09-05 08:22:46 +00:00
2020-10-11 08:46:15 +00:00
"github.com/c9s/bbgo/pkg/types"
2020-08-03 05:17:17 +00:00
)
2021-01-26 09:21:18 +00:00
type TradingVolume struct {
Year int ` db:"year" json:"year" `
Month int ` db:"month" json:"month,omitempty" `
Day int ` db:"day" json:"day,omitempty" `
Time time . Time ` json:"time,omitempty" `
Exchange string ` db:"exchange" json:"exchange,omitempty" `
Symbol string ` db:"symbol" json:"symbol,omitempty" `
QuoteVolume float64 ` db:"quote_volume" json:"quoteVolume" `
}
type TradingVolumeQueryOptions struct {
GroupByPeriod string
2021-01-28 10:51:35 +00:00
SegmentBy string
2021-01-26 09:21:18 +00:00
}
2020-08-03 05:17:17 +00:00
type TradeService struct {
2020-08-03 07:25:06 +00:00
DB * sqlx . DB
2020-08-03 05:17:17 +00:00
}
2020-08-03 07:25:06 +00:00
func NewTradeService ( db * sqlx . DB ) * TradeService {
2020-08-03 05:17:17 +00:00
return & TradeService { db }
}
2021-01-26 09:21:18 +00:00
func ( s * TradeService ) QueryTradingVolume ( startTime time . Time , options TradingVolumeQueryOptions ) ( [ ] TradingVolume , error ) {
var sel [ ] string
var groupBys [ ] string
var orderBys [ ] string
where := [ ] string { "traded_at > :start_time" }
args := map [ string ] interface { } {
// "symbol": symbol,
// "exchange": ex,
// "is_margin": isMargin,
// "is_isolated": isIsolated,
"start_time" : startTime ,
}
switch options . GroupByPeriod {
case "month" :
sel = append ( sel , "YEAR(traded_at) AS year" , "MONTH(traded_at) AS month" )
groupBys = append ( [ ] string { "MONTH(traded_at)" , "YEAR(traded_at)" } , groupBys ... )
orderBys = append ( orderBys , "year ASC" , "month ASC" )
case "year" :
sel = append ( sel , "YEAR(traded_at) AS year" )
groupBys = append ( [ ] string { "YEAR(traded_at)" } , groupBys ... )
orderBys = append ( orderBys , "year ASC" )
case "day" :
fallthrough
default :
sel = append ( sel , "YEAR(traded_at) AS year" , "MONTH(traded_at) AS month" , "DAY(traded_at) AS day" )
groupBys = append ( [ ] string { "DAY(traded_at)" , "MONTH(traded_at)" , "YEAR(traded_at)" } , groupBys ... )
orderBys = append ( orderBys , "year ASC" , "month ASC" , "day ASC" )
}
2021-01-28 10:51:35 +00:00
switch options . SegmentBy {
case "symbol" :
sel = append ( sel , "symbol" )
groupBys = append ( [ ] string { "symbol" } , groupBys ... )
orderBys = append ( orderBys , "symbol" )
case "exchange" :
2021-01-26 09:21:18 +00:00
sel = append ( sel , "exchange" )
groupBys = append ( [ ] string { "exchange" } , groupBys ... )
orderBys = append ( orderBys , "exchange" )
}
sel = append ( sel , "SUM(quantity * price) AS quote_volume" )
sql := ` SELECT ` + strings . Join ( sel , ", " ) + ` FROM trades ` +
` WHERE ` + strings . Join ( where , " AND " ) +
` GROUP BY ` + strings . Join ( groupBys , ", " ) +
` ORDER BY ` + strings . Join ( orderBys , ", " )
log . Info ( sql )
rows , err := s . DB . NamedQuery ( sql , args )
if err != nil {
return nil , errors . Wrap ( err , "query last trade error" )
}
if rows . Err ( ) != nil {
return nil , rows . Err ( )
}
defer rows . Close ( )
var records [ ] TradingVolume
for rows . Next ( ) {
var record TradingVolume
err = rows . StructScan ( & record )
if err != nil {
return records , err
}
record . Time = time . Date ( record . Year , time . Month ( record . Month ) , record . Day , 0 , 0 , 0 , 0 , time . UTC )
records = append ( records , record )
}
return records , rows . Err ( )
}
2020-08-03 05:17:17 +00:00
// QueryLast queries the last trade from the database
2021-01-19 18:09:12 +00:00
func ( s * TradeService ) QueryLast ( ex types . ExchangeName , symbol string , isMargin bool , isIsolated bool ) ( * types . Trade , error ) {
log . Infof ( "querying last trade exchange = %s AND symbol = %s AND is_margin = %v AND is_isolated = %v" , ex , symbol , isMargin , isIsolated )
rows , err := s . DB . NamedQuery ( ` SELECT * FROM trades WHERE exchange = :exchange AND symbol = :symbol AND is_margin = :is_margin AND is_isolated = :is_isolated ORDER BY gid DESC LIMIT 1 ` , map [ string ] interface { } {
"symbol" : symbol ,
"exchange" : ex ,
"is_margin" : isMargin ,
"is_isolated" : isIsolated ,
2020-08-03 05:17:17 +00:00
} )
if err != nil {
2020-08-03 07:25:06 +00:00
return nil , errors . Wrap ( err , "query last trade error" )
}
if rows . Err ( ) != nil {
return nil , rows . Err ( )
2020-08-03 05:17:17 +00:00
}
defer rows . Close ( )
2020-08-03 07:25:06 +00:00
if rows . Next ( ) {
var trade types . Trade
err = rows . StructScan ( & trade )
return & trade , err
}
2020-08-03 05:17:17 +00:00
2020-08-03 07:25:06 +00:00
return nil , rows . Err ( )
2020-08-03 05:17:17 +00:00
}
2020-11-05 03:00:51 +00:00
func ( s * TradeService ) QueryForTradingFeeCurrency ( ex types . ExchangeName , symbol string , feeCurrency string ) ( [ ] types . Trade , error ) {
rows , err := s . DB . NamedQuery ( ` SELECT * FROM trades WHERE exchange = :exchange AND (symbol = :symbol OR fee_currency = :fee_currency) ORDER BY traded_at ASC ` , map [ string ] interface { } {
"exchange" : ex ,
2020-10-09 05:21:42 +00:00
"symbol" : symbol ,
2020-08-04 01:47:54 +00:00
"fee_currency" : feeCurrency ,
2020-08-03 12:06:33 +00:00
} )
if err != nil {
return nil , err
}
defer rows . Close ( )
return s . scanRows ( rows )
}
2020-11-05 03:00:51 +00:00
func ( s * TradeService ) Query ( ex types . ExchangeName , symbol string ) ( [ ] types . Trade , error ) {
rows , err := s . DB . NamedQuery ( ` SELECT * FROM trades WHERE exchange = :exchange AND symbol = :symbol ORDER BY gid ASC ` , map [ string ] interface { } {
"exchange" : ex ,
"symbol" : symbol ,
2020-08-03 05:17:17 +00:00
} )
if err != nil {
return nil , err
}
defer rows . Close ( )
2020-08-03 12:06:33 +00:00
return s . scanRows ( rows )
}
2020-10-09 05:21:42 +00:00
func ( s * TradeService ) scanRows ( rows * sqlx . Rows ) ( trades [ ] types . Trade , err error ) {
2020-08-03 05:17:17 +00:00
for rows . Next ( ) {
var trade types . Trade
if err := rows . StructScan ( & trade ) ; err != nil {
2020-11-05 03:00:51 +00:00
return trades , err
2020-08-03 05:17:17 +00:00
}
2020-08-03 07:25:06 +00:00
2020-08-03 05:17:17 +00:00
trades = append ( trades , trade )
}
2020-08-03 07:25:06 +00:00
return trades , rows . Err ( )
2020-08-03 05:17:17 +00:00
}
func ( s * TradeService ) Insert ( trade types . Trade ) error {
2020-08-03 07:25:06 +00:00
_ , err := s . DB . NamedExec ( `
2021-01-19 15:33:06 +00:00
INSERT IGNORE INTO trades ( id , exchange , order_id , symbol , price , quantity , quote_quantity , side , is_buyer , is_maker , fee , fee_currency , traded_at , is_margin , is_isolated )
VALUES ( : id , : exchange , : order_id , : symbol , : price , : quantity , : quote_quantity , : side , : is_buyer , : is_maker , : fee , : fee_currency , : traded_at , : is_margin , : is_isolated ) ` ,
2020-08-03 05:17:17 +00:00
trade )
return err
}