mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
// Code generated by "callbackgen -type TradeCollector"; DO NOT EDIT.
|
|
|
|
package bbgo
|
|
|
|
import (
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
func (c *TradeCollector) OnTrade(cb func(trade types.Trade)) {
|
|
c.tradeCallbacks = append(c.tradeCallbacks, cb)
|
|
}
|
|
|
|
func (c *TradeCollector) EmitTrade(trade types.Trade) {
|
|
for _, cb := range c.tradeCallbacks {
|
|
cb(trade)
|
|
}
|
|
}
|
|
|
|
func (c *TradeCollector) OnPositionUpdate(cb func(position *types.Position)) {
|
|
c.positionUpdateCallbacks = append(c.positionUpdateCallbacks, cb)
|
|
}
|
|
|
|
func (c *TradeCollector) EmitPositionUpdate(position *types.Position) {
|
|
for _, cb := range c.positionUpdateCallbacks {
|
|
cb(position)
|
|
}
|
|
}
|
|
|
|
func (c *TradeCollector) OnProfit(cb func(trade types.Trade, profit fixedpoint.Value, netProfit fixedpoint.Value)) {
|
|
c.profitCallbacks = append(c.profitCallbacks, cb)
|
|
}
|
|
|
|
func (c *TradeCollector) EmitProfit(trade types.Trade, profit fixedpoint.Value, netProfit fixedpoint.Value) {
|
|
for _, cb := range c.profitCallbacks {
|
|
cb(trade, profit, netProfit)
|
|
}
|
|
}
|