Created
March 11, 2018 16:11
-
-
Save FiV0/6ea2b37e39364943f0f095cab16da4f4 to your computer and use it in GitHub Desktop.
Backtrader with ccxt two datafeeds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/usr/bin/env python | |
# -*- coding: utf-8; py-indent-offset:4 -*- | |
from __future__ import (absolute_import, division, print_function, | |
unicode_literals) | |
import sys | |
import time | |
from datetime import datetime, timedelta | |
import backtrader as bt | |
import ccxt | |
#pylint: disable=E1101,E1123 | |
class TestStrategy(bt.Strategy): | |
def start(self): | |
self.counter = 0 | |
print('START') | |
def prenext(self): | |
self.counter += 1 | |
print('prenext len %d - counter %d' % (len(self), self.counter)) | |
def __init__(self): | |
pass | |
def next(self): | |
print('------ next len %d - counter %d' % (len(self), self.counter)) | |
self.counter += 1 | |
print('*' * 5, 'NEXT data0:', bt.num2date(self.data0.datetime[0]), | |
self.data0._name, self.data0.open[0], self.data0.high[0], | |
self.data0.low[0], self.data0.close[0], self.data0.volume[0], | |
bt.TimeFrame.getname(self.data0._timeframe), len(self.data0)) | |
print('*' * 5, 'NEXT data1:', bt.num2date(self.data1.datetime[0]), | |
self.data1._name, self.data1.open[0], self.data1.high[0], | |
self.data1.low[0], self.data1.close[0], self.data1.volume[0], | |
bt.TimeFrame.getname(self.data1._timeframe), len(self.data1)) | |
if __name__ == '__main__': | |
cerebro = bt.Cerebro() | |
exchange = sys.argv[1] if len(sys.argv) > 1 else 'binance' | |
symbol = sys.argv[2] if len(sys.argv) > 2 else 'BTC/USDT' | |
hist_start_date = datetime.utcnow() - timedelta(minutes=10) | |
data = bt.feeds.CCXT(exchange=exchange, | |
symbol=symbol, | |
timeframe=bt.TimeFrame.Minutes, | |
fromdate=hist_start_date, | |
ohlcv_limit=444) | |
cerebro.adddata(data) | |
data1 = bt.feeds.CCXT(exchange=exchange, | |
symbol=symbol, | |
timeframe=bt.TimeFrame.Minutes, | |
compression=5, | |
fromdate=hist_start_date, | |
ohlcv_limit=444) | |
cerebro.adddata(data1) | |
cerebro.addstrategy(TestStrategy) | |
cerebro.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment