Przeglądaj źródła

Alpaca: qqq06f

- LONG: prevent LONG positions if current price is under DEMA(8)
- decrease order size down to .3 if its after 4pm
Alexey Kim 1 miesiąc temu
rodzic
commit
aba8f02121
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      strategy/alpaca/qqq06f/strategy.go

+ 2 - 2
strategy/alpaca/qqq06f/strategy.go

@@ -109,8 +109,8 @@ func (s alpacaQQQ) Handle(market sentio.Market, proba float64) ([]sentio.Strateg
 				continue
 			}
 
-			// prevent LONG positions if current price is under DEMA(8)
-			if lb.Close/dema[0] < .999 {
+			// prevent LONG positions if current price is greater DEMA(8)
+			if lb.Close/dema[0] > .999 {
 				continue
 			}