mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
xmaker: profit object can be nil
This commit is contained in:
parent
f96e0d6552
commit
7367ea73b8
|
@ -929,14 +929,16 @@ func (s *Strategy) CrossRun(
|
|||
})
|
||||
|
||||
s.tradeCollector.OnProfit(func(trade types.Trade, profit *types.Profit) {
|
||||
if s.CircuitBreaker != nil {
|
||||
s.CircuitBreaker.RecordProfit(profit.Profit, trade.Time.Time())
|
||||
if profit != nil {
|
||||
if s.CircuitBreaker != nil {
|
||||
s.CircuitBreaker.RecordProfit(profit.Profit, trade.Time.Time())
|
||||
}
|
||||
|
||||
bbgo.Notify(profit)
|
||||
|
||||
s.ProfitStats.AddProfit(*profit)
|
||||
s.Environment.RecordPosition(s.Position, trade, profit)
|
||||
}
|
||||
|
||||
bbgo.Notify(profit)
|
||||
|
||||
s.ProfitStats.AddProfit(*profit)
|
||||
s.Environment.RecordPosition(s.Position, trade, profit)
|
||||
})
|
||||
|
||||
s.tradeCollector.OnPositionUpdate(func(position *types.Position) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user