mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-22 12:40:30 +08:00
Compare commits
60
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d88d6a2c7 | ||
|
|
9c3a9e233b | ||
|
|
c43509c28e | ||
|
|
0e0bfc82b5 | ||
|
|
2f660db511 | ||
|
|
fdc5a30060 | ||
|
|
bb1d96ed5d | ||
|
|
59501905ab | ||
|
|
2b85732e36 | ||
|
|
284c749bb5 | ||
|
|
d7f5e73f84 | ||
|
|
cde69da173 | ||
|
|
bcc75f6b00 | ||
|
|
f179381b64 | ||
|
|
10ba53b897 | ||
|
|
1cfe3b1bb2 | ||
|
|
268ff9c826 | ||
|
|
7eb184d946 | ||
|
|
1cc34a1485 | ||
|
|
aa2f2f3627 | ||
|
|
7e373e2f9c | ||
|
|
942e6f263c | ||
|
|
2e6d7d28ba | ||
|
|
3a823ea457 | ||
|
|
4daba6cfb4 | ||
|
|
fa018e2e0c | ||
|
|
315d25f7c0 | ||
|
|
cc7ffada96 | ||
|
|
5394c1bc91 | ||
|
|
b230b73829 | ||
|
|
930a68ab4a | ||
|
|
4e833981e4 | ||
|
|
2ea402ff10 | ||
|
|
da6b024edc | ||
|
|
565e9a3cea | ||
|
|
3c10d19a7e | ||
|
|
cf96e047cd | ||
|
|
6f6a8e1272 | ||
|
|
c2a02e7074 | ||
|
|
7d2cf97fbf | ||
|
|
195469897c | ||
|
|
c7b422d465 | ||
|
|
2dbace37bb | ||
|
|
2e903fd42c | ||
|
|
47a104b29c | ||
|
|
d248581523 | ||
|
|
48f6300e08 | ||
|
|
f7a143cb78 | ||
|
|
2f7cd97852 | ||
|
|
73eca75ed9 | ||
|
|
2ade2989e8 | ||
|
|
b1d5acf2ad | ||
|
|
5d5ec6b9be | ||
|
|
1b84023c5d | ||
|
|
97f3329c1b | ||
|
|
bdeb344999 | ||
|
|
52e1de954f | ||
|
|
7b9eafef4e | ||
|
|
8b141a0c28 | ||
|
|
7f602d7fcc |
+40
-2
@@ -38,7 +38,7 @@ except NameError:
|
|||||||
'--default-extension/--no-default-extension',
|
'--default-extension/--no-default-extension',
|
||||||
is_flag=True,
|
is_flag=True,
|
||||||
default=True,
|
default=True,
|
||||||
help="Don't load the default catalyst extension.py file in $ZIPLINE_HOME.",
|
help="Don't load the default catalyst extension.py file in $CATALYST_HOME.",
|
||||||
)
|
)
|
||||||
@click.version_option()
|
@click.version_option()
|
||||||
def main(extension, strict_extensions, default_extension):
|
def main(extension, strict_extensions, default_extension):
|
||||||
@@ -495,6 +495,10 @@ def ingest_exchange(exchange_name, data_frequency, start, end,
|
|||||||
"""
|
"""
|
||||||
Ingest data for the given exchange.
|
Ingest data for the given exchange.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
if exchange_name is None:
|
||||||
|
ctx.fail("must specify an exchange name '-x'")
|
||||||
|
|
||||||
exchange = get_exchange(exchange_name)
|
exchange = get_exchange(exchange_name)
|
||||||
exchange_bundle = ExchangeBundle(exchange)
|
exchange_bundle = ExchangeBundle(exchange)
|
||||||
|
|
||||||
@@ -509,6 +513,40 @@ def ingest_exchange(exchange_name, data_frequency, start, end,
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@main.command(name='clean-exchange')
|
||||||
|
@click.option(
|
||||||
|
'-x',
|
||||||
|
'--exchange-name',
|
||||||
|
type=click.Choice({'bitfinex', 'bittrex', 'poloniex'}),
|
||||||
|
help='The name of the exchange bundle to ingest (supported: bitfinex,'
|
||||||
|
' bittrex, poloniex).',
|
||||||
|
)
|
||||||
|
@click.option(
|
||||||
|
'-f',
|
||||||
|
'--data-frequency',
|
||||||
|
type=click.Choice({'daily', 'minute'}),
|
||||||
|
default=None,
|
||||||
|
help='The bundle data frequency to remove. If not specified, it will '
|
||||||
|
'remove both daily and minute bundles.',
|
||||||
|
)
|
||||||
|
@click.pass_context
|
||||||
|
def clean_exchange(ctx, exchange_name, data_frequency):
|
||||||
|
"""Clean up bundles from 'ingest-exchange'.
|
||||||
|
"""
|
||||||
|
|
||||||
|
if exchange_name is None:
|
||||||
|
ctx.fail("must specify an exchange name '-x'")
|
||||||
|
|
||||||
|
exchange = get_exchange(exchange_name)
|
||||||
|
exchange_bundle = ExchangeBundle(exchange)
|
||||||
|
|
||||||
|
click.echo('Cleaning exchange bundle {}...'.format(exchange_name))
|
||||||
|
exchange_bundle.clean(
|
||||||
|
data_frequency=data_frequency,
|
||||||
|
)
|
||||||
|
click.echo('Done')
|
||||||
|
|
||||||
|
|
||||||
@main.command()
|
@main.command()
|
||||||
@click.option(
|
@click.option(
|
||||||
'-b',
|
'-b',
|
||||||
@@ -598,7 +636,7 @@ def ingest(ctx, bundle, exchange_name, compile_locally, assets_version,
|
|||||||
' This may not be passed with -e / --before or -a / --after',
|
' This may not be passed with -e / --before or -a / --after',
|
||||||
)
|
)
|
||||||
def clean(bundle, before, after, keep_last):
|
def clean(bundle, before, after, keep_last):
|
||||||
"""Clean up data downloaded with the ingest command.
|
"""Clean up bundles from 'ingest'.
|
||||||
"""
|
"""
|
||||||
bundles_module.clean(
|
bundles_module.clean(
|
||||||
bundle,
|
bundle,
|
||||||
|
|||||||
@@ -138,8 +138,9 @@ from catalyst.gens.sim_engine import MinuteSimulationClock
|
|||||||
from catalyst.sources.benchmark_source import BenchmarkSource
|
from catalyst.sources.benchmark_source import BenchmarkSource
|
||||||
from catalyst.catalyst_warnings import ZiplineDeprecationWarning
|
from catalyst.catalyst_warnings import ZiplineDeprecationWarning
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
log = logbook.Logger("ZiplineLog")
|
log = logbook.Logger("CatalystLog", level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class TradingAlgorithm(object):
|
class TradingAlgorithm(object):
|
||||||
|
|||||||
@@ -17,6 +17,8 @@
|
|||||||
"""
|
"""
|
||||||
Cythonized Asset object.
|
Cythonized Asset object.
|
||||||
"""
|
"""
|
||||||
|
import hashlib
|
||||||
|
|
||||||
cimport cython
|
cimport cython
|
||||||
from cpython.number cimport PyNumber_Index
|
from cpython.number cimport PyNumber_Index
|
||||||
from cpython.object cimport (
|
from cpython.object cimport (
|
||||||
@@ -501,7 +503,11 @@ cdef class TradingPair(Asset):
|
|||||||
|
|
||||||
if sid == 0 or sid is None:
|
if sid == 0 or sid is None:
|
||||||
try:
|
try:
|
||||||
sid = abs(hash(symbol)) % (10 ** 4)
|
# sid = abs(hash(symbol)) % (10 ** 4)
|
||||||
|
# TODO: try to encode the symbol in the main scope
|
||||||
|
sid = int(
|
||||||
|
hashlib.sha256(symbol.encode('utf-8')).hexdigest(), 16
|
||||||
|
) % 10 ** 6
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise SidHashError(symbol=symbol)
|
raise SidHashError(symbol=symbol)
|
||||||
|
|
||||||
|
|||||||
@@ -76,7 +76,9 @@ from catalyst.utils.numpy_utils import as_column
|
|||||||
from catalyst.utils.preprocess import preprocess
|
from catalyst.utils.preprocess import preprocess
|
||||||
from catalyst.utils.sqlite_utils import group_into_chunks, coerce_string_to_eng
|
from catalyst.utils.sqlite_utils import group_into_chunks, coerce_string_to_eng
|
||||||
|
|
||||||
log = Logger('assets.py')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('assets.py', level=LOG_LEVEL)
|
||||||
|
|
||||||
# A set of fields that need to be converted to strings before building an
|
# A set of fields that need to be converted to strings before building an
|
||||||
# Asset to avoid unicode fields
|
# Asset to avoid unicode fields
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
import logbook
|
||||||
|
|
||||||
|
LOG_LEVEL = logbook.INFO
|
||||||
@@ -212,16 +212,16 @@ class PoloniexCurator(object):
|
|||||||
def write_ohlcv_file(self, currencyPair):
|
def write_ohlcv_file(self, currencyPair):
|
||||||
csv_trades = CSV_OUT_FOLDER + 'crypto_trades-' + currencyPair + '.csv'
|
csv_trades = CSV_OUT_FOLDER + 'crypto_trades-' + currencyPair + '.csv'
|
||||||
csv_1min = CSV_OUT_FOLDER + 'crypto_1min-' + currencyPair + '.csv'
|
csv_1min = CSV_OUT_FOLDER + 'crypto_1min-' + currencyPair + '.csv'
|
||||||
if( os.path.isfile(csv_1min) ):
|
#if( os.path.isfile(csv_1min) ):
|
||||||
log.debug(currencyPair+': 1min data already present. Delete the file if you want to rebuild it.')
|
# log.debug(currencyPair+': 1min data already present. Delete the file if you want to rebuild it.')
|
||||||
else:
|
#else:
|
||||||
df = pd.read_csv(csv_trades, names=['tradeID','date','type','rate','amount','total','globalTradeID'],
|
df = pd.read_csv(csv_trades, names=['tradeID','date','type','rate','amount','total','globalTradeID'],
|
||||||
dtype = {'tradeID': int, 'date': str, 'type': str, 'rate': float, 'amount': float, 'total': float, 'globalTradeID': int } )
|
dtype = {'tradeID': int, 'date': str, 'type': str, 'rate': float, 'amount': float, 'total': float, 'globalTradeID': int } )
|
||||||
df.drop(['tradeID','type','amount','globalTradeID'], axis=1, inplace=True)
|
df.drop(['tradeID','type','amount','globalTradeID'], axis=1, inplace=True)
|
||||||
df['date'] = pd.to_datetime(df['date'], infer_datetime_format=True)
|
df['date'] = pd.to_datetime(df['date'], infer_datetime_format=True)
|
||||||
ohlcv = self.generate_ohlcv(df)
|
ohlcv = self.generate_ohlcv(df)
|
||||||
try:
|
try:
|
||||||
with open(csv_1min, 'ab') as csvfile:
|
with open(csv_1min, 'w') as csvfile:
|
||||||
csvwriter = csv.writer(csvfile)
|
csvwriter = csv.writer(csvfile)
|
||||||
for item in ohlcv.itertuples():
|
for item in ohlcv.itertuples():
|
||||||
if item.Index == 0:
|
if item.Index == 0:
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ cpdef _read_bcolz_data(ctable_t table,
|
|||||||
else:
|
else:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if column_name in ['open', 'high', 'low', 'close']:
|
if column_name in ['open', 'high', 'low', 'close', 'volume']:
|
||||||
where_nan = (outbuf == 0)
|
where_nan = (outbuf == 0)
|
||||||
outbuf_as_float = outbuf.astype(float64) * .000000001
|
outbuf_as_float = outbuf.astype(float64) * .000000001
|
||||||
outbuf_as_float[where_nan] = NAN
|
outbuf_as_float[where_nan] = NAN
|
||||||
|
|||||||
@@ -30,8 +30,10 @@ from catalyst.utils.cli import (
|
|||||||
)
|
)
|
||||||
from catalyst.utils.memoize import lazyval
|
from catalyst.utils.memoize import lazyval
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
logbook.StderrHandler().push_application()
|
logbook.StderrHandler().push_application()
|
||||||
log = logbook.Logger(__name__)
|
log = logbook.Logger(__name__, level=LOG_LEVEL)
|
||||||
|
|
||||||
DEFAULT_RETRIES = 5
|
DEFAULT_RETRIES = 5
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,9 @@ from catalyst.utils.cli import maybe_show_progress
|
|||||||
|
|
||||||
from . import core as bundles
|
from . import core as bundles
|
||||||
|
|
||||||
log = Logger(__name__)
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger(__name__, level=LOG_LEVEL)
|
||||||
seconds_per_call = (pd.Timedelta('10 minutes') / 2000).total_seconds()
|
seconds_per_call = (pd.Timedelta('10 minutes') / 2000).total_seconds()
|
||||||
|
|
||||||
class QuandlBundle(BaseEquityPricingBundle):
|
class QuandlBundle(BaseEquityPricingBundle):
|
||||||
|
|||||||
@@ -68,7 +68,9 @@ from catalyst.errors import (
|
|||||||
HistoryWindowStartsBeforeData,
|
HistoryWindowStartsBeforeData,
|
||||||
)
|
)
|
||||||
|
|
||||||
log = Logger('DataPortal')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('DataPortal', level=LOG_LEVEL)
|
||||||
|
|
||||||
BASE_FIELDS = frozenset([
|
BASE_FIELDS = frozenset([
|
||||||
"open",
|
"open",
|
||||||
|
|||||||
@@ -32,7 +32,9 @@ from ..utils.paths import (
|
|||||||
data_root,
|
data_root,
|
||||||
)
|
)
|
||||||
|
|
||||||
logger = logbook.Logger('Loader')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
logger = logbook.Logger('Loader', level=LOG_LEVEL)
|
||||||
|
|
||||||
# Mapping from index symbol to appropriate bond data
|
# Mapping from index symbol to appropriate bond data
|
||||||
INDEX_MAPPING = {
|
INDEX_MAPPING = {
|
||||||
|
|||||||
@@ -44,7 +44,9 @@ from catalyst.utils.calendars import get_calendar
|
|||||||
from catalyst.utils.cli import maybe_show_progress
|
from catalyst.utils.cli import maybe_show_progress
|
||||||
from catalyst.utils.memoize import lazyval
|
from catalyst.utils.memoize import lazyval
|
||||||
|
|
||||||
logger = logbook.Logger('MinuteBars')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
logger = logbook.Logger('MinuteBars', level=LOG_LEVEL)
|
||||||
|
|
||||||
US_EQUITIES_MINUTES_PER_DAY = 390
|
US_EQUITIES_MINUTES_PER_DAY = 390
|
||||||
FUTURES_MINUTES_PER_DAY = 1440
|
FUTURES_MINUTES_PER_DAY = 1440
|
||||||
|
|||||||
@@ -83,7 +83,9 @@ from catalyst.utils.cli import (
|
|||||||
from ._equities import _compute_row_slices, _read_bcolz_data
|
from ._equities import _compute_row_slices, _read_bcolz_data
|
||||||
from ._adjustments import load_adjustments_from_sqlite
|
from ._adjustments import load_adjustments_from_sqlite
|
||||||
|
|
||||||
logger = logbook.Logger('UsEquityPricing')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
logger = logbook.Logger('UsEquityPricing', level=LOG_LEVEL)
|
||||||
|
|
||||||
OHLC = frozenset(['open', 'high', 'low', 'close'])
|
OHLC = frozenset(['open', 'high', 'low', 'close'])
|
||||||
OHLCV = frozenset(['open', 'high', 'low', 'close', 'volume'])
|
OHLCV = frozenset(['open', 'high', 'low', 'close', 'volume'])
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ from catalyst.api import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
def initialize(context):
|
def initialize(context):
|
||||||
context.ASSET_NAME = 'USDT_BTC'
|
context.ASSET_NAME = 'BTC_USDT'
|
||||||
context.TARGET_HODL_RATIO = 0.8
|
context.TARGET_HODL_RATIO = 0.8
|
||||||
context.RESERVE_RATIO = 1.0 - context.TARGET_HODL_RATIO
|
context.RESERVE_RATIO = 1.0 - context.TARGET_HODL_RATIO
|
||||||
|
|
||||||
@@ -56,7 +56,7 @@ def handle_data(context, data):
|
|||||||
context.is_buying = False
|
context.is_buying = False
|
||||||
|
|
||||||
# Retrieve current asset price from pricing data
|
# Retrieve current asset price from pricing data
|
||||||
price = data[context.asset].price
|
price = data.current(context.asset, 'price')
|
||||||
|
|
||||||
# Check if still buying and could (approximately) afford another purchase
|
# Check if still buying and could (approximately) afford another purchase
|
||||||
if context.is_buying and cash > price:
|
if context.is_buying and cash > price:
|
||||||
@@ -70,7 +70,7 @@ def handle_data(context, data):
|
|||||||
|
|
||||||
record(
|
record(
|
||||||
price=price,
|
price=price,
|
||||||
volume=data[context.asset].volume,
|
volume=data.current(context.asset, 'volume'),
|
||||||
cash=cash,
|
cash=cash,
|
||||||
starting_cash=context.portfolio.starting_cash,
|
starting_cash=context.portfolio.starting_cash,
|
||||||
leverage=context.account.leverage,
|
leverage=context.account.leverage,
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
from catalyst.api import order, record, symbol
|
||||||
|
|
||||||
|
|
||||||
|
def initialize(context):
|
||||||
|
context.asset = symbol('btc_usd')
|
||||||
|
|
||||||
|
|
||||||
|
def handle_data(context, data):
|
||||||
|
order(context.asset, 1)
|
||||||
|
record(btc=data.current(context.asset, 'price'))
|
||||||
@@ -4,5 +4,5 @@ def initialize(context):
|
|||||||
context.asset = symbol('btc_usd')
|
context.asset = symbol('btc_usd')
|
||||||
|
|
||||||
def handle_data(context, data):
|
def handle_data(context, data):
|
||||||
order(asset, 1)
|
order(context.asset, 1)
|
||||||
record(btc=data.current(context.asset, 'price'))
|
record(btc = data.current(context.asset, 'price'))
|
||||||
@@ -27,7 +27,7 @@ log = Logger(algo_namespace)
|
|||||||
|
|
||||||
def initialize(context):
|
def initialize(context):
|
||||||
log.info('initializing algo')
|
log.info('initializing algo')
|
||||||
context.ASSET_NAME = 'XRP_USD'
|
context.ASSET_NAME = 'XRP_USDT'
|
||||||
context.asset = symbol(context.ASSET_NAME)
|
context.asset = symbol(context.ASSET_NAME)
|
||||||
|
|
||||||
context.TARGET_POSITIONS = 5000
|
context.TARGET_POSITIONS = 5000
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
import pandas as pd
|
|
||||||
import talib
|
import talib
|
||||||
|
|
||||||
|
import pandas as pd
|
||||||
from catalyst import run_algorithm
|
from catalyst import run_algorithm
|
||||||
from catalyst.api import symbol
|
from catalyst.api import symbol
|
||||||
|
|
||||||
|
|
||||||
def initialize(context):
|
def initialize(context):
|
||||||
print('initializing')
|
print('initializing')
|
||||||
context.asset = symbol('xrp_btc')
|
context.asset = symbol('burst_btc')
|
||||||
|
|
||||||
|
|
||||||
def handle_data(context, data):
|
def handle_data(context, data):
|
||||||
@@ -27,25 +27,25 @@ def handle_data(context, data):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
# run_algorithm(
|
|
||||||
# capital_base=250,
|
|
||||||
# start=pd.to_datetime('2015-08-01', utc=True),
|
|
||||||
# end=pd.to_datetime('2017-9-30', utc=True),
|
|
||||||
# data_frequency='daily',
|
|
||||||
# initialize=initialize,
|
|
||||||
# handle_data=handle_data,
|
|
||||||
# analyze=None,
|
|
||||||
# exchange_name='poloniex',
|
|
||||||
# algo_namespace='simple_loop',
|
|
||||||
# base_currency='eth'
|
|
||||||
# )
|
|
||||||
run_algorithm(
|
run_algorithm(
|
||||||
|
capital_base=250,
|
||||||
|
start=pd.to_datetime('2017-08-01', utc=True),
|
||||||
|
end=pd.to_datetime('2017-9-30', utc=True),
|
||||||
|
data_frequency='minute',
|
||||||
initialize=initialize,
|
initialize=initialize,
|
||||||
handle_data=handle_data,
|
handle_data=handle_data,
|
||||||
analyze=None,
|
analyze=None,
|
||||||
exchange_name='bitfinex',
|
exchange_name='poloniex',
|
||||||
live=True,
|
|
||||||
algo_namespace='simple_loop',
|
algo_namespace='simple_loop',
|
||||||
base_currency='eth',
|
base_currency='btc'
|
||||||
live_graph=False
|
|
||||||
)
|
)
|
||||||
|
# run_algorithm(
|
||||||
|
# initialize=initialize,
|
||||||
|
# handle_data=handle_data,
|
||||||
|
# analyze=None,
|
||||||
|
# exchange_name='bitfinex',
|
||||||
|
# live=True,
|
||||||
|
# algo_namespace='simple_loop',
|
||||||
|
# base_currency='eth',
|
||||||
|
# live_graph=False
|
||||||
|
# )
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
log = Logger('AssetFinderExchange')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('AssetFinderExchange', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class AssetFinderExchange(object):
|
class AssetFinderExchange(object):
|
||||||
@@ -41,9 +43,9 @@ class AssetFinderExchange(object):
|
|||||||
"""
|
"""
|
||||||
for sid in sids:
|
for sid in sids:
|
||||||
if sid in self._asset_cache:
|
if sid in self._asset_cache:
|
||||||
log.info('got asset from cache: {}'.format(sid))
|
log.debug('got asset from cache: {}'.format(sid))
|
||||||
else:
|
else:
|
||||||
log.info('fetching asset: {}'.format(sid))
|
log.debug('fetching asset: {}'.format(sid))
|
||||||
return list()
|
return list()
|
||||||
|
|
||||||
def lookup_symbol(self, symbol, exchange, as_of_date=None, fuzzy=False):
|
def lookup_symbol(self, symbol, exchange, as_of_date=None, fuzzy=False):
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import base64
|
import base64
|
||||||
|
import datetime
|
||||||
import hashlib
|
import hashlib
|
||||||
import hmac
|
import hmac
|
||||||
import json
|
import json
|
||||||
import re
|
import re
|
||||||
import time
|
import time
|
||||||
import datetime
|
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
@@ -22,10 +22,10 @@ from catalyst.exchange.exchange_errors import (
|
|||||||
InvalidOrderStyle, OrderCancelError)
|
InvalidOrderStyle, OrderCancelError)
|
||||||
from catalyst.exchange.exchange_execution import ExchangeLimitOrder, \
|
from catalyst.exchange.exchange_execution import ExchangeLimitOrder, \
|
||||||
ExchangeStopLimitOrder, ExchangeStopOrder
|
ExchangeStopLimitOrder, ExchangeStopOrder
|
||||||
|
from catalyst.exchange.exchange_utils import get_exchange_symbols_filename, \
|
||||||
|
download_exchange_symbols, get_symbols_string
|
||||||
from catalyst.finance.order import Order, ORDER_STATUS
|
from catalyst.finance.order import Order, ORDER_STATUS
|
||||||
from catalyst.protocol import Account
|
from catalyst.protocol import Account
|
||||||
from catalyst.exchange.exchange_utils import get_exchange_symbols_filename, \
|
|
||||||
download_exchange_symbols
|
|
||||||
|
|
||||||
# Trying to account for REST api instability
|
# Trying to account for REST api instability
|
||||||
# https://stackoverflow.com/questions/15431044/can-i-set-max-retries-for-requests-request
|
# https://stackoverflow.com/questions/15431044/can-i-set-max-retries-for-requests-request
|
||||||
@@ -33,7 +33,9 @@ requests.adapters.DEFAULT_RETRIES = 20
|
|||||||
|
|
||||||
BITFINEX_URL = 'https://api.bitfinex.com'
|
BITFINEX_URL = 'https://api.bitfinex.com'
|
||||||
|
|
||||||
log = Logger('Bitfinex')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('Bitfinex', level=LOG_LEVEL)
|
||||||
warning_logger = Logger('AlgoWarning')
|
warning_logger = Logger('AlgoWarning')
|
||||||
|
|
||||||
|
|
||||||
@@ -253,6 +255,16 @@ class Bitfinex(Exchange):
|
|||||||
'1m', '5m', '15m', '30m', '1h', '3h', '6h', '12h', '1D', '7D', '14D',
|
'1m', '5m', '15m', '30m', '1h', '3h', '6h', '12h', '1D', '7D', '14D',
|
||||||
'1M'
|
'1M'
|
||||||
"""
|
"""
|
||||||
|
log.debug(
|
||||||
|
'retrieving {bars} {freq} candles on {exchange} from '
|
||||||
|
'{end_dt} for markets {symbols}, '.format(
|
||||||
|
bars=bar_count,
|
||||||
|
freq=data_frequency,
|
||||||
|
exchange=self.name,
|
||||||
|
end_dt=end_dt,
|
||||||
|
symbols=get_symbols_string(assets)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
freq_match = re.match(r'([0-9].*)(m|h|d)', data_frequency, re.M | re.I)
|
freq_match = re.match(r'([0-9].*)(m|h|d)', data_frequency, re.M | re.I)
|
||||||
if freq_match:
|
if freq_match:
|
||||||
|
|||||||
@@ -1,29 +1,33 @@
|
|||||||
import json
|
import json
|
||||||
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
|
import time
|
||||||
from catalyst.assets._assets import TradingPair
|
from catalyst.assets._assets import TradingPair
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
from six.moves import urllib
|
from six.moves import urllib
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.exchange.bittrex.bittrex_api import Bittrex_api
|
from catalyst.exchange.bittrex.bittrex_api import Bittrex_api
|
||||||
from catalyst.exchange.exchange import Exchange
|
from catalyst.exchange.exchange import Exchange
|
||||||
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
||||||
from catalyst.exchange.exchange_errors import InvalidHistoryFrequencyError, \
|
from catalyst.exchange.exchange_errors import InvalidHistoryFrequencyError, \
|
||||||
ExchangeRequestError, InvalidOrderStyle, OrderNotFound, OrderCancelError, \
|
ExchangeRequestError, InvalidOrderStyle, OrderNotFound, OrderCancelError, \
|
||||||
CreateOrderError
|
CreateOrderError
|
||||||
|
from catalyst.exchange.exchange_utils import get_exchange_symbols_filename, \
|
||||||
|
download_exchange_symbols, get_symbols_string
|
||||||
from catalyst.finance.execution import LimitOrder, StopLimitOrder
|
from catalyst.finance.execution import LimitOrder, StopLimitOrder
|
||||||
from catalyst.finance.order import Order, ORDER_STATUS
|
from catalyst.finance.order import Order, ORDER_STATUS
|
||||||
from catalyst.exchange.exchange_utils import get_exchange_symbols_filename, \
|
|
||||||
download_exchange_symbols
|
|
||||||
|
|
||||||
log = Logger('Bittrex')
|
# TODO: consider using this: https://github.com/mondeja/bittrex_v2
|
||||||
|
|
||||||
|
log = Logger('Bittrex', level=LOG_LEVEL)
|
||||||
|
|
||||||
URL2 = 'https://bittrex.com/Api/v2.0'
|
URL2 = 'https://bittrex.com/Api/v2.0'
|
||||||
|
|
||||||
|
|
||||||
class Bittrex(Exchange):
|
class Bittrex(Exchange):
|
||||||
def __init__(self, key, secret, base_currency, portfolio=None):
|
def __init__(self, key, secret, base_currency, portfolio=None):
|
||||||
self.api = Bittrex_api(key=key, secret=secret.encode('UTF-8'))
|
self.api = Bittrex_api(key=key, secret=secret)
|
||||||
self.name = 'bittrex'
|
self.name = 'bittrex'
|
||||||
self.color = 'blue'
|
self.color = 'blue'
|
||||||
self.base_currency = base_currency
|
self.base_currency = base_currency
|
||||||
@@ -64,10 +68,10 @@ class Bittrex(Exchange):
|
|||||||
return exchange_symbol.lower()
|
return exchange_symbol.lower()
|
||||||
|
|
||||||
def get_balances(self):
|
def get_balances(self):
|
||||||
|
balances = self.api.getbalances()
|
||||||
try:
|
try:
|
||||||
log.debug('retrieving wallet balances')
|
log.debug('retrieving wallet balances')
|
||||||
self.ask_request()
|
self.ask_request()
|
||||||
balances = self.api.getbalances()
|
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise ExchangeRequestError(error=e)
|
raise ExchangeRequestError(error=e)
|
||||||
@@ -207,7 +211,7 @@ class Bittrex(Exchange):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def get_candles(self, data_frequency, assets, bar_count=None,
|
def get_candles(self, data_frequency, assets, bar_count=None,
|
||||||
start_date=None):
|
start_dt=None, end_dt=None):
|
||||||
"""
|
"""
|
||||||
Supported Intervals
|
Supported Intervals
|
||||||
-------------------
|
-------------------
|
||||||
@@ -216,10 +220,27 @@ class Bittrex(Exchange):
|
|||||||
:param data_frequency:
|
:param data_frequency:
|
||||||
:param assets:
|
:param assets:
|
||||||
:param bar_count:
|
:param bar_count:
|
||||||
|
:param start_dt
|
||||||
|
:param end_dt
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
log.info('retrieving candles')
|
|
||||||
|
|
||||||
|
# TODO: this has no effect at the moment
|
||||||
|
if end_dt is None:
|
||||||
|
end_dt = pd.Timestamp.utcnow()
|
||||||
|
|
||||||
|
log.debug(
|
||||||
|
'retrieving {bars} {freq} candles on {exchange} from '
|
||||||
|
'{end_dt} for markets {symbols}, '.format(
|
||||||
|
bars=bar_count,
|
||||||
|
freq=data_frequency,
|
||||||
|
exchange=self.name,
|
||||||
|
end_dt=end_dt,
|
||||||
|
symbols=get_symbols_string(assets)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
data_frequency = data_frequency.lower()
|
||||||
if data_frequency == 'minute' or data_frequency == '1m':
|
if data_frequency == 'minute' or data_frequency == '1m':
|
||||||
frequency = 'oneMin'
|
frequency = 'oneMin'
|
||||||
elif data_frequency == '5m':
|
elif data_frequency == '5m':
|
||||||
@@ -228,7 +249,7 @@ class Bittrex(Exchange):
|
|||||||
frequency = 'thirtyMin'
|
frequency = 'thirtyMin'
|
||||||
elif data_frequency == '1h':
|
elif data_frequency == '1h':
|
||||||
frequency = 'hour'
|
frequency = 'hour'
|
||||||
elif data_frequency == 'daily' or data_frequency == '1D':
|
elif data_frequency == 'daily' or data_frequency == '1d':
|
||||||
frequency = 'day'
|
frequency = 'day'
|
||||||
else:
|
else:
|
||||||
raise InvalidHistoryFrequencyError(
|
raise InvalidHistoryFrequencyError(
|
||||||
@@ -237,13 +258,14 @@ class Bittrex(Exchange):
|
|||||||
|
|
||||||
# Making sure that assets are iterable
|
# Making sure that assets are iterable
|
||||||
asset_list = [assets] if isinstance(assets, TradingPair) else assets
|
asset_list = [assets] if isinstance(assets, TradingPair) else assets
|
||||||
ohlc_map = dict()
|
|
||||||
for asset in asset_list:
|
for asset in asset_list:
|
||||||
|
end = int(time.mktime(end_dt.timetuple()))
|
||||||
url = '{url}/pub/market/GetTicks?marketName={symbol}' \
|
url = '{url}/pub/market/GetTicks?marketName={symbol}' \
|
||||||
'&tickInterval={frequency}&_=1499127220008'.format(
|
'&tickInterval={frequency}&_={end}'.format(
|
||||||
url=URL2,
|
url=URL2,
|
||||||
symbol=self.get_symbol(asset),
|
symbol=self.get_symbol(asset),
|
||||||
frequency=frequency
|
frequency=frequency,
|
||||||
|
end=end
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -271,6 +293,7 @@ class Bittrex(Exchange):
|
|||||||
return ohlc
|
return ohlc
|
||||||
|
|
||||||
ordered_candles = list(reversed(candles))
|
ordered_candles = list(reversed(candles))
|
||||||
|
ohlc_map = dict()
|
||||||
if bar_count is None:
|
if bar_count is None:
|
||||||
ohlc_map[asset] = ohlc_from_candle(ordered_candles[0])
|
ohlc_map[asset] = ohlc_from_candle(ordered_candles[0])
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -4,10 +4,10 @@ import time
|
|||||||
import hmac
|
import hmac
|
||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
from six.moves import urllib
|
|
||||||
|
|
||||||
# Workaround for backwards compatibility
|
# Workaround for backwards compatibility
|
||||||
# https://stackoverflow.com/questions/3745771/urllib-request-in-python-2-7
|
# https://stackoverflow.com/questions/3745771/urllib-request-in-python-2-7
|
||||||
|
from six.moves import urllib
|
||||||
urlopen = urllib.request.urlopen
|
urlopen = urllib.request.urlopen
|
||||||
|
|
||||||
|
|
||||||
@@ -39,7 +39,10 @@ class Bittrex_api(object):
|
|||||||
if method not in self.public:
|
if method not in self.public:
|
||||||
url += '&apikey=' + self.key
|
url += '&apikey=' + self.key
|
||||||
url += '&nonce=' + str(int(time.time()))
|
url += '&nonce=' + str(int(time.time()))
|
||||||
signature = hmac.new(self.secret, url, hashlib.sha512).hexdigest()
|
|
||||||
|
signature = hmac.new(self.secret.encode('utf-8'),
|
||||||
|
url.encode('utf-8'),
|
||||||
|
hashlib.sha512).hexdigest()
|
||||||
headers = {'apisign': signature}
|
headers = {'apisign': signature}
|
||||||
else:
|
else:
|
||||||
headers = {}
|
headers = {}
|
||||||
|
|||||||
@@ -103,42 +103,6 @@ def get_start_dt(end_dt, bar_count, data_frequency):
|
|||||||
return start_dt
|
return start_dt
|
||||||
|
|
||||||
|
|
||||||
def get_adj_dates(start, end, assets, data_frequency):
|
|
||||||
"""
|
|
||||||
Contains a date range to the trading availability of the specified pairs.
|
|
||||||
|
|
||||||
:param start:
|
|
||||||
:param end:
|
|
||||||
:param assets:
|
|
||||||
:param data_frequency:
|
|
||||||
:return:
|
|
||||||
"""
|
|
||||||
earliest_trade = None
|
|
||||||
last_entry = None
|
|
||||||
for asset in assets:
|
|
||||||
if earliest_trade is None or earliest_trade > asset.start_date:
|
|
||||||
earliest_trade = asset.start_date
|
|
||||||
|
|
||||||
end_asset = asset.end_minute if data_frequency == 'minute' else \
|
|
||||||
asset.end_daily
|
|
||||||
if end_asset is not None and \
|
|
||||||
(last_entry is None or end_asset > last_entry):
|
|
||||||
last_entry = end_asset
|
|
||||||
|
|
||||||
if start is None or earliest_trade > start:
|
|
||||||
start = earliest_trade
|
|
||||||
|
|
||||||
if end is None or (last_entry is not None and end > last_entry):
|
|
||||||
end = last_entry
|
|
||||||
|
|
||||||
if end is None or start >= end:
|
|
||||||
raise NoDataAvailableOnExchange(
|
|
||||||
exchange=asset.exchange.title(),
|
|
||||||
symbol=[asset.symbol.encode('utf-8')],
|
|
||||||
data_frequency=data_frequency,
|
|
||||||
)
|
|
||||||
|
|
||||||
return start, end
|
|
||||||
|
|
||||||
|
|
||||||
def get_month_start_end(dt):
|
def get_month_start_end(dt):
|
||||||
@@ -243,12 +207,12 @@ def find_most_recent_time(bundle_name):
|
|||||||
for folder in bundle_folders:
|
for folder in bundle_folders:
|
||||||
date = from_bundle_ingest_dirname(folder)
|
date = from_bundle_ingest_dirname(folder)
|
||||||
if not most_recent_bundle or date > \
|
if not most_recent_bundle or date > \
|
||||||
most_recent_bundle[most_recent_bundle.keys()[0]]:
|
most_recent_bundle[list(most_recent_bundle.keys())[0]]:
|
||||||
most_recent_bundle = dict()
|
most_recent_bundle = dict()
|
||||||
most_recent_bundle[folder] = date
|
most_recent_bundle[folder] = date
|
||||||
|
|
||||||
if most_recent_bundle:
|
if most_recent_bundle:
|
||||||
return most_recent_bundle.keys()[0]
|
return list(most_recent_bundle.keys())[0]
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|||||||
@@ -19,17 +19,15 @@ import pandas as pd
|
|||||||
from catalyst.assets._assets import TradingPair
|
from catalyst.assets._assets import TradingPair
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.data.data_portal import DataPortal
|
from catalyst.data.data_portal import DataPortal
|
||||||
from catalyst.exchange.bundle_utils import get_start_dt
|
|
||||||
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
||||||
from catalyst.exchange.exchange_errors import (
|
from catalyst.exchange.exchange_errors import (
|
||||||
ExchangeRequestError,
|
ExchangeRequestError,
|
||||||
ExchangeBarDataError,
|
ExchangeBarDataError,
|
||||||
PricingDataBeforeTradingError,
|
PricingDataNotLoadedError)
|
||||||
PricingDataNotLoadedError, InvalidHistoryFrequencyError,
|
|
||||||
BundleNotFoundError)
|
|
||||||
|
|
||||||
log = Logger('DataPortalExchange')
|
log = Logger('DataPortalExchange', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class DataPortalExchangeBase(DataPortal):
|
class DataPortalExchangeBase(DataPortal):
|
||||||
@@ -82,7 +80,7 @@ class DataPortalExchangeBase(DataPortal):
|
|||||||
return pd.concat(df_list)
|
return pd.concat(df_list)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
exchange = self.exchanges[exchange_assets.keys()[0]]
|
exchange = self.exchanges[list(exchange_assets.keys())[0]]
|
||||||
return self.get_exchange_history_window(
|
return self.get_exchange_history_window(
|
||||||
exchange,
|
exchange,
|
||||||
assets,
|
assets,
|
||||||
@@ -167,8 +165,8 @@ class DataPortalExchangeBase(DataPortal):
|
|||||||
|
|
||||||
exchange_assets[asset.exchange].append(asset)
|
exchange_assets[asset.exchange].append(asset)
|
||||||
|
|
||||||
if len(exchange_assets.keys()) == 1:
|
if len(list(exchange_assets.keys())) == 1:
|
||||||
exchange = self.exchanges[exchange_assets.keys()[0]]
|
exchange = self.exchanges[list(exchange_assets.keys())[0]]
|
||||||
return self.get_exchange_spot_value(
|
return self.get_exchange_spot_value(
|
||||||
exchange, assets, field, dt, data_frequency)
|
exchange, assets, field, dt, data_frequency)
|
||||||
|
|
||||||
|
|||||||
@@ -9,14 +9,14 @@ import pandas as pd
|
|||||||
from catalyst.assets._assets import TradingPair
|
from catalyst.assets._assets import TradingPair
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.data.data_portal import BASE_FIELDS
|
from catalyst.data.data_portal import BASE_FIELDS
|
||||||
from catalyst.exchange.bundle_utils import get_start_dt, \
|
from catalyst.exchange.bundle_utils import get_start_dt, \
|
||||||
get_delta, get_periods, get_adj_dates
|
get_delta, get_periods
|
||||||
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
||||||
from catalyst.exchange.exchange_errors import MismatchingBaseCurrencies, \
|
from catalyst.exchange.exchange_errors import MismatchingBaseCurrencies, \
|
||||||
InvalidOrderStyle, BaseCurrencyNotFoundError, SymbolNotFoundOnExchange, \
|
InvalidOrderStyle, BaseCurrencyNotFoundError, SymbolNotFoundOnExchange, \
|
||||||
InvalidHistoryFrequencyError, MismatchingFrequencyError, \
|
InvalidHistoryFrequencyError, PricingDataNotLoadedError
|
||||||
BundleNotFoundError, NoDataAvailableOnExchange, PricingDataNotLoadedError
|
|
||||||
from catalyst.exchange.exchange_execution import ExchangeStopLimitOrder, \
|
from catalyst.exchange.exchange_execution import ExchangeStopLimitOrder, \
|
||||||
ExchangeLimitOrder, ExchangeStopOrder
|
ExchangeLimitOrder, ExchangeStopOrder
|
||||||
from catalyst.exchange.exchange_portfolio import ExchangePortfolio
|
from catalyst.exchange.exchange_portfolio import ExchangePortfolio
|
||||||
@@ -24,7 +24,7 @@ from catalyst.exchange.exchange_utils import get_exchange_symbols
|
|||||||
from catalyst.finance.order import ORDER_STATUS
|
from catalyst.finance.order import ORDER_STATUS
|
||||||
from catalyst.finance.transaction import Transaction
|
from catalyst.finance.transaction import Transaction
|
||||||
|
|
||||||
log = Logger('Exchange')
|
log = Logger('Exchange', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class Exchange:
|
class Exchange:
|
||||||
@@ -87,7 +87,7 @@ class Exchange:
|
|||||||
self.request_cpt[now] = 0
|
self.request_cpt[now] = 0
|
||||||
return True
|
return True
|
||||||
|
|
||||||
cpt_date = self.request_cpt.keys()[0]
|
cpt_date = list(self.request_cpt.keys())[0]
|
||||||
cpt = self.request_cpt[cpt_date]
|
cpt = self.request_cpt[cpt_date]
|
||||||
|
|
||||||
if now > cpt_date + timedelta(minutes=1):
|
if now > cpt_date + timedelta(minutes=1):
|
||||||
@@ -167,8 +167,10 @@ class Exchange:
|
|||||||
asset = self.assets[key]
|
asset = self.assets[key]
|
||||||
|
|
||||||
if not asset:
|
if not asset:
|
||||||
supported_symbols = [pair.symbol.encode('utf-8') for pair in
|
supported_symbols = [
|
||||||
self.assets.values()]
|
pair.symbol for pair in list(self.assets.values())
|
||||||
|
]
|
||||||
|
|
||||||
raise SymbolNotFoundOnExchange(
|
raise SymbolNotFoundOnExchange(
|
||||||
symbol=symbol,
|
symbol=symbol,
|
||||||
exchange=self.name.title(),
|
exchange=self.name.title(),
|
||||||
@@ -371,7 +373,7 @@ class Exchange:
|
|||||||
return value
|
return value
|
||||||
|
|
||||||
def get_series_from_candles(self, candles, start_dt, end_dt,
|
def get_series_from_candles(self, candles, start_dt, end_dt,
|
||||||
field, previous_value=None):
|
data_frequency, field, previous_value=None):
|
||||||
"""
|
"""
|
||||||
Get a series of field data for the specified candles.
|
Get a series of field data for the specified candles.
|
||||||
|
|
||||||
@@ -386,9 +388,12 @@ class Exchange:
|
|||||||
dates = [candle['last_traded'] for candle in candles]
|
dates = [candle['last_traded'] for candle in candles]
|
||||||
values = [candle[field] for candle in candles]
|
values = [candle[field] for candle in candles]
|
||||||
|
|
||||||
periods = pd.date_range(start_dt, end_dt)
|
periods = self.bundle.get_calendar_periods_range(
|
||||||
|
start_dt, end_dt, data_frequency
|
||||||
|
)
|
||||||
series = pd.Series(values, index=dates)
|
series = pd.Series(values, index=dates)
|
||||||
|
|
||||||
|
#TODO: ensure that this working as expected, if not use fillna
|
||||||
series.reindex(periods, method='ffill', fill_value=previous_value)
|
series.reindex(periods, method='ffill', fill_value=previous_value)
|
||||||
|
|
||||||
return series
|
return series
|
||||||
@@ -485,6 +490,7 @@ class Exchange:
|
|||||||
data_frequency=data_frequency,
|
data_frequency=data_frequency,
|
||||||
assets=asset,
|
assets=asset,
|
||||||
bar_count=trailing_bar_count,
|
bar_count=trailing_bar_count,
|
||||||
|
start_dt=start_dt,
|
||||||
end_dt=end_dt
|
end_dt=end_dt
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -495,6 +501,7 @@ class Exchange:
|
|||||||
candles=candles,
|
candles=candles,
|
||||||
start_dt=trailing_dt,
|
start_dt=trailing_dt,
|
||||||
end_dt=end_dt,
|
end_dt=end_dt,
|
||||||
|
data_frequency=data_frequency,
|
||||||
field=field,
|
field=field,
|
||||||
previous_value=last_value
|
previous_value=last_value
|
||||||
)
|
)
|
||||||
@@ -552,7 +559,7 @@ class Exchange:
|
|||||||
portfolio.starting_cash = portfolio.cash
|
portfolio.starting_cash = portfolio.cash
|
||||||
|
|
||||||
if portfolio.positions:
|
if portfolio.positions:
|
||||||
assets = portfolio.positions.keys()
|
assets = list(portfolio.positions.keys())
|
||||||
tickers = self.tickers(assets)
|
tickers = self.tickers(assets)
|
||||||
|
|
||||||
portfolio.positions_value = 0.0
|
portfolio.positions_value = 0.0
|
||||||
@@ -782,13 +789,14 @@ class Exchange:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def get_orderbook(self, asset, order_type):
|
def get_orderbook(self, asset, order_type, limit):
|
||||||
"""
|
"""
|
||||||
Retrieve the the orderbook for the given trading pair.
|
Retrieve the the orderbook for the given trading pair.
|
||||||
|
|
||||||
:param asset: TradingPair
|
:param asset: TradingPair
|
||||||
:param order_type: str
|
:param order_type: str
|
||||||
The type of orders: bid, ask or all
|
The type of orders: bid, ask or all
|
||||||
|
:param limit
|
||||||
|
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ from catalyst.assets._assets import TradingPair
|
|||||||
|
|
||||||
import catalyst.protocol as zp
|
import catalyst.protocol as zp
|
||||||
from catalyst.algorithm import TradingAlgorithm
|
from catalyst.algorithm import TradingAlgorithm
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.data.minute_bars import BcolzMinuteBarWriter, \
|
from catalyst.data.minute_bars import BcolzMinuteBarWriter, \
|
||||||
BcolzMinuteBarReader
|
BcolzMinuteBarReader
|
||||||
from catalyst.errors import OrderInBeforeTradingStart
|
from catalyst.errors import OrderInBeforeTradingStart
|
||||||
@@ -51,10 +52,10 @@ from catalyst.utils.api_support import (
|
|||||||
disallowed_in_before_trading_start)
|
disallowed_in_before_trading_start)
|
||||||
from catalyst.utils.input_validation import error_keywords, ensure_upper_case, \
|
from catalyst.utils.input_validation import error_keywords, ensure_upper_case, \
|
||||||
expect_types
|
expect_types
|
||||||
from catalyst.utils.preprocess import preprocess
|
|
||||||
from catalyst.utils.math_utils import round_nearest
|
from catalyst.utils.math_utils import round_nearest
|
||||||
|
from catalyst.utils.preprocess import preprocess
|
||||||
|
|
||||||
log = logbook.Logger('exchange_algorithm')
|
log = logbook.Logger('exchange_algorithm', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class ExchangeAlgorithmExecutor(AlgorithmSimulator):
|
class ExchangeAlgorithmExecutor(AlgorithmSimulator):
|
||||||
@@ -112,7 +113,7 @@ class ExchangeTradingAlgorithmBase(TradingAlgorithm):
|
|||||||
else self.sim_params.end_session
|
else self.sim_params.end_session
|
||||||
|
|
||||||
if exchange_name is None:
|
if exchange_name is None:
|
||||||
exchange = self.exchanges.values()[0]
|
exchange = list(self.exchanges.values())[0]
|
||||||
else:
|
else:
|
||||||
exchange = self.exchanges[exchange_name]
|
exchange = self.exchanges[exchange_name]
|
||||||
|
|
||||||
@@ -523,7 +524,7 @@ class ExchangeTradingAlgorithmLive(ExchangeTradingAlgorithmBase):
|
|||||||
self.add_pnl_stats(minute_stats)
|
self.add_pnl_stats(minute_stats)
|
||||||
if self.recorded_vars:
|
if self.recorded_vars:
|
||||||
self.add_custom_signals_stats(minute_stats)
|
self.add_custom_signals_stats(minute_stats)
|
||||||
recorded_cols = self.recorded_vars.keys()
|
recorded_cols = list(self.recorded_vars.keys())
|
||||||
else:
|
else:
|
||||||
recorded_cols = None
|
recorded_cols = None
|
||||||
|
|
||||||
@@ -555,6 +556,7 @@ class ExchangeTradingAlgorithmLive(ExchangeTradingAlgorithmBase):
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.warn('unable to calculate performance: {}'.format(e))
|
log.warn('unable to calculate performance: {}'.format(e))
|
||||||
|
|
||||||
|
# TODO: pickle does not seem to work in python 3
|
||||||
try:
|
try:
|
||||||
save_algo_object(
|
save_algo_object(
|
||||||
algo_name=self.algo_namespace,
|
algo_name=self.algo_namespace,
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import numpy as np
|
|||||||
from catalyst import get_calendar
|
from catalyst import get_calendar
|
||||||
from catalyst.data.minute_bars import BcolzMinuteBarReader, \
|
from catalyst.data.minute_bars import BcolzMinuteBarReader, \
|
||||||
BcolzMinuteBarWriter
|
BcolzMinuteBarWriter
|
||||||
from catalyst.exchange.bundle_utils import get_periods, get_periods_range
|
|
||||||
|
|
||||||
|
|
||||||
class BcolzExchangeBarWriter(BcolzMinuteBarWriter):
|
class BcolzExchangeBarWriter(BcolzMinuteBarWriter):
|
||||||
@@ -17,7 +16,7 @@ class BcolzExchangeBarWriter(BcolzMinuteBarWriter):
|
|||||||
end_session = end_session.floor('1d')
|
end_session = end_session.floor('1d')
|
||||||
|
|
||||||
minutes_per_day = 1440 if self._data_frequency == 'minute' else 1
|
minutes_per_day = 1440 if self._data_frequency == 'minute' else 1
|
||||||
default_ohlc_ratio = kwargs.pop('default_ohlc_ratio', 1000000)
|
default_ohlc_ratio = kwargs.pop('default_ohlc_ratio', 100000000)
|
||||||
calendar = get_calendar('OPEN')
|
calendar = get_calendar('OPEN')
|
||||||
|
|
||||||
super(BcolzExchangeBarWriter, self) \
|
super(BcolzExchangeBarWriter, self) \
|
||||||
@@ -80,8 +79,9 @@ class BcolzExchangeBarReader(BcolzMinuteBarReader):
|
|||||||
if mask is None:
|
if mask is None:
|
||||||
mask = a != 0
|
mask = a != 0
|
||||||
|
|
||||||
|
inverse_ratio = self._ohlc_ratio_inverse_for_sid(sid)
|
||||||
out[:len(mask), i][mask] = (
|
out[:len(mask), i][mask] = (
|
||||||
a[mask] * self._ohlc_ratio_inverse_for_sid(sid)
|
a[mask] * inverse_ratio
|
||||||
)
|
)
|
||||||
|
|
||||||
if field in fields:
|
if field in fields:
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
from catalyst.assets._assets import TradingPair
|
from catalyst.assets._assets import TradingPair
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.finance.blotter import Blotter
|
from catalyst.finance.blotter import Blotter
|
||||||
from catalyst.finance.commission import CommissionModel
|
from catalyst.finance.commission import CommissionModel
|
||||||
from catalyst.finance.slippage import SlippageModel
|
from catalyst.finance.slippage import SlippageModel
|
||||||
from catalyst.finance.transaction import Transaction
|
from catalyst.finance.transaction import Transaction
|
||||||
|
|
||||||
log = Logger('exchange_blotter')
|
log = Logger('exchange_blotter', level=LOG_LEVEL)
|
||||||
|
|
||||||
# It seems like we need to accept greater slippage risk in cryptos
|
# It seems like we need to accept greater slippage risk in cryptos
|
||||||
# Orders won't often close at Equity levels.
|
# Orders won't often close at Equity levels.
|
||||||
|
|||||||
@@ -3,34 +3,34 @@ import shutil
|
|||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from logbook import Logger, INFO
|
from logbook import Logger
|
||||||
|
|
||||||
from catalyst import get_calendar
|
from catalyst import get_calendar
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.data.minute_bars import BcolzMinuteOverlappingData, \
|
from catalyst.data.minute_bars import BcolzMinuteOverlappingData, \
|
||||||
BcolzMinuteBarMetadata
|
BcolzMinuteBarMetadata
|
||||||
from catalyst.exchange.bundle_utils import range_in_bundle, \
|
from catalyst.exchange.bundle_utils import range_in_bundle, \
|
||||||
get_bcolz_chunk, get_delta, get_adj_dates, get_month_start_end, \
|
get_bcolz_chunk, get_delta, get_month_start_end, \
|
||||||
get_year_start_end, get_periods_range, get_df_from_arrays, get_start_dt
|
get_year_start_end, get_df_from_arrays, get_start_dt
|
||||||
from catalyst.exchange.exchange_bcolz import BcolzExchangeBarReader, \
|
from catalyst.exchange.exchange_bcolz import BcolzExchangeBarReader, \
|
||||||
BcolzExchangeBarWriter
|
BcolzExchangeBarWriter
|
||||||
from catalyst.exchange.exchange_errors import EmptyValuesInBundleError, \
|
from catalyst.exchange.exchange_errors import EmptyValuesInBundleError, \
|
||||||
InvalidHistoryFrequencyError, PricingDataBeforeTradingError, \
|
InvalidHistoryFrequencyError, TempBundleNotFoundError, \
|
||||||
TempBundleNotFoundError, NoDataAvailableOnExchange, \
|
NoDataAvailableOnExchange, \
|
||||||
PricingDataNotLoadedError
|
PricingDataNotLoadedError
|
||||||
from catalyst.exchange.exchange_utils import get_exchange_folder
|
from catalyst.exchange.exchange_utils import get_exchange_folder
|
||||||
from catalyst.utils.cli import maybe_show_progress
|
from catalyst.utils.cli import maybe_show_progress
|
||||||
from catalyst.utils.paths import ensure_directory
|
from catalyst.utils.paths import ensure_directory
|
||||||
|
|
||||||
|
log = Logger('exchange_bundle', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
BUNDLE_NAME_TEMPLATE = os.path.join('{root}', '{frequency}_bundle')
|
||||||
|
|
||||||
|
|
||||||
def _cachpath(symbol, type_):
|
def _cachpath(symbol, type_):
|
||||||
return '-'.join([symbol, type_])
|
return '-'.join([symbol, type_])
|
||||||
|
|
||||||
|
|
||||||
BUNDLE_NAME_TEMPLATE = '{root}/{frequency}_bundle'
|
|
||||||
log = Logger('exchange_bundle')
|
|
||||||
log.level = INFO
|
|
||||||
|
|
||||||
|
|
||||||
class ExchangeBundle:
|
class ExchangeBundle:
|
||||||
def __init__(self, exchange):
|
def __init__(self, exchange):
|
||||||
self.exchange = exchange
|
self.exchange = exchange
|
||||||
@@ -173,16 +173,13 @@ class ExchangeBundle:
|
|||||||
invalid_data_behavior='raise'
|
invalid_data_behavior='raise'
|
||||||
)
|
)
|
||||||
except BcolzMinuteOverlappingData as e:
|
except BcolzMinuteOverlappingData as e:
|
||||||
log.warn('chunk already exists: {}'.format(e))
|
log.debug('chunk already exists: {}'.format(e))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.warn('error when writing data: {}, trying again'.format(e))
|
log.warn('error when writing data: {}, trying again'.format(e))
|
||||||
|
|
||||||
# This is workaround, there is an issue with empty
|
# This is workaround, there is an issue with empty
|
||||||
# session_label when using a newly created writer
|
# session_label when using a newly created writer
|
||||||
key = writer._rootdir if data_frequency == 'minute' \
|
del self._writers[writer._rootdir]
|
||||||
else writer._filename
|
|
||||||
|
|
||||||
del self._writers[key]
|
|
||||||
|
|
||||||
writer = self.get_writer(writer._start_session,
|
writer = self.get_writer(writer._start_session,
|
||||||
writer._end_session, data_frequency)
|
writer._end_session, data_frequency)
|
||||||
@@ -197,6 +194,71 @@ class ExchangeBundle:
|
|||||||
if data_frequency == 'minute' \
|
if data_frequency == 'minute' \
|
||||||
else self.calendar.sessions_in_range(start_dt, end_dt)
|
else self.calendar.sessions_in_range(start_dt, end_dt)
|
||||||
|
|
||||||
|
def ingest_df(self, ohlcv_df, data_frequency, asset, writer,
|
||||||
|
empty_rows_behavior='strip'):
|
||||||
|
"""
|
||||||
|
Ingest a DataFrame of OHLCV data for a given market.
|
||||||
|
|
||||||
|
:param ohlcv_df:
|
||||||
|
:param data_frequency:
|
||||||
|
:param asset:
|
||||||
|
:param writer:
|
||||||
|
:param path:
|
||||||
|
:param empty_rows_behavior:
|
||||||
|
:return:
|
||||||
|
"""
|
||||||
|
if empty_rows_behavior is not 'ignore':
|
||||||
|
nan_rows = ohlcv_df[ohlcv_df.isnull().T.any().T].index
|
||||||
|
|
||||||
|
if len(nan_rows) > 0:
|
||||||
|
dates = []
|
||||||
|
previous_date = None
|
||||||
|
for row_date in nan_rows.values:
|
||||||
|
row_date = pd.to_datetime(row_date)
|
||||||
|
|
||||||
|
if previous_date is None:
|
||||||
|
dates.append(row_date)
|
||||||
|
|
||||||
|
else:
|
||||||
|
seq_date = previous_date + get_delta(1, data_frequency)
|
||||||
|
|
||||||
|
if row_date > seq_date:
|
||||||
|
dates.append(previous_date)
|
||||||
|
dates.append(row_date)
|
||||||
|
|
||||||
|
previous_date = row_date
|
||||||
|
|
||||||
|
dates.append(pd.to_datetime(nan_rows.values[-1]))
|
||||||
|
|
||||||
|
name = '{} from {} to {}'.format(
|
||||||
|
asset.symbol, ohlcv_df.index[0], ohlcv_df.index[-1]
|
||||||
|
)
|
||||||
|
if empty_rows_behavior == 'warn':
|
||||||
|
log.warn(
|
||||||
|
'\n{name} with end minute {end_minute} has empty rows '
|
||||||
|
'in ranges: {dates}'.format(
|
||||||
|
name=name,
|
||||||
|
end_minute=asset.end_minute,
|
||||||
|
dates=dates
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
elif empty_rows_behavior == 'raise':
|
||||||
|
raise EmptyValuesInBundleError(
|
||||||
|
name=name,
|
||||||
|
end_minute=asset.end_minute,
|
||||||
|
dates=dates
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
ohlcv_df.dropna(inplace=True)
|
||||||
|
|
||||||
|
data = []
|
||||||
|
if not ohlcv_df.empty:
|
||||||
|
ohlcv_df.sort_index(inplace=True)
|
||||||
|
data.append((asset.sid, ohlcv_df))
|
||||||
|
|
||||||
|
self._write(data, writer, data_frequency)
|
||||||
|
|
||||||
def ingest_ctable(self, asset, data_frequency, period, start_dt, end_dt,
|
def ingest_ctable(self, asset, data_frequency, period, start_dt, end_dt,
|
||||||
writer, empty_rows_behavior='strip', cleanup=False):
|
writer, empty_rows_behavior='strip', cleanup=False):
|
||||||
"""
|
"""
|
||||||
@@ -226,12 +288,18 @@ class ExchangeBundle:
|
|||||||
if reader is None:
|
if reader is None:
|
||||||
raise TempBundleNotFoundError(path=path)
|
raise TempBundleNotFoundError(path=path)
|
||||||
|
|
||||||
|
arrays = None
|
||||||
|
try:
|
||||||
arrays = reader.load_raw_arrays(
|
arrays = reader.load_raw_arrays(
|
||||||
sids=[asset.sid],
|
sids=[asset.sid],
|
||||||
fields=['open', 'high', 'low', 'close', 'volume'],
|
fields=['open', 'high', 'low', 'close', 'volume'],
|
||||||
start_dt=start_dt,
|
start_dt=start_dt,
|
||||||
end_dt=end_dt
|
end_dt=end_dt
|
||||||
)
|
)
|
||||||
|
except Exception as e:
|
||||||
|
log.warn('skipping ctable for {} from {} to {}: {}'.format(
|
||||||
|
asset.symbol, start_dt, end_dt, e
|
||||||
|
))
|
||||||
|
|
||||||
if not arrays:
|
if not arrays:
|
||||||
return path
|
return path
|
||||||
@@ -239,65 +307,69 @@ class ExchangeBundle:
|
|||||||
periods = self.get_calendar_periods_range(
|
periods = self.get_calendar_periods_range(
|
||||||
start_dt, end_dt, data_frequency
|
start_dt, end_dt, data_frequency
|
||||||
)
|
)
|
||||||
|
|
||||||
df = get_df_from_arrays(arrays, periods)
|
df = get_df_from_arrays(arrays, periods)
|
||||||
|
self.ingest_df(
|
||||||
if empty_rows_behavior is not 'ignore':
|
ohlcv_df=df,
|
||||||
nan_rows = df[df.isnull().T.any().T].index
|
data_frequency=data_frequency,
|
||||||
|
asset=asset,
|
||||||
if len(nan_rows) > 0:
|
writer=writer,
|
||||||
dates = []
|
empty_rows_behavior=empty_rows_behavior
|
||||||
previous_date = None
|
|
||||||
for row_date in nan_rows.values:
|
|
||||||
row_date = pd.to_datetime(row_date)
|
|
||||||
|
|
||||||
if previous_date is None:
|
|
||||||
dates.append(row_date)
|
|
||||||
|
|
||||||
else:
|
|
||||||
seq_date = previous_date + get_delta(1, data_frequency)
|
|
||||||
|
|
||||||
if row_date > seq_date:
|
|
||||||
dates.append(previous_date)
|
|
||||||
dates.append(row_date)
|
|
||||||
|
|
||||||
previous_date = row_date
|
|
||||||
|
|
||||||
dates.append(pd.to_datetime(nan_rows.values[-1]))
|
|
||||||
|
|
||||||
name = path.split('/')[-1]
|
|
||||||
if empty_rows_behavior == 'warn':
|
|
||||||
log.warn(
|
|
||||||
'\n{name} with end minute {end_minute} has empty rows '
|
|
||||||
'in ranges: {dates}'.format(
|
|
||||||
name=name,
|
|
||||||
end_minute=asset.end_minute,
|
|
||||||
dates=dates
|
|
||||||
)
|
)
|
||||||
)
|
|
||||||
|
|
||||||
elif empty_rows_behavior == 'raise':
|
|
||||||
raise EmptyValuesInBundleError(
|
|
||||||
name=name,
|
|
||||||
end_minute=asset.end_minute,
|
|
||||||
dates=dates
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
df.dropna(inplace=True)
|
|
||||||
|
|
||||||
data = []
|
|
||||||
if not df.empty:
|
|
||||||
df.sort_index(inplace=True)
|
|
||||||
data.append((asset.sid, df))
|
|
||||||
self._write(data, writer, data_frequency)
|
|
||||||
|
|
||||||
if cleanup:
|
if cleanup:
|
||||||
log.debug('removing bundle folder following '
|
log.debug(
|
||||||
'ingestion: {}'.format(path))
|
'removing bundle folder following ingestion: {}'.format(path)
|
||||||
|
)
|
||||||
shutil.rmtree(path)
|
shutil.rmtree(path)
|
||||||
|
|
||||||
return path
|
return path
|
||||||
|
|
||||||
|
def get_adj_dates(self, start, end, assets, data_frequency):
|
||||||
|
"""
|
||||||
|
Contains a date range to the trading availability of the specified pairs.
|
||||||
|
|
||||||
|
:param start:
|
||||||
|
:param end:
|
||||||
|
:param assets:
|
||||||
|
:param data_frequency:
|
||||||
|
:return:
|
||||||
|
"""
|
||||||
|
earliest_trade = None
|
||||||
|
last_entry = None
|
||||||
|
for asset in assets:
|
||||||
|
if earliest_trade is None or earliest_trade > asset.start_date:
|
||||||
|
if asset.start_date >= self.calendar.first_session:
|
||||||
|
earliest_trade = asset.start_date
|
||||||
|
|
||||||
|
else:
|
||||||
|
earliest_trade = self.calendar.first_session
|
||||||
|
|
||||||
|
end_asset = asset.end_minute if data_frequency == 'minute' else \
|
||||||
|
asset.end_daily
|
||||||
|
if end_asset is not None:
|
||||||
|
if last_entry is None or end_asset > last_entry:
|
||||||
|
last_entry = end_asset
|
||||||
|
|
||||||
|
else:
|
||||||
|
end = None
|
||||||
|
last_entry = None
|
||||||
|
|
||||||
|
if start is None or \
|
||||||
|
(earliest_trade is not None and earliest_trade > start):
|
||||||
|
start = earliest_trade
|
||||||
|
|
||||||
|
if end is None or (last_entry is not None and end > last_entry):
|
||||||
|
end = last_entry
|
||||||
|
|
||||||
|
if end is None or start is None or start >= end:
|
||||||
|
raise NoDataAvailableOnExchange(
|
||||||
|
exchange=asset.exchange.title(),
|
||||||
|
symbol=[asset.symbol],
|
||||||
|
data_frequency=data_frequency,
|
||||||
|
)
|
||||||
|
|
||||||
|
return start, end
|
||||||
|
|
||||||
def prepare_chunks(self, assets, data_frequency, start_dt, end_dt):
|
def prepare_chunks(self, assets, data_frequency, start_dt, end_dt):
|
||||||
"""
|
"""
|
||||||
Split a price data request into chunks corresponding to individual
|
Split a price data request into chunks corresponding to individual
|
||||||
@@ -314,23 +386,27 @@ class ExchangeBundle:
|
|||||||
chunks = []
|
chunks = []
|
||||||
for asset in assets:
|
for asset in assets:
|
||||||
try:
|
try:
|
||||||
asset_start, asset_end = \
|
# Checking if the the asset has price data in the specified
|
||||||
get_adj_dates(start_dt, end_dt, [asset], data_frequency)
|
# date range
|
||||||
|
adj_start, adj_end = self.get_adj_dates(
|
||||||
|
start_dt, end_dt, [asset], data_frequency
|
||||||
|
)
|
||||||
|
|
||||||
except NoDataAvailableOnExchange:
|
except NoDataAvailableOnExchange as e:
|
||||||
|
# If not, we continue to the next asset
|
||||||
|
log.debug('skipping {}: {}'.format(asset.symbol, e))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# This is either the first trading day of the asset or the
|
||||||
|
# first session available in the calendar
|
||||||
|
first_trading_dt = asset.start_date \
|
||||||
|
if asset.start_date > self.calendar.first_session \
|
||||||
|
else self.calendar.first_session
|
||||||
|
|
||||||
# Aligning start / end dates with the daily calendar
|
# Aligning start / end dates with the daily calendar
|
||||||
sessions = get_periods_range(start_dt, end_dt, data_frequency) \
|
sessions = self.calendar.sessions_in_range(adj_start, adj_end)
|
||||||
if data_frequency == 'minute' \
|
|
||||||
else self.calendar.sessions_in_range(start_dt, end_dt)
|
|
||||||
|
|
||||||
if asset_start < sessions[0]:
|
|
||||||
asset_start = sessions[0]
|
|
||||||
|
|
||||||
if asset_end > sessions[-1]:
|
|
||||||
asset_end = sessions[-1]
|
|
||||||
|
|
||||||
|
# We loop through each session to create chunks for each period
|
||||||
chunk_labels = []
|
chunk_labels = []
|
||||||
dt = sessions[0]
|
dt = sessions[0]
|
||||||
while dt <= sessions[-1]:
|
while dt <= sessions[-1]:
|
||||||
@@ -344,29 +420,39 @@ class ExchangeBundle:
|
|||||||
# of the trading pair
|
# of the trading pair
|
||||||
if data_frequency == 'minute':
|
if data_frequency == 'minute':
|
||||||
period_start, period_end = get_month_start_end(dt)
|
period_start, period_end = get_month_start_end(dt)
|
||||||
asset_start_month, _ = get_month_start_end(asset_start)
|
|
||||||
|
|
||||||
|
asset_start_month, _ = get_month_start_end(
|
||||||
|
first_trading_dt
|
||||||
|
)
|
||||||
if asset_start_month == period_start \
|
if asset_start_month == period_start \
|
||||||
and period_start < asset_start:
|
and period_start < first_trading_dt:
|
||||||
period_start = asset_start
|
period_start = first_trading_dt
|
||||||
|
|
||||||
_, asset_end_month = get_month_start_end(asset_end)
|
# TODO: need to filter closed pairs?
|
||||||
|
_, asset_end_month = get_month_start_end(
|
||||||
|
asset.end_minute
|
||||||
|
)
|
||||||
if asset_end_month == period_end \
|
if asset_end_month == period_end \
|
||||||
and period_end > asset_end:
|
and period_end > asset.end_minute:
|
||||||
period_end = asset_end
|
period_end = asset.end_minute
|
||||||
|
|
||||||
elif data_frequency == 'daily':
|
elif data_frequency == 'daily':
|
||||||
period_start, period_end = get_year_start_end(dt)
|
period_start, period_end = get_year_start_end(dt)
|
||||||
asset_start_year, _ = get_year_start_end(asset_start)
|
|
||||||
|
|
||||||
|
asset_start_year, _ = get_year_start_end(
|
||||||
|
first_trading_dt
|
||||||
|
)
|
||||||
if asset_start_year == period_start \
|
if asset_start_year == period_start \
|
||||||
and period_start < asset_start:
|
and period_start < first_trading_dt:
|
||||||
period_start = asset_start
|
period_start = first_trading_dt
|
||||||
|
|
||||||
_, asset_end_year = get_year_start_end(asset_end)
|
_, asset_end_year = get_year_start_end(
|
||||||
|
asset.end_daily
|
||||||
|
)
|
||||||
if asset_end_year == period_end \
|
if asset_end_year == period_end \
|
||||||
and period_end > asset_end:
|
and period_end > asset.end_daily:
|
||||||
period_end = asset_end
|
period_end = asset.end_daily
|
||||||
|
|
||||||
else:
|
else:
|
||||||
raise InvalidHistoryFrequencyError(
|
raise InvalidHistoryFrequencyError(
|
||||||
frequency=data_frequency
|
frequency=data_frequency
|
||||||
@@ -376,10 +462,13 @@ class ExchangeBundle:
|
|||||||
# Checking the last minute of the day instead.
|
# Checking the last minute of the day instead.
|
||||||
range_start = period_start.replace(hour=23, minute=59) \
|
range_start = period_start.replace(hour=23, minute=59) \
|
||||||
if data_frequency == 'minute' else period_start
|
if data_frequency == 'minute' else period_start
|
||||||
|
|
||||||
|
# Checking if the data already exists in the bundle
|
||||||
|
# for the date range of the chunk. If not, we create
|
||||||
|
# a chunk for ingestion.
|
||||||
has_data = range_in_bundle(
|
has_data = range_in_bundle(
|
||||||
asset, range_start, period_end, reader
|
asset, range_start, period_end, reader
|
||||||
)
|
)
|
||||||
|
|
||||||
if not has_data:
|
if not has_data:
|
||||||
log.debug('adding period: {}'.format(label))
|
log.debug('adding period: {}'.format(label))
|
||||||
chunks.append(
|
chunks.append(
|
||||||
@@ -393,6 +482,7 @@ class ExchangeBundle:
|
|||||||
|
|
||||||
dt += timedelta(days=1)
|
dt += timedelta(days=1)
|
||||||
|
|
||||||
|
# We sort the chunks by end date to ingest most recent data first
|
||||||
chunks.sort(key=lambda chunk: chunk['period_end'])
|
chunks.sort(key=lambda chunk: chunk['period_end'])
|
||||||
|
|
||||||
return chunks
|
return chunks
|
||||||
@@ -407,13 +497,24 @@ class ExchangeBundle:
|
|||||||
:param end_dt:
|
:param end_dt:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
writer = self.get_writer(start_dt, end_dt, data_frequency)
|
|
||||||
chunks = self.prepare_chunks(
|
chunks = self.prepare_chunks(
|
||||||
assets=assets,
|
assets=assets,
|
||||||
data_frequency=data_frequency,
|
data_frequency=data_frequency,
|
||||||
start_dt=start_dt,
|
start_dt=start_dt,
|
||||||
end_dt=end_dt
|
end_dt=end_dt
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Since chunks are either monthly or yearly, it is possible that
|
||||||
|
# our ingestion data range is greater than specified. We adjust
|
||||||
|
# the boundaries to ensure that the writer can write all data.
|
||||||
|
for chunk in chunks:
|
||||||
|
if chunk['period_start'] < start_dt:
|
||||||
|
start_dt = chunk['period_start']
|
||||||
|
|
||||||
|
if chunk['period_end'] > end_dt:
|
||||||
|
end_dt = chunk['period_end']
|
||||||
|
|
||||||
|
writer = self.get_writer(start_dt, end_dt, data_frequency)
|
||||||
with maybe_show_progress(
|
with maybe_show_progress(
|
||||||
chunks,
|
chunks,
|
||||||
show_progress,
|
show_progress,
|
||||||
@@ -429,7 +530,8 @@ class ExchangeBundle:
|
|||||||
start_dt=chunk['period_start'],
|
start_dt=chunk['period_start'],
|
||||||
end_dt=chunk['period_end'],
|
end_dt=chunk['period_end'],
|
||||||
writer=writer,
|
writer=writer,
|
||||||
empty_rows_behavior='strip'
|
empty_rows_behavior='strip',
|
||||||
|
cleanup=True
|
||||||
)
|
)
|
||||||
|
|
||||||
def ingest(self, data_frequency, include_symbols=None,
|
def ingest(self, data_frequency, include_symbols=None,
|
||||||
@@ -447,7 +549,9 @@ class ExchangeBundle:
|
|||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
assets = self.get_assets(include_symbols, exclude_symbols)
|
assets = self.get_assets(include_symbols, exclude_symbols)
|
||||||
start_dt, end_dt = get_adj_dates(start, end, assets, data_frequency)
|
start_dt, end_dt = self.get_adj_dates(
|
||||||
|
start, end, assets, data_frequency
|
||||||
|
)
|
||||||
|
|
||||||
for frequency in data_frequency.split(','):
|
for frequency in data_frequency.split(','):
|
||||||
self.ingest_assets(assets, start_dt, end_dt, frequency,
|
self.ingest_assets(assets, start_dt, end_dt, frequency,
|
||||||
@@ -516,7 +620,7 @@ class ExchangeBundle:
|
|||||||
return values
|
return values
|
||||||
|
|
||||||
except Exception:
|
except Exception:
|
||||||
symbols = [asset.symbol.encode('utf-8') for asset in assets]
|
symbols = [asset.symbol for asset in assets]
|
||||||
raise PricingDataNotLoadedError(
|
raise PricingDataNotLoadedError(
|
||||||
field=field,
|
field=field,
|
||||||
first_trading_day=min([asset.start_date for asset in assets]),
|
first_trading_day=min([asset.start_date for asset in assets]),
|
||||||
@@ -534,8 +638,9 @@ class ExchangeBundle:
|
|||||||
data_frequency,
|
data_frequency,
|
||||||
reset_reader=False):
|
reset_reader=False):
|
||||||
start_dt = get_start_dt(end_dt, bar_count, data_frequency)
|
start_dt = get_start_dt(end_dt, bar_count, data_frequency)
|
||||||
start_dt, end_dt = \
|
start_dt, end_dt = self.get_adj_dates(
|
||||||
get_adj_dates(start_dt, end_dt, assets, data_frequency)
|
start_dt, end_dt, assets, data_frequency
|
||||||
|
)
|
||||||
|
|
||||||
reader = self.get_reader(data_frequency)
|
reader = self.get_reader(data_frequency)
|
||||||
if reset_reader:
|
if reset_reader:
|
||||||
@@ -543,7 +648,7 @@ class ExchangeBundle:
|
|||||||
reader = self.get_reader(data_frequency)
|
reader = self.get_reader(data_frequency)
|
||||||
|
|
||||||
if reader is None:
|
if reader is None:
|
||||||
symbols = [asset.symbol.encode('utf-8') for asset in assets]
|
symbols = [asset.symbol for asset in assets]
|
||||||
raise PricingDataNotLoadedError(
|
raise PricingDataNotLoadedError(
|
||||||
field=field,
|
field=field,
|
||||||
first_trading_day=min([asset.start_date for asset in assets]),
|
first_trading_day=min([asset.start_date for asset in assets]),
|
||||||
@@ -554,8 +659,9 @@ class ExchangeBundle:
|
|||||||
)
|
)
|
||||||
|
|
||||||
for asset in assets:
|
for asset in assets:
|
||||||
asset_start_dt, asset_end_dt = \
|
asset_start_dt, asset_end_dt = self.get_adj_dates(
|
||||||
get_adj_dates(start_dt, end_dt, assets, data_frequency)
|
start_dt, end_dt, assets, data_frequency
|
||||||
|
)
|
||||||
|
|
||||||
in_bundle = range_in_bundle(
|
in_bundle = range_in_bundle(
|
||||||
asset, asset_start_dt, asset_end_dt, reader
|
asset, asset_start_dt, asset_end_dt, reader
|
||||||
@@ -601,3 +707,34 @@ class ExchangeBundle:
|
|||||||
series[asset] = value_series
|
series[asset] = value_series
|
||||||
|
|
||||||
return series
|
return series
|
||||||
|
|
||||||
|
def clean(self, data_frequency):
|
||||||
|
log.debug('cleaning exchange {}, frequency {}'.format(
|
||||||
|
self.exchange.name, data_frequency
|
||||||
|
))
|
||||||
|
root = get_exchange_folder(self.exchange.name)
|
||||||
|
|
||||||
|
symbols = os.path.join(root, 'symbols.json')
|
||||||
|
if os.path.isfile(symbols):
|
||||||
|
os.remove(symbols)
|
||||||
|
|
||||||
|
temp_bundles = os.path.join(root, 'temp_bundles')
|
||||||
|
|
||||||
|
if os.path.isdir(temp_bundles):
|
||||||
|
log.debug('removing folder and content: {}'.format(temp_bundles))
|
||||||
|
shutil.rmtree(temp_bundles)
|
||||||
|
log.debug('{} removed'.format(temp_bundles))
|
||||||
|
|
||||||
|
frequencies = ['daily', 'minute'] if data_frequency is None \
|
||||||
|
else [data_frequency]
|
||||||
|
|
||||||
|
for frequency in frequencies:
|
||||||
|
label = '{}_bundle'.format(frequency)
|
||||||
|
frequency_bundle = os.path.join(root, label)
|
||||||
|
|
||||||
|
if os.path.isdir(frequency_bundle):
|
||||||
|
log.debug(
|
||||||
|
'removing folder and content: {}'.format(frequency_bundle)
|
||||||
|
)
|
||||||
|
shutil.rmtree(frequency_bundle)
|
||||||
|
log.debug('{} removed'.format(frequency_bundle))
|
||||||
|
|||||||
@@ -1,14 +1,17 @@
|
|||||||
import sys, traceback
|
import sys
|
||||||
|
import traceback
|
||||||
|
|
||||||
from catalyst.errors import ZiplineError
|
from catalyst.errors import ZiplineError
|
||||||
|
|
||||||
|
|
||||||
def silent_except_hook(exctype, excvalue, exctraceback):
|
def silent_except_hook(exctype, excvalue, exctraceback):
|
||||||
if exctype in [PricingDataBeforeTradingError, PricingDataNotLoadedError,
|
if exctype in [PricingDataBeforeTradingError, PricingDataNotLoadedError,
|
||||||
SymbolNotFoundOnExchange, NoDataAvailableOnExchange, ]:
|
SymbolNotFoundOnExchange, NoDataAvailableOnExchange,
|
||||||
|
ExchangeAuthEmpty]:
|
||||||
fn = traceback.extract_tb(exctraceback)[-1][0]
|
fn = traceback.extract_tb(exctraceback)[-1][0]
|
||||||
ln = traceback.extract_tb(exctraceback)[-1][1]
|
ln = traceback.extract_tb(exctraceback)[-1][1]
|
||||||
print "Error traceback: {1} (line {2})\n" \
|
print("Error traceback: {1} (line {2})\n"
|
||||||
"{0.__name__}: {3}".format(exctype, fn, ln, excvalue)
|
"{0.__name__}: {3}".format(exctype, fn, ln, excvalue))
|
||||||
else:
|
else:
|
||||||
sys.__excepthook__(exctype, excvalue, exctraceback)
|
sys.__excepthook__(exctype, excvalue, exctraceback)
|
||||||
|
|
||||||
@@ -63,6 +66,13 @@ class ExchangeAuthNotFound(ZiplineError):
|
|||||||
).strip()
|
).strip()
|
||||||
|
|
||||||
|
|
||||||
|
class ExchangeAuthEmpty(ZiplineError):
|
||||||
|
msg = (
|
||||||
|
'Please enter your API token key and secret for exchange {exchange} '
|
||||||
|
'in the following file: {filename}'
|
||||||
|
).strip()
|
||||||
|
|
||||||
|
|
||||||
class ExchangeSymbolsNotFound(ZiplineError):
|
class ExchangeSymbolsNotFound(ZiplineError):
|
||||||
msg = (
|
msg = (
|
||||||
'Unable to download or find a local copy of symbols.json for exchange '
|
'Unable to download or find a local copy of symbols.json for exchange '
|
||||||
@@ -204,7 +214,9 @@ class PricingDataNotLoadedError(ZiplineError):
|
|||||||
class ApiCandlesError(ZiplineError):
|
class ApiCandlesError(ZiplineError):
|
||||||
msg = ('Unable to fetch candles from the remote API: {error}.').strip()
|
msg = ('Unable to fetch candles from the remote API: {error}.').strip()
|
||||||
|
|
||||||
|
|
||||||
class NoDataAvailableOnExchange(ZiplineError):
|
class NoDataAvailableOnExchange(ZiplineError):
|
||||||
msg = ('Requested data for trading pair {symbol} is not available on exchange {exchange} '
|
msg = (
|
||||||
|
'Requested data for trading pair {symbol} is not available on exchange {exchange} '
|
||||||
'in `{data_frequency}` frequency at this time. '
|
'in `{data_frequency}` frequency at this time. '
|
||||||
'Check `http://enigma.co/catalyst/status` for market coverage.').strip()
|
'Check `http://enigma.co/catalyst/status` for market coverage.').strip()
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.protocol import Portfolio, Positions, Position
|
from catalyst.protocol import Portfolio, Positions, Position
|
||||||
|
|
||||||
log = Logger('ExchangePortfolio')
|
log = Logger('ExchangePortfolio', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class ExchangePortfolio(Portfolio):
|
class ExchangePortfolio(Portfolio):
|
||||||
|
|||||||
@@ -1,14 +1,16 @@
|
|||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import pickle
|
import pickle
|
||||||
import urllib
|
|
||||||
|
from catalyst.assets._assets import TradingPair
|
||||||
|
from six.moves.urllib import request
|
||||||
from datetime import date, datetime
|
from datetime import date, datetime
|
||||||
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
|
|
||||||
from catalyst.exchange.exchange_errors import ExchangeAuthNotFound, \
|
from catalyst.exchange.exchange_errors import ExchangeSymbolsNotFound
|
||||||
ExchangeSymbolsNotFound
|
from catalyst.utils.paths import data_root, ensure_directory, \
|
||||||
from catalyst.utils.paths import data_root, ensure_directory, last_modified_time
|
last_modified_time
|
||||||
|
|
||||||
SYMBOLS_URL = 'https://s3.amazonaws.com/enigmaco/catalyst-exchanges/' \
|
SYMBOLS_URL = 'https://s3.amazonaws.com/enigmaco/catalyst-exchanges/' \
|
||||||
'{exchange}/symbols.json'
|
'{exchange}/symbols.json'
|
||||||
@@ -33,7 +35,7 @@ def get_exchange_symbols_filename(exchange_name, environ=None):
|
|||||||
def download_exchange_symbols(exchange_name, environ=None):
|
def download_exchange_symbols(exchange_name, environ=None):
|
||||||
filename = get_exchange_symbols_filename(exchange_name)
|
filename = get_exchange_symbols_filename(exchange_name)
|
||||||
url = SYMBOLS_URL.format(exchange=exchange_name)
|
url = SYMBOLS_URL.format(exchange=exchange_name)
|
||||||
response = urllib.urlretrieve(url=url, filename=filename)
|
response = request.urlretrieve(url=url, filename=filename)
|
||||||
return response
|
return response
|
||||||
|
|
||||||
|
|
||||||
@@ -41,7 +43,9 @@ def get_exchange_symbols(exchange_name, environ=None):
|
|||||||
filename = get_exchange_symbols_filename(exchange_name)
|
filename = get_exchange_symbols_filename(exchange_name)
|
||||||
|
|
||||||
if not os.path.isfile(filename) or \
|
if not os.path.isfile(filename) or \
|
||||||
pd.Timedelta(pd.Timestamp('now', tz='UTC') - last_modified_time(filename)).days > 1:
|
pd.Timedelta(pd.Timestamp('now',
|
||||||
|
tz='UTC') - last_modified_time(
|
||||||
|
filename)).days > 1:
|
||||||
download_exchange_symbols(exchange_name, environ)
|
download_exchange_symbols(exchange_name, environ)
|
||||||
|
|
||||||
if os.path.isfile(filename):
|
if os.path.isfile(filename):
|
||||||
@@ -55,6 +59,11 @@ def get_exchange_symbols(exchange_name, environ=None):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def get_symbols_string(assets):
|
||||||
|
array = [assets] if isinstance(assets, TradingPair) else assets
|
||||||
|
return ', '.join([asset.symbol for asset in array])
|
||||||
|
|
||||||
|
|
||||||
def get_exchange_auth(exchange_name, environ=None):
|
def get_exchange_auth(exchange_name, environ=None):
|
||||||
exchange_folder = get_exchange_folder(exchange_name, environ)
|
exchange_folder = get_exchange_folder(exchange_name, environ)
|
||||||
filename = os.path.join(exchange_folder, 'auth.json')
|
filename = os.path.join(exchange_folder, 'auth.json')
|
||||||
@@ -64,10 +73,11 @@ def get_exchange_auth(exchange_name, environ=None):
|
|||||||
data = json.load(data_file)
|
data = json.load(data_file)
|
||||||
return data
|
return data
|
||||||
else:
|
else:
|
||||||
raise ExchangeAuthNotFound(
|
data = dict(name=exchange_name, key='', secret='')
|
||||||
exchange=exchange_name,
|
with open(filename, 'w') as f:
|
||||||
filename=filename
|
json.dump(data, f, sort_keys=False, indent=2,
|
||||||
)
|
separators=(',', ':'))
|
||||||
|
return data
|
||||||
|
|
||||||
|
|
||||||
def get_algo_folder(algo_name, environ=None):
|
def get_algo_folder(algo_name, environ=None):
|
||||||
@@ -151,8 +161,8 @@ def save_algo_df(algo_name, key, df, environ=None, rel_path=None):
|
|||||||
|
|
||||||
filename = os.path.join(folder, key + '.csv')
|
filename = os.path.join(folder, key + '.csv')
|
||||||
|
|
||||||
with open(filename, 'wb') as handle:
|
with open(filename, 'wt') as handle:
|
||||||
df.to_csv(handle)
|
df.to_csv(handle, encoding='UTF_8')
|
||||||
|
|
||||||
|
|
||||||
def get_exchange_minute_writer_root(exchange_name, environ=None):
|
def get_exchange_minute_writer_root(exchange_name, environ=None):
|
||||||
@@ -163,6 +173,7 @@ def get_exchange_minute_writer_root(exchange_name, environ=None):
|
|||||||
|
|
||||||
return minute_data_folder
|
return minute_data_folder
|
||||||
|
|
||||||
|
|
||||||
def get_exchange_bundles_folder(exchange_name, environ=None):
|
def get_exchange_bundles_folder(exchange_name, environ=None):
|
||||||
exchange_folder = get_exchange_folder(exchange_name, environ)
|
exchange_folder = get_exchange_folder(exchange_name, environ)
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
from datetime import timedelta
|
|
||||||
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from catalyst.gens.sim_engine import (
|
from catalyst.gens.sim_engine import (
|
||||||
@@ -19,11 +18,11 @@ from catalyst.gens.sim_engine import (
|
|||||||
)
|
)
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.exchange.exchange_errors import \
|
from catalyst.exchange.exchange_errors import \
|
||||||
MismatchingBaseCurrenciesExchanges
|
MismatchingBaseCurrenciesExchanges
|
||||||
|
|
||||||
|
log = Logger('LiveGraphClock', level=LOG_LEVEL)
|
||||||
log = Logger('LiveGraphClock')
|
|
||||||
|
|
||||||
|
|
||||||
class LiveGraphClock(object):
|
class LiveGraphClock(object):
|
||||||
|
|||||||
@@ -1,44 +1,39 @@
|
|||||||
import base64
|
|
||||||
import hashlib
|
|
||||||
import hmac
|
|
||||||
import json
|
import json
|
||||||
import re
|
import json
|
||||||
import time
|
import time
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import pytz
|
import pytz
|
||||||
import requests
|
|
||||||
# import six
|
|
||||||
from six import iteritems
|
|
||||||
from catalyst.assets._assets import TradingPair
|
from catalyst.assets._assets import TradingPair
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
# import six
|
||||||
|
from six import iteritems
|
||||||
|
|
||||||
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
from catalyst.constants import LOG_LEVEL
|
||||||
from catalyst.exchange.poloniex.poloniex_api import Poloniex_api
|
|
||||||
|
|
||||||
# from websocket import create_connection
|
# from websocket import create_connection
|
||||||
from catalyst.exchange.exchange import Exchange
|
from catalyst.exchange.exchange import Exchange
|
||||||
|
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
||||||
from catalyst.exchange.exchange_errors import (
|
from catalyst.exchange.exchange_errors import (
|
||||||
ExchangeRequestError,
|
ExchangeRequestError,
|
||||||
InvalidHistoryFrequencyError,
|
InvalidHistoryFrequencyError,
|
||||||
InvalidOrderStyle, OrderCancelError,
|
InvalidOrderStyle, OrphanOrderReverseError)
|
||||||
OrphanOrderReverseError)
|
|
||||||
from catalyst.exchange.exchange_execution import ExchangeLimitOrder, \
|
from catalyst.exchange.exchange_execution import ExchangeLimitOrder, \
|
||||||
ExchangeStopLimitOrder, ExchangeStopOrder
|
ExchangeStopLimitOrder
|
||||||
from catalyst.finance.order import Order, ORDER_STATUS
|
|
||||||
from catalyst.protocol import Account
|
|
||||||
from catalyst.exchange.exchange_utils import get_exchange_symbols_filename, \
|
from catalyst.exchange.exchange_utils import get_exchange_symbols_filename, \
|
||||||
download_exchange_symbols
|
download_exchange_symbols, get_symbols_string
|
||||||
|
from catalyst.exchange.poloniex.poloniex_api import Poloniex_api
|
||||||
|
from catalyst.finance.order import Order, ORDER_STATUS
|
||||||
from catalyst.finance.transaction import Transaction
|
from catalyst.finance.transaction import Transaction
|
||||||
|
from catalyst.protocol import Account
|
||||||
|
|
||||||
log = Logger('Poloniex')
|
log = Logger('Poloniex', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class Poloniex(Exchange):
|
class Poloniex(Exchange):
|
||||||
def __init__(self, key, secret, base_currency, portfolio=None):
|
def __init__(self, key, secret, base_currency, portfolio=None):
|
||||||
self.api = Poloniex_api(key=key, secret=secret.encode('UTF-8'))
|
self.api = Poloniex_api(key=key, secret=secret)
|
||||||
self.name = 'poloniex'
|
self.name = 'poloniex'
|
||||||
self.assets = {}
|
self.assets = {}
|
||||||
self.load_assets()
|
self.load_assets()
|
||||||
@@ -124,9 +119,9 @@ class Poloniex(Exchange):
|
|||||||
return order, executed_price
|
return order, executed_price
|
||||||
|
|
||||||
def get_balances(self):
|
def get_balances(self):
|
||||||
log.debug('retrieving wallets balances')
|
|
||||||
try:
|
|
||||||
balances = self.api.returnbalances()
|
balances = self.api.returnbalances()
|
||||||
|
try:
|
||||||
|
log.debug('retrieving wallets balances')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.debug(e)
|
log.debug(e)
|
||||||
raise ExchangeRequestError(error=e)
|
raise ExchangeRequestError(error=e)
|
||||||
@@ -191,22 +186,35 @@ class Poloniex(Exchange):
|
|||||||
'5m', '15m', '30m', '2h', '4h', '1D'
|
'5m', '15m', '30m', '2h', '4h', '1D'
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# TODO: implement end_dt and start_dt filters
|
if end_dt is None:
|
||||||
|
end_dt = pd.Timestamp.utcnow()
|
||||||
|
|
||||||
if (
|
log.debug(
|
||||||
data_frequency == '5m' or data_frequency == 'minute'): # TODO: Polo does not have '1m'
|
'retrieving {bars} {freq} candles on {exchange} from '
|
||||||
|
'{end_dt} for markets {symbols}, '.format(
|
||||||
|
bars=bar_count,
|
||||||
|
freq=data_frequency,
|
||||||
|
exchange=self.name,
|
||||||
|
end_dt=end_dt,
|
||||||
|
symbols=get_symbols_string(assets)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
if data_frequency == '5m':
|
||||||
frequency = 300
|
frequency = 300
|
||||||
elif (data_frequency == '15m'):
|
elif data_frequency == '15m':
|
||||||
frequency = 900
|
frequency = 900
|
||||||
elif (data_frequency == '30m'):
|
elif data_frequency == '30m':
|
||||||
frequency = 1800
|
frequency = 1800
|
||||||
elif (data_frequency == '2h'):
|
elif data_frequency == '2h':
|
||||||
frequency = 7200
|
frequency = 7200
|
||||||
elif (data_frequency == '4h'):
|
elif data_frequency == '4h':
|
||||||
frequency = 14400
|
frequency = 14400
|
||||||
elif (data_frequency == '1D' or data_frequency == 'daily'):
|
elif data_frequency == '1D' or data_frequency == 'daily':
|
||||||
frequency = 86400
|
frequency = 86400
|
||||||
else:
|
else:
|
||||||
|
# Poloniex does not offer 1m data candles
|
||||||
|
# It is likely to error out there frequently
|
||||||
raise InvalidHistoryFrequencyError(
|
raise InvalidHistoryFrequencyError(
|
||||||
frequency=data_frequency
|
frequency=data_frequency
|
||||||
)
|
)
|
||||||
@@ -217,8 +225,8 @@ class Poloniex(Exchange):
|
|||||||
|
|
||||||
for asset in asset_list:
|
for asset in asset_list:
|
||||||
|
|
||||||
end = int(time.time())
|
end = int(time.mktime(end_dt.timetuple()))
|
||||||
if (bar_count is None):
|
if bar_count is None:
|
||||||
start = end - 2 * frequency
|
start = end - 2 * frequency
|
||||||
else:
|
else:
|
||||||
start = end - bar_count * frequency
|
start = end - bar_count * frequency
|
||||||
|
|||||||
@@ -22,16 +22,22 @@ class Poloniex_api(object):
|
|||||||
self.public = ['returnTicker', 'return24Volume', 'returnOrderBook',
|
self.public = ['returnTicker', 'return24Volume', 'returnOrderBook',
|
||||||
'returnTradeHistory', 'returnChartData',
|
'returnTradeHistory', 'returnChartData',
|
||||||
'returnCurrencies', 'returnLoanOrders']
|
'returnCurrencies', 'returnLoanOrders']
|
||||||
self.trading = ['returnBalances','returnCompleteBalances','returnDepositAddresses',
|
self.trading = ['returnBalances', 'returnCompleteBalances',
|
||||||
'generateNewAddress','returnDepositsWithdrawals','returnOpenOrders',
|
'returnDepositAddresses',
|
||||||
'returnTradeHistory','returnOrderTrades',
|
'generateNewAddress', 'returnDepositsWithdrawals',
|
||||||
|
'returnOpenOrders',
|
||||||
|
'returnTradeHistory', 'returnOrderTrades',
|
||||||
'buy', 'sell', 'cancelOrder', 'moveOrder',
|
'buy', 'sell', 'cancelOrder', 'moveOrder',
|
||||||
'withdraw', 'returnFeeInfo','returnAvailableAccountBalances',
|
'withdraw', 'returnFeeInfo',
|
||||||
|
'returnAvailableAccountBalances',
|
||||||
'returnTradableBalances', 'transferBalance',
|
'returnTradableBalances', 'transferBalance',
|
||||||
'returnMarginAccountSummary','marginBuy','marginSell',
|
'returnMarginAccountSummary', 'marginBuy',
|
||||||
'getMarginPosition', 'closeMarginPosition','createLoanOffer',
|
'marginSell',
|
||||||
'cancelLoanOffer','returnOpenLoanOffers','returnActiveLoans',
|
'getMarginPosition', 'closeMarginPosition',
|
||||||
'returnLendingHistory','toggleAutoRenew']
|
'createLoanOffer',
|
||||||
|
'cancelLoanOffer', 'returnOpenLoanOffers',
|
||||||
|
'returnActiveLoans',
|
||||||
|
'returnLendingHistory', 'toggleAutoRenew']
|
||||||
|
|
||||||
def ask_request(self):
|
def ask_request(self):
|
||||||
"""
|
"""
|
||||||
@@ -50,7 +56,7 @@ class Poloniex_api(object):
|
|||||||
self.request_cpt[now] = 0
|
self.request_cpt[now] = 0
|
||||||
return True
|
return True
|
||||||
|
|
||||||
cpt_date = self.request_cpt.keys()[0]
|
cpt_date = list(self.request_cpt.keys())[0]
|
||||||
cpt = self.request_cpt[cpt_date]
|
cpt = self.request_cpt[cpt_date]
|
||||||
|
|
||||||
if now > cpt_date + 1:
|
if now > cpt_date + 1:
|
||||||
@@ -60,8 +66,7 @@ class Poloniex_api(object):
|
|||||||
|
|
||||||
if cpt >= self.max_requests_per_second:
|
if cpt >= self.max_requests_per_second:
|
||||||
|
|
||||||
log.debug('max requests 6 reached, sleeping for 1 seconds')
|
time.sleep(1)
|
||||||
sleep(1)
|
|
||||||
|
|
||||||
now = time.time()
|
now = time.time()
|
||||||
self.request_cpt = dict()
|
self.request_cpt = dict()
|
||||||
@@ -73,21 +78,34 @@ class Poloniex_api(object):
|
|||||||
def query(self, method, req={}):
|
def query(self, method, req={}):
|
||||||
|
|
||||||
if method in self.public:
|
if method in self.public:
|
||||||
url = 'https://poloniex.com/public?command=' + method + '&' + urllib.parse.urlencode(req)
|
url = 'https://poloniex.com/public?command=' + method + '&' + \
|
||||||
|
urllib.parse.urlencode(req)
|
||||||
headers = {}
|
headers = {}
|
||||||
post_data = None
|
post_data = None
|
||||||
elif method in self.trading:
|
elif method in self.trading:
|
||||||
url = 'https://poloniex.com/tradingApi'
|
url = 'https://poloniex.com/tradingApi'
|
||||||
req['command'] = method
|
req['command'] = method
|
||||||
req['nonce'] = int(time.time()*1000)
|
req['nonce'] = int(time.time() * 1000)
|
||||||
post_data = urllib.parse.urlencode(req)
|
post_data = urllib.parse.urlencode(req)
|
||||||
signature = hmac.new(self.secret, post_data, hashlib.sha512).hexdigest()
|
|
||||||
headers = { 'Sign': signature, 'Key': self.key}
|
signature = hmac.new(self.secret.encode('utf-8'),
|
||||||
|
post_data.encode('utf-8'),
|
||||||
|
hashlib.sha512).hexdigest()
|
||||||
|
headers = {'Sign': signature, 'Key': self.key}
|
||||||
|
|
||||||
|
post_data = post_data.encode('utf-8')
|
||||||
else:
|
else:
|
||||||
raise ValueError('Method "' + method + '" not found in neither the Public API or Trading API endpoints')
|
raise ValueError(
|
||||||
|
'Method "' + method + '" not found in neither the Public API '
|
||||||
|
'or Trading API endpoints'
|
||||||
|
)
|
||||||
|
|
||||||
self.ask_request()
|
self.ask_request()
|
||||||
req = urllib.request.Request(url, data=post_data, headers=headers)
|
req = urllib.request.Request(
|
||||||
|
url,
|
||||||
|
data=post_data,
|
||||||
|
headers=headers
|
||||||
|
)
|
||||||
return json.loads(urlopen(req).read())
|
return json.loads(urlopen(req).read())
|
||||||
|
|
||||||
def returnticker(self):
|
def returnticker(self):
|
||||||
@@ -100,14 +118,16 @@ class Poloniex_api(object):
|
|||||||
return self.query('returnOrderBook', {'currencyPair': market})
|
return self.query('returnOrderBook', {'currencyPair': market})
|
||||||
|
|
||||||
def returntradehistory(self, market, start=None, end=None):
|
def returntradehistory(self, market, start=None, end=None):
|
||||||
if(start is not None and end is not None):
|
if (start is not None and end is not None):
|
||||||
return self.query('returntradehistory',
|
return self.query('returntradehistory',
|
||||||
{'currencyPair': market, 'start': start, 'end': end })
|
{'currencyPair': market, 'start': start,
|
||||||
|
'end': end})
|
||||||
else:
|
else:
|
||||||
return self.query('returntradehistory', {'currencyPair': market })
|
return self.query('returntradehistory', {'currencyPair': market})
|
||||||
|
|
||||||
def returnchartdata(self, market, period, start, end=9999999999):
|
def returnchartdata(self, market, period, start, end=9999999999):
|
||||||
return self.query('returnChartData', {'currencyPair': market, 'period': period,
|
return self.query('returnChartData',
|
||||||
|
{'currencyPair': market, 'period': period,
|
||||||
'start': start, 'end': end})
|
'start': start, 'end': end})
|
||||||
|
|
||||||
def returncurrencies(self):
|
def returncurrencies(self):
|
||||||
@@ -120,7 +140,7 @@ class Poloniex_api(object):
|
|||||||
return self.query('returnBalances')
|
return self.query('returnBalances')
|
||||||
|
|
||||||
def returncompletebalances(self, account):
|
def returncompletebalances(self, account):
|
||||||
if(account):
|
if (account):
|
||||||
return self.query('returnCompleteBalances', {'account': account})
|
return self.query('returnCompleteBalances', {'account': account})
|
||||||
else:
|
else:
|
||||||
return self.query('returnCompleteBalances')
|
return self.query('returnCompleteBalances')
|
||||||
@@ -132,43 +152,54 @@ class Poloniex_api(object):
|
|||||||
return self.query('generateNewAddress', {'currency': currency})
|
return self.query('generateNewAddress', {'currency': currency})
|
||||||
|
|
||||||
def returnDepositsWithdrawals(self, start, end):
|
def returnDepositsWithdrawals(self, start, end):
|
||||||
return self.query('returnDepositsWithdrawals', {'start': start, 'end': end})
|
return self.query('returnDepositsWithdrawals',
|
||||||
|
{'start': start, 'end': end})
|
||||||
|
|
||||||
def returnopenorders(self, market):
|
def returnopenorders(self, market):
|
||||||
return self.query('returnOpenOrders', {'currencyPair': market})
|
return self.query('returnOpenOrders', {'currencyPair': market})
|
||||||
|
|
||||||
def returntradehistory(self, market):
|
def returntradehistory(self, market):
|
||||||
#TODO: optional start and/or end and limit
|
# TODO: optional start and/or end and limit
|
||||||
return self.query('returnTradeHistory', {'currencyPair': market})
|
return self.query('returnTradeHistory', {'currencyPair': market})
|
||||||
|
|
||||||
def returnordertrades(self, ordernumber):
|
def returnordertrades(self, ordernumber):
|
||||||
return self.query('returnOrderTrades', {'orderNumber': ordernumber})
|
return self.query('returnOrderTrades', {'orderNumber': ordernumber})
|
||||||
|
|
||||||
def buy(self, market, amount, rate, fillorkill=0, immediateorcancel=0, postonly=0):
|
def buy(self, market, amount, rate, fillorkill=0, immediateorcancel=0,
|
||||||
if(fillorkill):
|
postonly=0):
|
||||||
return self.query('buy', {'currencyPair': market, 'rate':rate, 'amount': amount,
|
if (fillorkill):
|
||||||
|
return self.query('buy', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount,
|
||||||
'fillOrKill': fillorkill, })
|
'fillOrKill': fillorkill, })
|
||||||
elif(immediateorcancel):
|
elif (immediateorcancel):
|
||||||
return self.query('buy', {'currencyPair': market, 'rate':rate, 'amount': amount,
|
return self.query('buy', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount,
|
||||||
'immediateOrCancel': immediateorcancel, })
|
'immediateOrCancel': immediateorcancel, })
|
||||||
elif(postonly):
|
elif (postonly):
|
||||||
return self.query('buy', {'currencyPair': market, 'rate':rate, 'amount': amount,
|
return self.query('buy', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount,
|
||||||
'postOnly': postonly, })
|
'postOnly': postonly, })
|
||||||
else:
|
else:
|
||||||
return self.query('buy', {'currencyPair': market, 'rate':rate, 'amount': amount, })
|
return self.query('buy', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount, })
|
||||||
|
|
||||||
def sell(self, market, amount, rate, fillorkill=0, immediateorcancel=0, postonly=0):
|
def sell(self, market, amount, rate, fillorkill=0, immediateorcancel=0,
|
||||||
if(fillorkill):
|
postonly=0):
|
||||||
return self.query('sell', {'currencyPair': market, 'rate':rate, 'amount': amount,
|
if (fillorkill):
|
||||||
|
return self.query('sell', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount,
|
||||||
'fillOrKill': fillorkill, })
|
'fillOrKill': fillorkill, })
|
||||||
elif(immediateorcancel):
|
elif (immediateorcancel):
|
||||||
return self.query('sell', {'currencyPair': market, 'rate':rate, 'amount': amount,
|
return self.query('sell', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount,
|
||||||
'immediateOrCancel': immediateorcancel, })
|
'immediateOrCancel': immediateorcancel, })
|
||||||
elif(postonly):
|
elif (postonly):
|
||||||
return self.query('sell', {'currencyPair': market, 'rate':rate, 'amount': amount,
|
return self.query('sell', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount,
|
||||||
'postOnly': postonly, })
|
'postOnly': postonly, })
|
||||||
else:
|
else:
|
||||||
return self.query('sell', {'currencyPair': market, 'rate':rate, 'amount': amount, })
|
return self.query('sell', {'currencyPair': market, 'rate': rate,
|
||||||
|
'amount': amount, })
|
||||||
|
|
||||||
def cancelorder(self, ordernumber):
|
def cancelorder(self, ordernumber):
|
||||||
return self.query('cancelOrder', {'orderNumber': ordernumber})
|
return self.query('cancelOrder', {'orderNumber': ordernumber})
|
||||||
@@ -180,4 +211,3 @@ class Poloniex_api(object):
|
|||||||
|
|
||||||
def returnfeeinfo(self):
|
def returnfeeinfo(self):
|
||||||
return self.query('returnFeeInfo')
|
return self.query('returnFeeInfo')
|
||||||
|
|
||||||
|
|||||||
@@ -16,13 +16,13 @@ from time import sleep
|
|||||||
import pandas as pd
|
import pandas as pd
|
||||||
from catalyst.gens.sim_engine import (
|
from catalyst.gens.sim_engine import (
|
||||||
BAR,
|
BAR,
|
||||||
SESSION_START,
|
SESSION_START
|
||||||
MINUTE_END,
|
|
||||||
SESSION_END
|
|
||||||
)
|
)
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
log = Logger('ExchangeClock')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('ExchangeClock', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class SimpleClock(object):
|
class SimpleClock(object):
|
||||||
|
|||||||
@@ -49,3 +49,12 @@ def get_pretty_stats(stats_df, recorded_cols=None, num_rows=10):
|
|||||||
columns=columns,
|
columns=columns,
|
||||||
formatters=formatters
|
formatters=formatters
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def df_to_string(df):
|
||||||
|
pd.set_option('display.expand_frame_repr', False)
|
||||||
|
pd.set_option('precision', 8)
|
||||||
|
pd.set_option('display.width', 1000)
|
||||||
|
pd.set_option('display.max_colwidth', 1000)
|
||||||
|
|
||||||
|
return df.to_string()
|
||||||
|
|||||||
@@ -34,7 +34,9 @@ from catalyst.finance.commission import (
|
|||||||
from catalyst.finance.cancel_policy import NeverCancel
|
from catalyst.finance.cancel_policy import NeverCancel
|
||||||
from catalyst.utils.input_validation import expect_types
|
from catalyst.utils.input_validation import expect_types
|
||||||
|
|
||||||
log = Logger('Blotter')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('Blotter', level=LOG_LEVEL)
|
||||||
warning_logger = Logger('AlgoWarning')
|
warning_logger = Logger('AlgoWarning')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,9 @@ from catalyst.errors import (
|
|||||||
TradingControlViolation,
|
TradingControlViolation,
|
||||||
)
|
)
|
||||||
|
|
||||||
log = logbook.Logger('TradingControl')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('TradingControl', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class TradingControl(with_metaclass(abc.ABCMeta)):
|
class TradingControl(with_metaclass(abc.ABCMeta)):
|
||||||
|
|||||||
@@ -88,7 +88,10 @@ from six import itervalues, iteritems
|
|||||||
|
|
||||||
import catalyst.protocol as zp
|
import catalyst.protocol as zp
|
||||||
|
|
||||||
log = logbook.Logger('Performance')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Performance', level=LOG_LEVEL)
|
||||||
|
|
||||||
TRADE_TYPE = zp.DATASOURCE_TYPE.TRADE
|
TRADE_TYPE = zp.DATASOURCE_TYPE.TRADE
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,9 @@ import logbook
|
|||||||
from catalyst.assets import Future, Asset
|
from catalyst.assets import Future, Asset
|
||||||
from catalyst.utils.input_validation import expect_types
|
from catalyst.utils.input_validation import expect_types
|
||||||
|
|
||||||
log = logbook.Logger('Performance')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Performance', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class Position(object):
|
class Position(object):
|
||||||
|
|||||||
@@ -32,7 +32,9 @@ from catalyst.assets import (
|
|||||||
)
|
)
|
||||||
from . position import positiondict
|
from . position import positiondict
|
||||||
|
|
||||||
log = logbook.Logger('Performance')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Performance', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
PositionStats = namedtuple('PositionStats',
|
PositionStats = namedtuple('PositionStats',
|
||||||
|
|||||||
@@ -70,7 +70,9 @@ import catalyst.finance.risk as risk
|
|||||||
|
|
||||||
from . position_tracker import PositionTracker
|
from . position_tracker import PositionTracker
|
||||||
|
|
||||||
log = logbook.Logger('Performance')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Performance', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class PerformanceTracker(object):
|
class PerformanceTracker(object):
|
||||||
|
|||||||
@@ -38,7 +38,9 @@ from empyrical import (
|
|||||||
sortino_ratio,
|
sortino_ratio,
|
||||||
)
|
)
|
||||||
|
|
||||||
log = logbook.Logger('Risk Cumulative')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Risk Cumulative', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
choose_treasury = functools.partial(choose_treasury, lambda *args: '10year',
|
choose_treasury = functools.partial(choose_treasury, lambda *args: '10year',
|
||||||
|
|||||||
@@ -36,7 +36,9 @@ from empyrical import (
|
|||||||
sortino_ratio
|
sortino_ratio
|
||||||
)
|
)
|
||||||
|
|
||||||
log = logbook.Logger('Risk Period')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Risk Period', level=LOG_LEVEL)
|
||||||
|
|
||||||
choose_treasury = functools.partial(risk.choose_treasury,
|
choose_treasury = functools.partial(risk.choose_treasury,
|
||||||
risk.select_treasury_duration)
|
risk.select_treasury_duration)
|
||||||
|
|||||||
@@ -63,7 +63,9 @@ from dateutil.relativedelta import relativedelta
|
|||||||
|
|
||||||
from . period import RiskMetricsPeriod
|
from . period import RiskMetricsPeriod
|
||||||
|
|
||||||
log = logbook.Logger('Risk Report')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Risk Report', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class RiskReport(object):
|
class RiskReport(object):
|
||||||
|
|||||||
@@ -61,7 +61,9 @@ Risk Report
|
|||||||
import logbook
|
import logbook
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
log = logbook.Logger('Risk')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Risk', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
TREASURY_DURATIONS = [
|
TREASURY_DURATIONS = [
|
||||||
|
|||||||
@@ -26,7 +26,9 @@ from catalyst.data.loader import load_market_data
|
|||||||
from catalyst.utils.calendars import get_calendar
|
from catalyst.utils.calendars import get_calendar
|
||||||
from catalyst.utils.memoize import remember_last
|
from catalyst.utils.memoize import remember_last
|
||||||
|
|
||||||
log = logbook.Logger('Trading')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = logbook.Logger('Trading', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
DEFAULT_CAPITAL_BASE = 1e5
|
DEFAULT_CAPITAL_BASE = 1e5
|
||||||
|
|||||||
@@ -27,7 +27,9 @@ from catalyst.gens.sim_engine import (
|
|||||||
BEFORE_TRADING_START_BAR
|
BEFORE_TRADING_START_BAR
|
||||||
)
|
)
|
||||||
|
|
||||||
log = Logger('Trade Simulation')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('Trade Simulation', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class AlgorithmSimulator(object):
|
class AlgorithmSimulator(object):
|
||||||
|
|||||||
@@ -23,7 +23,9 @@ from catalyst.protocol import (
|
|||||||
)
|
)
|
||||||
from catalyst.assets import Equity
|
from catalyst.assets import Equity
|
||||||
|
|
||||||
logger = Logger('Requests Source Logger')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
logger = Logger('Requests Source Logger', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
def roll_dts_to_midnight(dts, trading_day):
|
def roll_dts_to_midnight(dts, trading_day):
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ def catalyst_root(environ=None):
|
|||||||
|
|
||||||
root = environ.get('ZIPLINE_ROOT', None)
|
root = environ.get('ZIPLINE_ROOT', None)
|
||||||
if root is None:
|
if root is None:
|
||||||
root = expanduser('~/.catalyst')
|
root = os.path.join(expanduser('~'),'.catalyst')
|
||||||
|
|
||||||
return root
|
return root
|
||||||
|
|
||||||
|
|||||||
@@ -36,14 +36,16 @@ from catalyst.exchange.data_portal_exchange import DataPortalExchangeLive, \
|
|||||||
from catalyst.exchange.asset_finder_exchange import AssetFinderExchange
|
from catalyst.exchange.asset_finder_exchange import AssetFinderExchange
|
||||||
from catalyst.exchange.exchange_portfolio import ExchangePortfolio
|
from catalyst.exchange.exchange_portfolio import ExchangePortfolio
|
||||||
from catalyst.exchange.exchange_errors import (
|
from catalyst.exchange.exchange_errors import (
|
||||||
ExchangeRequestError,
|
ExchangeRequestError, ExchangeAuthEmpty,
|
||||||
ExchangeRequestErrorTooManyAttempts,
|
ExchangeRequestErrorTooManyAttempts,
|
||||||
BaseCurrencyNotFoundError, ExchangeNotFoundError)
|
BaseCurrencyNotFoundError, ExchangeNotFoundError)
|
||||||
from catalyst.exchange.exchange_utils import get_exchange_auth, \
|
from catalyst.exchange.exchange_utils import get_exchange_auth, \
|
||||||
get_algo_object
|
get_algo_object, get_exchange_folder
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
log = Logger('run_algo')
|
from catalyst.constants import LOG_LEVEL
|
||||||
|
|
||||||
|
log = Logger('run_algo', level=LOG_LEVEL)
|
||||||
|
|
||||||
|
|
||||||
class _RunAlgoError(click.ClickException, ValueError):
|
class _RunAlgoError(click.ClickException, ValueError):
|
||||||
@@ -164,6 +166,12 @@ def _run(handle_data,
|
|||||||
|
|
||||||
# This corresponds to the json file containing api token info
|
# This corresponds to the json file containing api token info
|
||||||
exchange_auth = get_exchange_auth(exchange_name)
|
exchange_auth = get_exchange_auth(exchange_name)
|
||||||
|
|
||||||
|
if live and (exchange_auth['key'] == '' or exchange_auth['secret'] == ''):
|
||||||
|
raise ExchangeAuthEmpty(
|
||||||
|
exchange=exchange_name.title(),
|
||||||
|
filename=os.path.join(get_exchange_folder(exchange_name, environ), 'auth.json') )
|
||||||
|
|
||||||
if exchange_name == 'bitfinex':
|
if exchange_name == 'bitfinex':
|
||||||
exchanges[exchange_name] = Bitfinex(
|
exchanges[exchange_name] = Bitfinex(
|
||||||
key=exchange_auth['key'],
|
key=exchange_auth['key'],
|
||||||
@@ -235,8 +243,11 @@ def _run(handle_data,
|
|||||||
balances = exchange.get_balances()
|
balances = exchange.get_balances()
|
||||||
except ExchangeRequestError as e:
|
except ExchangeRequestError as e:
|
||||||
if attempt_index < 20:
|
if attempt_index < 20:
|
||||||
log.warn('exchange error when retrieving balances, {} '
|
log.warn(
|
||||||
'trying again in 5 seconds'.format(e))
|
'could not retrieve balances on {}: {}'.format(
|
||||||
|
exchange.name, e
|
||||||
|
)
|
||||||
|
)
|
||||||
sleep(5)
|
sleep(5)
|
||||||
return fetch_capital_base(exchange, attempt_index + 1)
|
return fetch_capital_base(exchange, attempt_index + 1)
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ My first algorithm
|
|||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Lets take a look at a very simple algorithm from the ``examples``
|
Lets take a look at a very simple algorithm from the ``examples``
|
||||||
directory, ``buy_btc.py``:
|
directory: `buy_btc_simple.py <https://github.com/enigmampc/catalyst/blob/master/catalyst/examples/buy_btc_simple.py>`_:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
@@ -225,16 +225,16 @@ Thus, to execute our algorithm from above and save the results to
|
|||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
catalyst run -f buy_btc_simple.py -x bitfinex --start 2016-1-1 --end 2016-9-29 -o buy_simple_btc_out.pickle
|
catalyst run -f buy_btc_simple.py -x bitfinex --start 2016-1-1 --end 2017-9-30 -o buy_btc_simple_out.pickle
|
||||||
|
|
||||||
|
|
||||||
..
|
.. parsed-literal::
|
||||||
.. parsed-literal
|
|
||||||
|
|
||||||
.. AAPL
|
INFO: run_algo: running algo in backtest mode
|
||||||
.. [2015-11-04 22:45:32.820166] INFO: Performance: Simulated 3521 trading days out of 3521.
|
INFO: exchange_algorithm: initialized trading algorithm in backtest mode
|
||||||
.. [2015-11-04 22:45:32.820314] INFO: Performance: first open: 2000-01-03 14:31:00+00:00
|
INFO: Performance: Simulated 639 trading days out of 639.
|
||||||
.. [2015-11-04 22:45:32.820401] INFO: Performance: last close: 2013-12-31 21:00:00+00:00
|
INFO: Performance: first open: 2016-01-01 00:00:00+00:00
|
||||||
|
INFO: Performance: last close: 2017-09-30 23:59:00+00:00
|
||||||
|
|
||||||
|
|
||||||
``run`` first calls the ``initialize()`` function, and then
|
``run`` first calls the ``initialize()`` function, and then
|
||||||
@@ -255,7 +255,7 @@ slippage model that ``catalyst`` uses).
|
|||||||
|
|
||||||
Let's take a quick look at the performance ``DataFrame``. For this, we
|
Let's take a quick look at the performance ``DataFrame``. For this, we
|
||||||
use ``pandas`` from inside the IPython Notebook and print the first ten
|
use ``pandas`` from inside the IPython Notebook and print the first ten
|
||||||
rows. Note that ``catalyst`` makes heavy usage of
|
rows. and print the first ten rows. Note that ``catalyst`` makes heavy usage of
|
||||||
`pandas <http://pandas.pydata.org/>`_, especially for data input and
|
`pandas <http://pandas.pydata.org/>`_, especially for data input and
|
||||||
outputting so it's worth spending some time to learn it.
|
outputting so it's worth spending some time to learn it.
|
||||||
|
|
||||||
@@ -265,17 +265,200 @@ outputting so it's worth spending some time to learn it.
|
|||||||
perf = pd.read_pickle('buy_btc_simple_out.pickle') # read in perf DataFrame
|
perf = pd.read_pickle('buy_btc_simple_out.pickle') # read in perf DataFrame
|
||||||
perf.head()
|
perf.head()
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
|
||||||
|
<div style="max-height:1000px;max-width:1500px;overflow:auto;">
|
||||||
|
<table border="1" class="dataframe">
|
||||||
|
<thead>
|
||||||
|
<tr style="text-align: right;">
|
||||||
|
<th></th>
|
||||||
|
<th>algo_volatility</th>
|
||||||
|
<th>algorithm_period_return</th>
|
||||||
|
<th>alpha</th>
|
||||||
|
<th>benchmark_period_return</th>
|
||||||
|
<th>benchmark_volatility</th>
|
||||||
|
<th>beta</th>
|
||||||
|
<th>btc</th>
|
||||||
|
<th>capital_used</th>
|
||||||
|
<th>ending_cash</th>
|
||||||
|
<th>ending_exposure</th>
|
||||||
|
<th>...</th>
|
||||||
|
<th>short_exposure</th>
|
||||||
|
<th>short_value</th>
|
||||||
|
<th>shorts_count</th>
|
||||||
|
<th>sortino</th>
|
||||||
|
<th>starting_cash</th>
|
||||||
|
<th>starting_exposure</th>
|
||||||
|
<th>starting_value</th>
|
||||||
|
<th>trading_days</th>
|
||||||
|
<th>transactions</th>
|
||||||
|
<th>treasury_period_return</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th>2016-01-01 23:59:00+00:00</th>
|
||||||
|
<td>NaN</td>
|
||||||
|
<td>0.000000e+00</td>
|
||||||
|
<td>NaN</td>
|
||||||
|
<td>-0.010937</td>
|
||||||
|
<td>NaN</td>
|
||||||
|
<td>NaN</td>
|
||||||
|
<td>433.979999</td>
|
||||||
|
<td>0.000000</td>
|
||||||
|
<td>1.000000e+07</td>
|
||||||
|
<td>0.00</td>
|
||||||
|
<td>...</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>NaN</td>
|
||||||
|
<td>1.000000e+07</td>
|
||||||
|
<td>0.00</td>
|
||||||
|
<td>0.00</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>[]</td>
|
||||||
|
<td>0.0227</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>2016-01-02 23:59:00+00:00</th>
|
||||||
|
<td>0.000011</td>
|
||||||
|
<td>-9.536708e-07</td>
|
||||||
|
<td>-0.000170</td>
|
||||||
|
<td>-0.006480</td>
|
||||||
|
<td>0.173338</td>
|
||||||
|
<td>-0.000062</td>
|
||||||
|
<td>432.700000</td>
|
||||||
|
<td>-442.236708</td>
|
||||||
|
<td>9.999558e+06</td>
|
||||||
|
<td>432.70</td>
|
||||||
|
<td>...</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>-11.224972</td>
|
||||||
|
<td>1.000000e+07</td>
|
||||||
|
<td>0.00</td>
|
||||||
|
<td>0.00</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>[{u'order_id': u'7869f7828fa140328eb40477bb7de...</td>
|
||||||
|
<td>0.0227</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>2016-01-03 23:59:00+00:00</th>
|
||||||
|
<td>0.000011</td>
|
||||||
|
<td>-2.328842e-06</td>
|
||||||
|
<td>-0.000176</td>
|
||||||
|
<td>-0.026512</td>
|
||||||
|
<td>0.197857</td>
|
||||||
|
<td>0.000009</td>
|
||||||
|
<td>428.390000</td>
|
||||||
|
<td>-437.831716</td>
|
||||||
|
<td>9.999120e+06</td>
|
||||||
|
<td>856.78</td>
|
||||||
|
<td>...</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>-12.754262</td>
|
||||||
|
<td>9.999558e+06</td>
|
||||||
|
<td>432.70</td>
|
||||||
|
<td>432.70</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>[{u'order_id': u'be62ff77760c4599abaac43be9cc9...</td>
|
||||||
|
<td>0.0227</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>2016-01-04 23:59:00+00:00</th>
|
||||||
|
<td>0.000011</td>
|
||||||
|
<td>-2.380954e-06</td>
|
||||||
|
<td>-0.000139</td>
|
||||||
|
<td>-0.008640</td>
|
||||||
|
<td>0.269790</td>
|
||||||
|
<td>0.000020</td>
|
||||||
|
<td>432.900000</td>
|
||||||
|
<td>-442.441116</td>
|
||||||
|
<td>9.998677e+06</td>
|
||||||
|
<td>1298.70</td>
|
||||||
|
<td>...</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>-11.287205</td>
|
||||||
|
<td>9.999120e+06</td>
|
||||||
|
<td>856.78</td>
|
||||||
|
<td>856.78</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>[{u'order_id': u'd6dca79513214346a646079213526...</td>
|
||||||
|
<td>0.0224</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>2016-01-05 23:59:00+00:00</th>
|
||||||
|
<td>0.000011</td>
|
||||||
|
<td>-3.650729e-06</td>
|
||||||
|
<td>-0.000158</td>
|
||||||
|
<td>-0.021426</td>
|
||||||
|
<td>0.245989</td>
|
||||||
|
<td>0.000024</td>
|
||||||
|
<td>431.840000</td>
|
||||||
|
<td>-441.357754</td>
|
||||||
|
<td>9.998236e+06</td>
|
||||||
|
<td>1727.36</td>
|
||||||
|
<td>...</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>-12.333847</td>
|
||||||
|
<td>9.998677e+06</td>
|
||||||
|
<td>1298.70</td>
|
||||||
|
<td>1298.70</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>[{u'order_id': u'505275d6646a41f3856b22b16678d...</td>
|
||||||
|
<td>0.0225</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
There is a row for each trading day, starting on the first day of our
|
There is a row for each trading day, starting on the first day of our
|
||||||
simulation Jan 1st, 2016. In the columns you can find various
|
simulation Jan 1st, 2016. In the columns you can find various
|
||||||
information about the state of your algorithm. The very first column
|
information about the state of your algorithm. The column
|
||||||
``btc`` was placed there by the ``record()`` function mentioned earlier
|
``btc`` was placed there by the ``record()`` function mentioned earlier
|
||||||
and allows us to plot the price of bitcoin. For example, we could easily
|
and allows us to plot the price of bitcoin. For example, we could easily
|
||||||
examine now how our portfolio value changed over time compared to the
|
examine now how our portfolio value changed over time compared to the
|
||||||
bitcoin price.
|
bitcoin price.
|
||||||
|
|
||||||
Our algorithm performance as assessed by the
|
.. code-block:: python
|
||||||
``portfolio_value`` closely matches that of the bitcoin price. This
|
|
||||||
is not surprising as our algorithm only bought bitcoin every chance it got.
|
%load_ext catalyst
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
%pylab inline
|
||||||
|
figsize(12, 12)
|
||||||
|
import matplotlib.pyplot as plt
|
||||||
|
|
||||||
|
ax1 = plt.subplot(211)
|
||||||
|
perf.portfolio_value.plot(ax=ax1)
|
||||||
|
ax1.set_ylabel('portfolio value')
|
||||||
|
ax2 = plt.subplot(212, sharex=ax1)
|
||||||
|
perf.btc.plot(ax=ax2)
|
||||||
|
ax2.set_ylabel('bitcoin price')
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
Populating the interactive namespace from numpy and matplotlib
|
||||||
|
|
||||||
|
.. parsed-literal::
|
||||||
|
|
||||||
|
<matplotlib.text.Text at 0x10eaeadd0>
|
||||||
|
|
||||||
|
.. image:: https://s3.amazonaws.com/enigmaco-docs/github.io/buy_btc_simple_graph.png
|
||||||
|
|
||||||
|
Our algorithm performance as assessed by the ``portfolio_value`` closely
|
||||||
|
matches that of the bitcoin price. This is not surprising as our algorithm
|
||||||
|
only bought bitcoin every chance it got.
|
||||||
|
|
||||||
|
|
||||||
Access to previous prices using ``history``
|
Access to previous prices using ``history``
|
||||||
@@ -305,23 +488,25 @@ a function we use in the ``handle_data()`` section:
|
|||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
from catalyst.api import order, record, symbol
|
%%catalyst --start 2016-4-1 --end 2017-9-30 -x bitfinex
|
||||||
|
|
||||||
|
from catalyst.api import order, record, symbol, order_target
|
||||||
|
|
||||||
def initialize(context):
|
def initialize(context):
|
||||||
context.i = 0
|
context.i = 0
|
||||||
context.asset = symbol('btc_usd')
|
context.asset = symbol('btc_usd')
|
||||||
|
|
||||||
def handle_data(context, data):
|
def handle_data(context, data):
|
||||||
# Skip first 300 days to get full windows
|
# Skip first 150 days to get full windows
|
||||||
context.i += 1
|
context.i += 1
|
||||||
if context.i < 300:
|
if context.i < 150:
|
||||||
return
|
return
|
||||||
|
|
||||||
# Compute averages
|
# Compute averages
|
||||||
# data.history() has to be called with the same params
|
# data.history() has to be called with the same params
|
||||||
# from above and returns a pandas dataframe.
|
# from above and returns a pandas dataframe.
|
||||||
short_mavg = data.history(context.asset, 'price', bar_count=100, frequency="1d").mean()
|
short_mavg = data.history(context.asset, 'price', bar_count=50, frequency="1d").mean()
|
||||||
long_mavg = data.history(context.asset, 'price', bar_count=300, frequency="1d").mean()
|
long_mavg = data.history(context.asset, 'price', bar_count=150, frequency="1d").mean()
|
||||||
|
|
||||||
# Trading logic
|
# Trading logic
|
||||||
if short_mavg > long_mavg:
|
if short_mavg > long_mavg:
|
||||||
@@ -336,6 +521,46 @@ a function we use in the ``handle_data()`` section:
|
|||||||
short_mavg=short_mavg,
|
short_mavg=short_mavg,
|
||||||
long_mavg=long_mavg)
|
long_mavg=long_mavg)
|
||||||
|
|
||||||
|
def analyze(context, perf):
|
||||||
|
import matplotlib.pyplot as plt
|
||||||
|
fig = plt.figure(figsize=(12,12))
|
||||||
|
ax1 = fig.add_subplot(211)
|
||||||
|
perf.portfolio_value.plot(ax=ax1)
|
||||||
|
ax1.set_ylabel('portfolio value in $')
|
||||||
|
|
||||||
|
ax2 = fig.add_subplot(212)
|
||||||
|
perf['btc'].plot(ax=ax2)
|
||||||
|
perf[['short_mavg', 'long_mavg']].plot(ax=ax2)
|
||||||
|
|
||||||
|
perf_trans = perf.ix[[t != [] for t in perf.transactions]]
|
||||||
|
buys = perf_trans.ix[[t[0]['amount'] > 0 for t in perf_trans.transactions]]
|
||||||
|
sells = perf_trans.ix[
|
||||||
|
[t[0]['amount'] < 0 for t in perf_trans.transactions]]
|
||||||
|
ax2.plot(buys.index, perf.short_mavg.ix[buys.index],
|
||||||
|
'^', markersize=10, color='m')
|
||||||
|
ax2.plot(sells.index, perf.short_mavg.ix[sells.index],
|
||||||
|
'v', markersize=10, color='k')
|
||||||
|
ax2.set_ylabel('price in $')
|
||||||
|
plt.legend(loc=0)
|
||||||
|
plt.show()
|
||||||
|
|
||||||
|
Here we are explicitly defining an ``analyze()`` function that gets
|
||||||
|
automatically called once the backtest is done.
|
||||||
|
|
||||||
|
Although it might not be directly apparent, the power of ``history()``
|
||||||
|
(pun intended) can not be under-estimated as most algorithms make use of
|
||||||
|
prior market developments in one form or another. You could easily
|
||||||
|
devise a strategy that trains a classifier with
|
||||||
|
`scikit-learn <http://scikit-learn.org/stable/>`__ which tries to
|
||||||
|
predict future market movements based on past prices (note, that most of
|
||||||
|
the ``scikit-learn`` functions require ``numpy.ndarray``\ s rather than
|
||||||
|
``pandas.DataFrame``\ s, so you can simply pass the underlying
|
||||||
|
``ndarray`` of a ``DataFrame`` via ``.values``).
|
||||||
|
|
||||||
|
We also used the ``order_target()`` function above. This and other
|
||||||
|
functions like it can make order management and portfolio rebalancing
|
||||||
|
much easier.
|
||||||
|
|
||||||
|
|
||||||
Conclusions
|
Conclusions
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
|||||||
@@ -1,30 +1,22 @@
|
|||||||
name: catalyst
|
name: catalyst
|
||||||
channels:
|
channels:
|
||||||
- statiskit
|
|
||||||
- defaults
|
- defaults
|
||||||
dependencies:
|
dependencies:
|
||||||
- certifi=2016.2.28=py27_0
|
- certifi=2016.2.28=py27_0
|
||||||
- coverage=4.4.1=py27_0
|
- mkl=2017.0.3=0
|
||||||
- nose=1.3.7=py27_1
|
- numpy=1.13.1=py27_0
|
||||||
- openssl=1.0.2l=0
|
- openssl=1.0.2l
|
||||||
- path.py=10.3.1=py27_0
|
|
||||||
- pip=9.0.1=py27_1
|
- pip=9.0.1=py27_1
|
||||||
- python=2.7.13=0
|
- python=2.7.13=0
|
||||||
- pyyaml=3.12=py27_0
|
- scipy=0.19.1=np113py27_0
|
||||||
- readline=6.2=2
|
- setuptools=36.4.0=py27_1
|
||||||
- setuptools=36.4.0=py27_0
|
- sqlite=3.13.0
|
||||||
- six=1.10.0=py27_0
|
- tk=8.5.18
|
||||||
- sqlite=3.13.0=0
|
|
||||||
- tk=8.5.18=0
|
|
||||||
- wheel=0.29.0=py27_0
|
- wheel=0.29.0=py27_0
|
||||||
- yaml=0.1.6=0
|
|
||||||
- zlib=1.2.11=0
|
- zlib=1.2.11=0
|
||||||
- libdev=1.0.0=py27_0
|
|
||||||
- python-dev=1.0.0=py27_0
|
|
||||||
- python-scons=3.0.0=py27_0
|
|
||||||
- pip:
|
- pip:
|
||||||
- alembic==0.9.5
|
- alembic==0.9.6
|
||||||
- backports.shutil-get-terminal-size==1.0.0
|
- backports.functools-lru-cache==1.4
|
||||||
- bcolz==0.12.1
|
- bcolz==0.12.1
|
||||||
- bottleneck==1.2.1
|
- bottleneck==1.2.1
|
||||||
- chardet==3.0.4
|
- chardet==3.0.4
|
||||||
@@ -32,36 +24,22 @@ dependencies:
|
|||||||
- contextlib2==0.5.5
|
- contextlib2==0.5.5
|
||||||
- cycler==0.10.0
|
- cycler==0.10.0
|
||||||
- cyordereddict==1.0.0
|
- cyordereddict==1.0.0
|
||||||
- cython==0.26.1
|
- cython==0.27.1
|
||||||
- decorator==4.1.2
|
- decorator==4.1.2
|
||||||
- empyrical==0.2.1
|
- empyrical==0.2.1
|
||||||
- enigma-catalyst>=0.2.dev2
|
|
||||||
- enum34==1.1.6
|
|
||||||
- functools32==3.2.3.post2
|
|
||||||
- idna==2.6
|
- idna==2.6
|
||||||
- intervaltree==2.1.0
|
- intervaltree==2.1.0
|
||||||
- ipdb==0.10.3
|
|
||||||
- ipdbplugin==1.4.5
|
|
||||||
- ipython==5.5.0
|
|
||||||
- ipython-genutils==0.2.0
|
|
||||||
- logbook==1.1.0
|
- logbook==1.1.0
|
||||||
- lru-dict==1.1.6
|
- lru-dict==1.1.6
|
||||||
- mako==1.0.7
|
- mako==1.0.7
|
||||||
- markupsafe==1.0
|
- markupsafe==1.0
|
||||||
- matplotlib==2.0.2
|
- matplotlib==2.1.0
|
||||||
- multipledispatch==0.4.9
|
- multipledispatch==0.4.9
|
||||||
- networkx==1.11
|
- networkx==2.0
|
||||||
- numexpr==2.6.4
|
- numexpr==2.6.4
|
||||||
- numpy==1.13.1
|
|
||||||
- pandas==0.19.2
|
- pandas==0.19.2
|
||||||
- pandas-datareader==0.5.0
|
- pandas-datareader==0.5.0
|
||||||
- pathlib2==2.3.0
|
|
||||||
- patsy==0.4.1
|
- patsy==0.4.1
|
||||||
- pexpect==4.2.1
|
|
||||||
- pickleshare==0.7.4
|
|
||||||
- prompt-toolkit==1.0.15
|
|
||||||
- ptyprocess==0.5.2
|
|
||||||
- pygments==2.2.0
|
|
||||||
- pyparsing==2.2.0
|
- pyparsing==2.2.0
|
||||||
- python-dateutil==2.6.1
|
- python-dateutil==2.6.1
|
||||||
- python-editor==1.0.3
|
- python-editor==1.0.3
|
||||||
@@ -69,16 +47,12 @@ dependencies:
|
|||||||
- requests==2.18.4
|
- requests==2.18.4
|
||||||
- requests-file==1.4.2
|
- requests-file==1.4.2
|
||||||
- requests-ftp==0.3.1
|
- requests-ftp==0.3.1
|
||||||
- scandir==1.5
|
- six==1.11.0
|
||||||
- scipy==0.19.1
|
|
||||||
- scons==3.0.0a20170821
|
|
||||||
- simplegeneric==0.8.1
|
|
||||||
- sortedcontainers==1.5.7
|
- sortedcontainers==1.5.7
|
||||||
- sqlalchemy==1.1.14
|
- sqlalchemy==1.1.14
|
||||||
- statsmodels==0.8.0
|
- statsmodels==0.8.0
|
||||||
- subprocess32==3.2.7
|
- subprocess32==3.2.7
|
||||||
- tables==3.4.2
|
- tables==3.4.2
|
||||||
- toolz==0.8.2
|
- toolz==0.8.2
|
||||||
- traitlets==4.3.2
|
|
||||||
- urllib3==1.22
|
- urllib3==1.22
|
||||||
- wcwidth==0.1.7
|
- enigma-catalyst>=0.3
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# Incompatible with earlier PIP versions
|
# Incompatible with earlier PIP versions
|
||||||
pip>=7.1.0
|
pip>=7.1.0
|
||||||
# bcolz fails to install if this is not in the build_requires.
|
# bcolz fails to install if this is not in the build_requires.
|
||||||
setuptools>18.0
|
setuptools>36.0
|
||||||
|
|
||||||
# Logging
|
# Logging
|
||||||
Logbook==0.12.5
|
Logbook==0.12.5
|
||||||
|
|||||||
@@ -0,0 +1,150 @@
|
|||||||
|
import shutil
|
||||||
|
import random
|
||||||
|
import tempfile
|
||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
from catalyst.exchange.exchange_bundle import ExchangeBundle
|
||||||
|
from catalyst.exchange.exchange_bcolz import BcolzExchangeBarWriter, \
|
||||||
|
BcolzExchangeBarReader
|
||||||
|
|
||||||
|
from catalyst.exchange.bundle_utils import get_df_from_arrays
|
||||||
|
|
||||||
|
from nose.tools import assert_equals
|
||||||
|
|
||||||
|
|
||||||
|
class TestBcolzWriter(object):
|
||||||
|
@classmethod
|
||||||
|
def setup_class(cls):
|
||||||
|
cls.columns = ['open', 'high', 'low', 'close', 'volume']
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.root_dir = tempfile.mkdtemp() # Create a temporary directory
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
shutil.rmtree(self.root_dir) # Remove the directory after the test
|
||||||
|
|
||||||
|
def generate_df(self, exchange_name, freq, start, end):
|
||||||
|
bundle = ExchangeBundle(exchange_name)
|
||||||
|
index = bundle.get_calendar_periods_range(start, end, freq)
|
||||||
|
df = pd.DataFrame(index=index, columns=self.columns)
|
||||||
|
df.fillna(random.random(), inplace=True)
|
||||||
|
return df
|
||||||
|
|
||||||
|
def test_bcolz_write_daily_past(self):
|
||||||
|
start = pd.to_datetime('2016-01-01')
|
||||||
|
end = pd.to_datetime('2016-12-31')
|
||||||
|
freq = 'daily'
|
||||||
|
|
||||||
|
df = self.generate_df('bitfinex', freq, start, end)
|
||||||
|
|
||||||
|
writer = BcolzExchangeBarWriter(
|
||||||
|
rootdir=self.root_dir,
|
||||||
|
start_session=start,
|
||||||
|
end_session=end,
|
||||||
|
data_frequency=freq,
|
||||||
|
write_metadata=True)
|
||||||
|
|
||||||
|
data = []
|
||||||
|
data.append((1, df))
|
||||||
|
writer.write(data)
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_bcolz_write_daily_present(self):
|
||||||
|
start = pd.to_datetime('2017-01-01')
|
||||||
|
end = pd.to_datetime('today')
|
||||||
|
freq = 'daily'
|
||||||
|
|
||||||
|
df = self.generate_df('bitfinex', freq, start, end)
|
||||||
|
|
||||||
|
writer = BcolzExchangeBarWriter(
|
||||||
|
rootdir=self.root_dir,
|
||||||
|
start_session=start,
|
||||||
|
end_session=end,
|
||||||
|
data_frequency=freq,
|
||||||
|
write_metadata=True)
|
||||||
|
|
||||||
|
data = []
|
||||||
|
data.append((1, df))
|
||||||
|
writer.write(data)
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_bcolz_write_minute_past(self):
|
||||||
|
start = pd.to_datetime('2015-04-01 00:00')
|
||||||
|
end = pd.to_datetime('2015-04-30 23:59')
|
||||||
|
freq = 'minute'
|
||||||
|
|
||||||
|
df = self.generate_df('bitfinex', freq, start, end)
|
||||||
|
|
||||||
|
writer = BcolzExchangeBarWriter(
|
||||||
|
rootdir=self.root_dir,
|
||||||
|
start_session=start,
|
||||||
|
end_session=end,
|
||||||
|
data_frequency=freq,
|
||||||
|
write_metadata=True)
|
||||||
|
|
||||||
|
data = []
|
||||||
|
data.append((1, df))
|
||||||
|
writer.write(data)
|
||||||
|
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_bcolz_write_minute_present(self):
|
||||||
|
start = pd.to_datetime('2017-10-01 00:00')
|
||||||
|
end = pd.to_datetime('today')
|
||||||
|
freq = 'minute'
|
||||||
|
|
||||||
|
df = self.generate_df('bitfinex', freq, start, end)
|
||||||
|
|
||||||
|
writer = BcolzExchangeBarWriter(
|
||||||
|
rootdir=self.root_dir,
|
||||||
|
start_session=start,
|
||||||
|
end_session=end,
|
||||||
|
data_frequency=freq,
|
||||||
|
write_metadata=True)
|
||||||
|
|
||||||
|
data = []
|
||||||
|
data.append((1, df))
|
||||||
|
writer.write(data)
|
||||||
|
pass
|
||||||
|
|
||||||
|
def bcolz_exchange_daily_write_read(self, exchange_name):
|
||||||
|
start = pd.to_datetime('2017-10-01 00:00')
|
||||||
|
end = pd.to_datetime('today')
|
||||||
|
freq = 'daily'
|
||||||
|
|
||||||
|
bundle = ExchangeBundle(exchange_name)
|
||||||
|
|
||||||
|
df = self.generate_df(exchange_name, freq, start, end)
|
||||||
|
|
||||||
|
print df.index[0],df.index[-1]
|
||||||
|
|
||||||
|
writer = BcolzExchangeBarWriter(
|
||||||
|
rootdir=self.root_dir,
|
||||||
|
start_session=df.index[0],
|
||||||
|
end_session=df.index[-1],
|
||||||
|
data_frequency=freq,
|
||||||
|
write_metadata=True)
|
||||||
|
|
||||||
|
data = []
|
||||||
|
data.append((1, df))
|
||||||
|
writer.write(data)
|
||||||
|
|
||||||
|
reader = BcolzExchangeBarReader(rootdir=self.root_dir,
|
||||||
|
data_frequency=freq)
|
||||||
|
|
||||||
|
arrays = reader.load_raw_arrays(self.columns, start, end, [1, ])
|
||||||
|
|
||||||
|
periods = bundle.get_calendar_periods_range(
|
||||||
|
start, end, freq
|
||||||
|
)
|
||||||
|
|
||||||
|
dx = get_df_from_arrays(arrays, periods)
|
||||||
|
|
||||||
|
assert_equals(df.equals(df), True)
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_bcolz_bitfinex_daily_write_read(self):
|
||||||
|
self.bcolz_exchange_daily_write_read('bitfinex')
|
||||||
|
|
||||||
|
def test_bcolz_poloniex_daily_write_read(self):
|
||||||
|
self.bcolz_exchange_daily_write_read('poloniex')
|
||||||
@@ -8,7 +8,7 @@ from catalyst.finance.execution import (LimitOrder)
|
|||||||
log = Logger('test_bitfinex')
|
log = Logger('test_bitfinex')
|
||||||
|
|
||||||
|
|
||||||
class BitfinexTestCase(BaseExchangeTestCase):
|
class TestBitfinexTestCase(BaseExchangeTestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setup(self):
|
def setup(self):
|
||||||
log.info('creating bitfinex object')
|
log.info('creating bitfinex object')
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import pandas as pd
|
||||||
from catalyst.exchange.bittrex.bittrex import Bittrex
|
from catalyst.exchange.bittrex.bittrex import Bittrex
|
||||||
from catalyst.finance.order import Order
|
from catalyst.finance.order import Order
|
||||||
from base import BaseExchangeTestCase
|
from base import BaseExchangeTestCase
|
||||||
@@ -7,15 +8,15 @@ from catalyst.exchange.exchange_utils import get_exchange_auth
|
|||||||
log = Logger('test_bittrex')
|
log = Logger('test_bittrex')
|
||||||
|
|
||||||
|
|
||||||
class BittrexTestCase(BaseExchangeTestCase):
|
class TestBittrex(BaseExchangeTestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setup(self):
|
def setup(self):
|
||||||
print ('creating bittrex object')
|
|
||||||
auth = get_exchange_auth('bittrex')
|
auth = get_exchange_auth('bittrex')
|
||||||
self.exchange = Bittrex(
|
self.exchange = Bittrex(
|
||||||
key=auth['key'],
|
key=auth['key'],
|
||||||
secret=auth['secret'],
|
secret=auth['secret'],
|
||||||
base_currency='btc'
|
base_currency=None,
|
||||||
|
portfolio=None
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_order(self):
|
def test_order(self):
|
||||||
@@ -52,15 +53,18 @@ class BittrexTestCase(BaseExchangeTestCase):
|
|||||||
log.info('retrieving candles')
|
log.info('retrieving candles')
|
||||||
ohlcv_neo = self.exchange.get_candles(
|
ohlcv_neo = self.exchange.get_candles(
|
||||||
data_frequency='5m',
|
data_frequency='5m',
|
||||||
assets=self.exchange.get_asset('neo_btc')
|
assets=self.exchange.get_asset('neo_btc'),
|
||||||
|
bar_count=20,
|
||||||
|
end_dt=pd.to_datetime('2017-10-20', utc=True)
|
||||||
)
|
)
|
||||||
ohlcv_neo_ubq = self.exchange.get_candles(
|
ohlcv_neo_ubq = self.exchange.get_candles(
|
||||||
data_frequency='5m',
|
data_frequency='1d',
|
||||||
assets=[
|
assets=[
|
||||||
self.exchange.get_asset('neo_btc'),
|
self.exchange.get_asset('neo_btc'),
|
||||||
self.exchange.get_asset('ubq_btc')
|
self.exchange.get_asset('ubq_btc')
|
||||||
],
|
],
|
||||||
bar_count=14
|
bar_count=14,
|
||||||
|
end_dt=pd.to_datetime('2017-10-20', utc=True)
|
||||||
)
|
)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|||||||
+153
-11
@@ -1,22 +1,24 @@
|
|||||||
from logging import Logger
|
import hashlib
|
||||||
|
from logging import getLogger
|
||||||
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
|
|
||||||
from catalyst import get_calendar
|
from catalyst import get_calendar
|
||||||
from catalyst.exchange.bundle_utils import get_bcolz_chunk, get_periods, \
|
from catalyst.exchange.bundle_utils import get_bcolz_chunk, \
|
||||||
get_periods_range
|
get_periods_range, get_start_dt
|
||||||
from catalyst.exchange.exchange_bcolz import BcolzExchangeBarReader, \
|
from catalyst.exchange.exchange_bcolz import BcolzExchangeBarReader, \
|
||||||
BcolzExchangeBarWriter
|
BcolzExchangeBarWriter
|
||||||
from catalyst.exchange.exchange_bundle import ExchangeBundle, \
|
from catalyst.exchange.exchange_bundle import ExchangeBundle, \
|
||||||
BUNDLE_NAME_TEMPLATE
|
BUNDLE_NAME_TEMPLATE
|
||||||
from catalyst.exchange.exchange_utils import get_exchange_folder
|
from catalyst.exchange.exchange_utils import get_exchange_folder
|
||||||
from catalyst.exchange.init_utils import get_exchange
|
from catalyst.exchange.init_utils import get_exchange
|
||||||
|
from catalyst.exchange.stats_utils import df_to_string
|
||||||
from catalyst.utils.paths import ensure_directory
|
from catalyst.utils.paths import ensure_directory
|
||||||
|
|
||||||
log = Logger('test_exchange_bundle')
|
log = getLogger('test_exchange_bundle')
|
||||||
|
|
||||||
|
|
||||||
class ExchangeBundleTestCase:
|
class TestExchangeBundle:
|
||||||
def test_spot_value(self):
|
def test_spot_value(self):
|
||||||
data_frequency = 'daily'
|
data_frequency = 'daily'
|
||||||
exchange_name = 'poloniex'
|
exchange_name = 'poloniex'
|
||||||
@@ -43,11 +45,11 @@ class ExchangeBundleTestCase:
|
|||||||
exchange = get_exchange(exchange_name)
|
exchange = get_exchange(exchange_name)
|
||||||
exchange_bundle = ExchangeBundle(exchange)
|
exchange_bundle = ExchangeBundle(exchange)
|
||||||
assets = [
|
assets = [
|
||||||
exchange.get_asset('neo_eth')
|
exchange.get_asset('iot_btc')
|
||||||
]
|
]
|
||||||
|
|
||||||
# start = pd.to_datetime('2017-09-01', utc=True)
|
# start = pd.to_datetime('2017-09-01', utc=True)
|
||||||
start = pd.to_datetime('2017-9-15', utc=True)
|
start = pd.to_datetime('2017-9-01', utc=True)
|
||||||
end = pd.to_datetime('2017-9-30', utc=True)
|
end = pd.to_datetime('2017-9-30', utc=True)
|
||||||
|
|
||||||
log.info('ingesting exchange bundle {}'.format(exchange_name))
|
log.info('ingesting exchange bundle {}'.format(exchange_name))
|
||||||
@@ -93,16 +95,39 @@ class ExchangeBundleTestCase:
|
|||||||
)
|
)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def test_ingest_exchange(self):
|
||||||
|
# exchange_name = 'bitfinex'
|
||||||
|
# data_frequency = 'daily'
|
||||||
|
# include_symbols = 'neo_btc,bch_btc,eth_btc'
|
||||||
|
|
||||||
|
exchange_name = 'bitfinex'
|
||||||
|
data_frequency = 'minute'
|
||||||
|
|
||||||
|
exchange = get_exchange(exchange_name)
|
||||||
|
exchange_bundle = ExchangeBundle(exchange)
|
||||||
|
|
||||||
|
log.info('ingesting exchange bundle {}'.format(exchange_name))
|
||||||
|
exchange_bundle.ingest(
|
||||||
|
data_frequency=data_frequency,
|
||||||
|
include_symbols=None,
|
||||||
|
exclude_symbols=None,
|
||||||
|
start=None,
|
||||||
|
end=None,
|
||||||
|
show_progress=True
|
||||||
|
)
|
||||||
|
|
||||||
|
pass
|
||||||
|
|
||||||
def test_ingest_daily(self):
|
def test_ingest_daily(self):
|
||||||
# exchange_name = 'bitfinex'
|
# exchange_name = 'bitfinex'
|
||||||
# data_frequency = 'daily'
|
# data_frequency = 'daily'
|
||||||
# include_symbols = 'neo_btc,bch_btc,eth_btc'
|
# include_symbols = 'neo_btc,bch_btc,eth_btc'
|
||||||
|
|
||||||
exchange_name = 'poloniex'
|
exchange_name = 'bittrex'
|
||||||
data_frequency = 'daily'
|
data_frequency = 'daily'
|
||||||
include_symbols = 'btc_usdt'
|
include_symbols = 'wings_eth'
|
||||||
|
|
||||||
start = pd.to_datetime('2016-1-1', utc=True)
|
start = pd.to_datetime('2017-1-1', utc=True)
|
||||||
end = pd.to_datetime('2017-10-16', utc=True)
|
end = pd.to_datetime('2017-10-16', utc=True)
|
||||||
periods = get_periods_range(start, end, data_frequency)
|
periods = get_periods_range(start, end, data_frequency)
|
||||||
|
|
||||||
@@ -274,7 +299,7 @@ class ExchangeBundleTestCase:
|
|||||||
data_frequency = 'minute'
|
data_frequency = 'minute'
|
||||||
|
|
||||||
exchange = get_exchange(exchange_name)
|
exchange = get_exchange(exchange_name)
|
||||||
asset = exchange.get_asset('neo_btc')
|
asset = exchange.get_asset('neos_btc')
|
||||||
|
|
||||||
path = get_bcolz_chunk(
|
path = get_bcolz_chunk(
|
||||||
exchange_name=exchange_name,
|
exchange_name=exchange_name,
|
||||||
@@ -284,3 +309,120 @@ class ExchangeBundleTestCase:
|
|||||||
)
|
)
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def test_hash_symbol(self):
|
||||||
|
symbol = 'etc_btc'
|
||||||
|
sid = int(
|
||||||
|
hashlib.sha256(symbol.encode('utf-8')).hexdigest(), 16
|
||||||
|
) % 10 ** 6
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_validate_data(self):
|
||||||
|
exchange_name = 'bitfinex'
|
||||||
|
data_frequency = 'minute'
|
||||||
|
|
||||||
|
exchange = get_exchange(exchange_name)
|
||||||
|
exchange_bundle = ExchangeBundle(exchange)
|
||||||
|
assets = [exchange.get_asset('iot_btc')]
|
||||||
|
|
||||||
|
end_dt = pd.to_datetime('2017-9-2 1:00', utc=True)
|
||||||
|
bar_count = 60
|
||||||
|
|
||||||
|
bundle_series = exchange_bundle.get_history_window_series(
|
||||||
|
assets=assets,
|
||||||
|
end_dt=end_dt,
|
||||||
|
bar_count=bar_count * 5,
|
||||||
|
field='close',
|
||||||
|
data_frequency='minute',
|
||||||
|
)
|
||||||
|
candles = exchange.get_candles(
|
||||||
|
assets=assets,
|
||||||
|
end_dt=end_dt,
|
||||||
|
bar_count=bar_count,
|
||||||
|
data_frequency='minute'
|
||||||
|
)
|
||||||
|
start_dt = get_start_dt(end_dt, bar_count, data_frequency)
|
||||||
|
|
||||||
|
frames = []
|
||||||
|
for asset in assets:
|
||||||
|
bundle_df = pd.DataFrame(
|
||||||
|
data=dict(bundle_price=bundle_series[asset]),
|
||||||
|
index=bundle_series[asset].index
|
||||||
|
)
|
||||||
|
exchange_series = exchange.get_series_from_candles(
|
||||||
|
candles=candles[asset],
|
||||||
|
start_dt=start_dt,
|
||||||
|
end_dt=end_dt,
|
||||||
|
data_frequency=data_frequency,
|
||||||
|
field='close'
|
||||||
|
)
|
||||||
|
exchange_df = pd.DataFrame(
|
||||||
|
data=dict(exchange_price=exchange_series),
|
||||||
|
index=exchange_series.index
|
||||||
|
)
|
||||||
|
|
||||||
|
df = exchange_df.join(bundle_df, how='left')
|
||||||
|
df['last_traded'] = df.index
|
||||||
|
df['asset'] = asset.symbol
|
||||||
|
df.set_index(['asset', 'last_traded'], inplace=True)
|
||||||
|
|
||||||
|
frames.append(df)
|
||||||
|
|
||||||
|
df = pd.concat(frames)
|
||||||
|
print('\n' + df_to_string(df))
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_ingest_candles(self):
|
||||||
|
exchange_name = 'bitfinex'
|
||||||
|
data_frequency = 'minute'
|
||||||
|
|
||||||
|
exchange = get_exchange(exchange_name)
|
||||||
|
bundle = ExchangeBundle(exchange)
|
||||||
|
assets = [exchange.get_asset('iot_btc')]
|
||||||
|
|
||||||
|
end_dt = pd.to_datetime('2017-10-20', utc=True)
|
||||||
|
bar_count = 100
|
||||||
|
|
||||||
|
start_dt = get_start_dt(end_dt, bar_count, data_frequency)
|
||||||
|
candles = exchange.get_candles(
|
||||||
|
assets=assets,
|
||||||
|
start_dt=start_dt,
|
||||||
|
end_dt=end_dt,
|
||||||
|
bar_count=bar_count,
|
||||||
|
data_frequency=data_frequency
|
||||||
|
)
|
||||||
|
|
||||||
|
writer = bundle.get_writer(start_dt, end_dt, data_frequency)
|
||||||
|
for asset in assets:
|
||||||
|
dates = [candle['last_traded'] for candle in candles[asset]]
|
||||||
|
|
||||||
|
values = dict()
|
||||||
|
for field in ['open', 'high', 'low', 'close', 'volume']:
|
||||||
|
values[field] = [candle[field] for candle in candles[asset]]
|
||||||
|
|
||||||
|
periods = bundle.get_calendar_periods_range(
|
||||||
|
start_dt, end_dt, data_frequency
|
||||||
|
)
|
||||||
|
df = pd.DataFrame(values, index=dates)
|
||||||
|
df = df.loc[periods].fillna(method='ffill')
|
||||||
|
|
||||||
|
# TODO: why do I get an extra bar?
|
||||||
|
bundle.ingest_df(
|
||||||
|
ohlcv_df=df,
|
||||||
|
data_frequency=data_frequency,
|
||||||
|
asset=asset,
|
||||||
|
writer=writer,
|
||||||
|
empty_rows_behavior='raise'
|
||||||
|
)
|
||||||
|
|
||||||
|
bundle_series = bundle.get_history_window_series(
|
||||||
|
assets=assets,
|
||||||
|
end_dt=end_dt,
|
||||||
|
bar_count=bar_count,
|
||||||
|
field='close',
|
||||||
|
data_frequency=data_frequency,
|
||||||
|
reset_reader=True
|
||||||
|
)
|
||||||
|
df = pd.DataFrame(bundle_series)
|
||||||
|
print('\n' + df_to_string(df))
|
||||||
|
pass
|
||||||
|
|||||||
@@ -1,50 +0,0 @@
|
|||||||
from unittest import TestCase
|
|
||||||
from logbook import Logger
|
|
||||||
from mock import patch, sentinel
|
|
||||||
from catalyst.exchange.simple_clock import SimpleClock
|
|
||||||
from catalyst.utils.calendars.trading_calendar import days_at_time
|
|
||||||
from datetime import time
|
|
||||||
from collections import defaultdict
|
|
||||||
from catalyst.utils.calendars import get_calendar
|
|
||||||
import pandas as pd
|
|
||||||
|
|
||||||
log = Logger('ExchangeClockTestCase')
|
|
||||||
|
|
||||||
|
|
||||||
class ExchangeClockTestCase(TestCase):
|
|
||||||
@classmethod
|
|
||||||
def setUpClass(cls):
|
|
||||||
cls.open_calendar = get_calendar("OPEN")
|
|
||||||
|
|
||||||
cls.sessions = pd.Timestamp.utcnow()
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self.internal_clock = None
|
|
||||||
self.events = defaultdict(list)
|
|
||||||
|
|
||||||
def advance_clock(self, x):
|
|
||||||
"""Mock function for sleep. Advances the internal clock by 1 min"""
|
|
||||||
# The internal clock advance time must be 1 minute to match
|
|
||||||
# MinutesSimulationClock's update frequency
|
|
||||||
self.internal_clock += pd.Timedelta('1 min')
|
|
||||||
|
|
||||||
def get_clock(self, arg, *args, **kwargs):
|
|
||||||
"""Mock function for pandas.to_datetime which is used to query the
|
|
||||||
current time in RealtimeClock"""
|
|
||||||
assert arg == "now"
|
|
||||||
return self.internal_clock
|
|
||||||
|
|
||||||
def test_clock(self):
|
|
||||||
with patch('catalyst.exchange.simple_clock.pd.to_datetime') as to_dt, \
|
|
||||||
patch('catalyst.exchange.simple_clock.sleep') as sleep:
|
|
||||||
clock = SimpleClock(sessions=self.sessions)
|
|
||||||
to_dt.side_effect = self.get_clock
|
|
||||||
sleep.side_effect = self.advance_clock
|
|
||||||
start_time = pd.Timestamp.utcnow()
|
|
||||||
self.internal_clock = start_time
|
|
||||||
|
|
||||||
events = list(clock)
|
|
||||||
|
|
||||||
# Event 0 is SESSION_START which always happens at 00:00.
|
|
||||||
ts, event_type = events[1]
|
|
||||||
pass
|
|
||||||
@@ -12,7 +12,7 @@ from catalyst.exchange.exchange_utils import get_exchange_auth
|
|||||||
log = Logger('test_bitfinex')
|
log = Logger('test_bitfinex')
|
||||||
|
|
||||||
|
|
||||||
class ExchangeDataPortalTestCase:
|
class TestExchangeDataPortalTestCase:
|
||||||
@classmethod
|
@classmethod
|
||||||
def setup(self):
|
def setup(self):
|
||||||
log.info('creating bitfinex exchange')
|
log.info('creating bitfinex exchange')
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ from catalyst.exchange.exchange_utils import get_exchange_auth
|
|||||||
log = Logger('test_poloniex')
|
log = Logger('test_poloniex')
|
||||||
|
|
||||||
|
|
||||||
class PoloniexTestCase(BaseExchangeTestCase):
|
class TestPoloniexTestCase(BaseExchangeTestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setup(self):
|
def setup(self):
|
||||||
print ('creating poloniex object')
|
print ('creating poloniex object')
|
||||||
@@ -21,7 +21,7 @@ class PoloniexTestCase(BaseExchangeTestCase):
|
|||||||
|
|
||||||
def test_order(self):
|
def test_order(self):
|
||||||
log.info('creating order')
|
log.info('creating order')
|
||||||
asset = self.exchange.get_asset('neo_btc')
|
asset = self.exchange.get_asset('neos_btc')
|
||||||
order_id = self.exchange.order(
|
order_id = self.exchange.order(
|
||||||
asset=asset,
|
asset=asset,
|
||||||
limit_price=0.0005,
|
limit_price=0.0005,
|
||||||
@@ -33,7 +33,7 @@ class PoloniexTestCase(BaseExchangeTestCase):
|
|||||||
|
|
||||||
def test_open_orders(self):
|
def test_open_orders(self):
|
||||||
log.info('retrieving open orders')
|
log.info('retrieving open orders')
|
||||||
asset = self.exchange.get_asset('neo_btc')
|
asset = self.exchange.get_asset('neos_btc')
|
||||||
orders = self.exchange.get_open_orders(asset)
|
orders = self.exchange.get_open_orders(asset)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ class PoloniexTestCase(BaseExchangeTestCase):
|
|||||||
log.info('retrieving candles')
|
log.info('retrieving candles')
|
||||||
ohlcv_neo = self.exchange.get_candles(
|
ohlcv_neo = self.exchange.get_candles(
|
||||||
data_frequency='5m',
|
data_frequency='5m',
|
||||||
assets=self.exchange.get_asset('neo_btc')
|
assets=self.exchange.get_asset('neos_btc')
|
||||||
)
|
)
|
||||||
ohlcv_neo_ubq = self.exchange.get_candles(
|
ohlcv_neo_ubq = self.exchange.get_candles(
|
||||||
data_frequency='5m',
|
data_frequency='5m',
|
||||||
assets=[
|
assets=[
|
||||||
self.exchange.get_asset('neo_btc'),
|
self.exchange.get_asset('neos_btc'),
|
||||||
self.exchange.get_asset('ubq_btc')
|
self.exchange.get_asset('via_btc')
|
||||||
],
|
],
|
||||||
bar_count=14
|
bar_count=14
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user