소스 검색

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 개월 전
부모
커밋
aba8f02121
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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
 			}