With Crypto Lab, you can download the historical data from cryptocurrencies exchanges and test your trading algorithm:
Backtesting is a key component of effective trading system development. It is accomplished by reconstructing, with historical data, trades that would have occurred in the past using rules defined by a given strategy. The result offers statistics to gauge the effectiveness of the strategy.
The underlying theory is that any strategy that worked well in the past is likely to work well in the future, and conversely, any strategy that performed poorly in the past is likely to perform poorly in the future.
Backtesting can provide plenty of valuable statistical feedback about a given system. Some universal backtesting statistics include:
Backtesting is one of the most important aspects of developing a trading system. If created and interpreted properly, it can help traders optimize and improve their strategies, find any technical or theoretical flaws, as well as gain confidence in their strategy before applying it to the real world markets.
Source: investopedia.com
Open Source software is software with source code that anyone can inspect, modify, and enhance. So, our code is Open Source, you can find it on GitHub.
Open Source licenses promote collaboration and sharing. Anyone can contribute and propose modifications to improve the projet. If you want contribute to Crypto Lab, have a look on our program on right side.
Then, why all plans are not free?
To record and stock all trades from exchanges in realtime, we have an important
infrastructure.
We need to generate money to propose and maintain the hosting (power, data volume and efficient
bandwidth).
We have a program to allow everyone to contribute to the Crypto Lab project by two ways:
Some informations aevc the REST API to start easly to backtest your algorithm:
Libraries:
Currently the API services:
Also, we have in OpenSource a Python library to get the best of this API. Get started with the documentation
import cryptolab
# Init lib with api key
cl = cryptolab.CryptoLab('{YOUR_API_KEY}', on_error)
# Init the replayer with the parameters
cl.init_replayer(event, '{EXCHANGE}', '{MARKET}', '{START_DATE}', '{END_DATE}')
# On event - callback
def event(trade):
print(trade)
# add you algorithm here to backtest your strategy
# On event error
def on_error(message):
print(message) # quota reached, data not avaible, plan inactive, etc.