- fix incorrect proba for SHORT
@@ -80,7 +80,7 @@ func (s alpacaQQQ) Handle(market sentio.Market, proba float64) ([]sentio.Strateg
continue
}
- if ok && sentio.SHORT == side && proba > .999 {
+ if ok && sentio.SHORT == side && proba > .9999 {
orders = append(orders, sentio.StrategyOrder{
Symbol: symbol,
Action: sentio.OrderSell,