package strategy import "alpaca-bot/internal/model" type Strategy interface { OnBar(bar model.Bar) model.Signal }