Skip to content

Commit

Permalink
cosmetic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aLca committed Jun 5, 2024
1 parent 7cb150f commit be3bd8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions live_strategys/QQE_Hullband_VolumeOsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ def __init__(self):
self.dar = bt.indicators.EMA(self.atr - self.p.q, period=int((self.p.period * 2) - 1))
self.lines.qqe_line = self.rsi + self.dar

live = True

class QQE_Example(BaseStrategy):
params = (
("ema_length", 20),
Expand Down
3 changes: 1 addition & 2 deletions template_strategys/DCA_QQE_Example_backtesting.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ class QQE_DCA_Example(BaseStrategy):
params = (
('dca_threshold', 1.5),
('take_profit', 2),
('percent_sizer', 0.045), # 0.01 -> 1%
('premium', 0.003), # 0.003 -> 0.3%
('percent_sizer', 0.01), # 0.01 -> 1%
("ema_length", 20),
('hull_length', 53),
("printlog", True),
Expand Down

0 comments on commit be3bd8a

Please sign in to comment.