Skip to content

Simple Bot to track balances, profit and performance using Python, SQLite, & Flask

Notifications You must be signed in to change notification settings

AtsutaneDotNet/Crypto-Tracker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crypto Tracker 2.0

Simple Bot to track balances, profit and performance using Python, SQLite, & Flask

tracker

Crypto Tracker 2.0 Setup Guide

Install Python:

https://www.python.org/downloads/

Clone or Download Zip File Below:

https://github.com/AtsutaneDotNet/Crypto-Tracker/archive/master.zip

Install Requirements via Windows Command Prompt:

pip install -r requirements.txt

Edit Accounts to match Exchanges & Keys using a text editor

accounts.json

Currently tracking data from :-

  • Binance
  • Bybit
  • Binance Smart Chain

UID will be insert automatically when script process the account list.

[
    {
        "enable": "false",
        "exchange": "binance",
        "key": "",
        "secret": "",
        "uid": ""
    },
    {
        "enable": "false",
        "exchange": "bybit",
        "key": "",
        "secret": "",
        "uid": ""
    }
]

Run tracker.py & Visit http://localhost:8000/ to view UI

open CMD prompt cd C:path/toyour/directory tracker.py

To view from outside source you must edit the tracker.py file to match your public IP & set a custom port using the code below, you then must open the port to outside traffic.

app.run(host="0.0.0.0", port=8000)

Credits

Donate To Crypto Tracker 2.0 Development

  • ETH/USDT/ERC20: 0x4EF84bB3908EE77EA0B1f5BECB185804beC5352d
  • BSC 0xaD687b24852Ae916Cfb740871768E7b214175729

Donate to CryptoGnome - https://github.com/CryptoGnome

  • ETH/USDT/ERC20: 0x647556545e529114B30E708dea09d64652e3c490

About

Simple Bot to track balances, profit and performance using Python, SQLite, & Flask

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 51.6%
  • HTML 43.3%
  • CSS 5.1%