Chris Ioannidis
Results
1
comments of
Chris Ioannidis
late reply, but in: ```python if self.macd[0] > 0 and self.macd[1] > 0 and crossover(self.ema_fast, self.ema_slow): self.sell() elif self.macd[0] < 0 and self.macd[1] < 0 and crossover(self.ema_slow, self.ema_fast): self.buy(size=self.order_size, limit=None,...