Here is the github link
This framework allows anyone who can code a bit to build and test a strategy then run a trading robot. It even emails you every time a trade is made.
Right now there is out-of-the-box support for Binance if anyone here is interested in crypto, but I built this to be extensible: implement 2 interfaces to integrate with another exchange or broker to trade stocks, forex or whatever instrument you want to trade. This is code you'd have to write regardless – e.g. to receive ticks or candles, submit a buy order, or update your trading account balance.
I added some indicators to this framework, among them a few that I could not find anywhere in existing open source libraries (namely ConnorsRSI and Instantaneous trendline).
There is a DirectionIndicator that I created myself which uses linear regression to predict what the next value in a sequence will be, so you can try to predict if a crossover will happen soon and act before most of the movement happens, or simply identify if a line is moving up or down.
The readme shows a few examples and I hope you guys find it useful.
Feel free to contribute if you can: suggestions, bugs or code are welcome. I plan to add way more indicators there over time.
Cheers!
This framework allows anyone who can code a bit to build and test a strategy then run a trading robot. It even emails you every time a trade is made.
Right now there is out-of-the-box support for Binance if anyone here is interested in crypto, but I built this to be extensible: implement 2 interfaces to integrate with another exchange or broker to trade stocks, forex or whatever instrument you want to trade. This is code you'd have to write regardless – e.g. to receive ticks or candles, submit a buy order, or update your trading account balance.
I added some indicators to this framework, among them a few that I could not find anywhere in existing open source libraries (namely ConnorsRSI and Instantaneous trendline).
There is a DirectionIndicator that I created myself which uses linear regression to predict what the next value in a sequence will be, so you can try to predict if a crossover will happen soon and act before most of the movement happens, or simply identify if a line is moving up or down.
The readme shows a few examples and I hope you guys find it useful.
Feel free to contribute if you can: suggestions, bugs or code are welcome. I plan to add way more indicators there over time.
Cheers!