This bot, which can be managed via Telegram, creates Buy/Sell signals using indicators such as RSI, StochRSI, EMA, MA and can make buying and selling decisions based on these signals; can do backtesting; Can analyze coins. It is not investment advice. It has risks and losses.
This project was created and developed by Beydah Saglam. He still continues to develop this project. Solutions for which you can sponsor the developer will be introduced soon.
- To provide support to the developer, you can follow it at github/beydah.
- You can star the project to support the project.
Version 1.0.5 - Date 17.05.2024
Main Title: Update to Indicator Signals and Settings
- I created a setting range that I believe will provide more profit in indicator signals.
- I adjusted the signals so that it can capture every signal, not just the first signal.
"""
def DCA_SIGNAL(Old_Prices, Prices, Old_SMA25, SMA25):
if Old_Prices < Old_SMA25 and Prices > SMA25: return 1
if Old_Prices > Old_SMA25 and Prices < SMA25: return -1
return 0
"""
def DCA_SIGNAL(Prices, SMA25):
if Prices > SMA25: return 1
elif Prices < SMA25: return -1
return 0