Questions tagged [enigma-catalyst]

Catalyst is a project built on top of the well-established Zipline. It is an algorithmic trading library for crypto-assets written in Python. It allows trading strategies to be easily expressed and backtested against historical data, providing analytics and insights regarding a particular strategy's performance. Catalyst also supports live-trading of crypto-assets starting with three exchanges (Bitfinex, Bittrex, and Poloniex)

4 questions
10
votes
1 answer

ENIGMA CATALYST - WARNING: Loader: Refusing to download new treasury data because a download succeeded

I'm playing around with Enigma Catalyst. Unfortunately, the documentation is rather limited. So I'm trying to run their example "hello world" type algo which looks as follows: from catalyst import run_algorithm from catalyst.api import order,…
Timothy Coetzee
  • 5,626
  • 9
  • 34
  • 97
2
votes
1 answer

Error retrieving minute frequency data for Bittrex exchange using Enigma Catalyst

I am trying to ingest minute data from Bittrex exchange for currency pair ltc_btc using the Enigma Catalyst library: From CLI: $ catalyst ingest-exchange -x bittrex -f minute -i ltc_btc got: File…
Cyzanfar
  • 6,997
  • 9
  • 43
  • 81
1
vote
0 answers

Python Install enigma-catalyst but errored out. " Feature ImportError: cannot import name 'Feature'"

I was trying to install catalyst using conda https://www.enigma.co/catalyst/install.html#troubleshooting-conda-install but running into error. I have installed 'Python 3.5, 3.6: Visual C++ 2015 Build Tools, which installs Visual C++ version 14.0.…
George
  • 113
  • 9
0
votes
0 answers

AttributeError in Pandas Dataframe When Reading in JSON

When I run this file to extract Bitcoin data from an exchange into JSON format: import os import pytz from datetime import datetime import json from catalyst.api import record, symbol, symbols from catalyst.utils.run_algo import run_algorithm def…
Goose
  • 2,130
  • 10
  • 32
  • 43