Trading bot for Binance exchange using EMA cross strategy on 1D, 4h, and 1h timeframes. Analyzes 4yrs of coin prices to select profitable EMA cross. Auto-identifies accumulation and bullish phases. Has web dashboard and Telegram alerts.
MIT License
45
stars
14
forks
source link
Coinpair csv files ema cross with best performance #2
Add a csv file with best performance ema cross for each coin pair. Every time the bot runs it will apply the selected EMA's.
coinpair,timeframe,fastema,slowema
BTCUSDT,1h,16,42
This file can be updated manually but can also be updated automatically. How? Using backtesting python library. If we could run backtesting for the coin pair for the past x period (example days) and get the best performance ema cross, that could be uploaded to the above csv file and would be applied on the next bot run.
done.
add your desired coin pair to addcoinpair file and then run addCoinPair.py file. The results are saved on the coinpairBestEma file and also coin pair is added to positions file.
Add a csv file with best performance ema cross for each coin pair. Every time the bot runs it will apply the selected EMA's. coinpair,timeframe,fastema,slowema BTCUSDT,1h,16,42
This file can be updated manually but can also be updated automatically. How? Using backtesting python library. If we could run backtesting for the coin pair for the past x period (example days) and get the best performance ema cross, that could be uploaded to the above csv file and would be applied on the next bot run.