Program that would track a given crypto-currency on your Bittrex Account and place a trailing stop loss.
- The program does not actually place a sell order until the price of crypto-currency has fallen below the percentage threshold.
- Since this is sensitive, the program would place a log file in its home directory and record every step for debugging and validation purposes.
- Outliers detection functions have been added for protection against flash drops and sudden spikes.
The code is open source so you can see all of it and thus verify that it is safe to use
- Put your API key and API Secret in the start.py file.
- Specify the currency, currency pair (what do you want your currency to trade for), and percentage threshold.
- You can also specify how often do you want the program to check the price.
- Run the program.
- Command Line interface to be added to allow user to specify various parameters.
- Add technical indicators for automated trades such as Moving Averages, Oscillators etc.
- GUI to be developed.