|
@@ -101,7 +101,7 @@ func (s alpacaQQQ) Handle(market sentio.Market, proba float64) ([]sentio.Strateg
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
|
|
|
|
- if dema = market.SMA(s.PositionSymbols()[sentio.LONG], 15, 8, 1); dema == nil || len(dema) < 1 {
|
|
|
|
|
|
+ if dema = market.DEMA(s.PositionSymbols()[sentio.LONG], 15, 8, 1); dema == nil || len(dema) < 1 {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
|
|
|
|
@@ -109,7 +109,7 @@ func (s alpacaQQQ) Handle(market sentio.Market, proba float64) ([]sentio.Strateg
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
|
|
|
|
- // prevent SHORTing if current price is under DEMA(8)
|
|
|
|
|
|
+ // prevent LONG positions if current price is under DEMA(8)
|
|
if lb.Close/dema[0] < .999 {
|
|
if lb.Close/dema[0] < .999 {
|
|
continue
|
|
continue
|
|
}
|
|
}
|