mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
642 B
642 B
Interaction
In your strategy, you can register your messenger interaction by commands.
package mymaker
import (
"github.com/c9s/bbgo/pkg/bbgo"
)
func init() {
bbgo.RegisterInteraction(&MyInteraction{})
}
type MyInteraction struct {}
func (m *MyInteraction) Commands(interact bbgo.Interact) {
interact.Command("closePosition", func(w bbgo.InteractWriter, symbol string, percentage float64) {
})
}
type Strategy struct {}
The interaction engine parses the command from the messenger software programs like Telegram or Slack. And then pass the arguments to the command handler defined in the strategy.