Skip to content

A simple investment bot that can trade on the Binance exchange by generating buying and selling signals with RSI, Stoch RSI, Golden Cross, DCA, EMA indicators and can be contacted via Telegram.

License

Notifications You must be signed in to change notification settings

beydah/Binance-Trading-Bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Binance Trading Bot

Fast Information

Binance Trading Bot

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.

For Support

  • To provide support to the developer, you can follow it at github/beydah.
  • You can star the project to support the project.

News

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

Links of Contents

Usage

Installation

Agreement

About

A simple investment bot that can trade on the Binance exchange by generating buying and selling signals with RSI, Stoch RSI, Golden Cross, DCA, EMA indicators and can be contacted via Telegram.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages