Titan-pro


NameTitan-pro JSON
Version 1.2.1 PyPI version JSON
download
home_pagehttps://github.com/yanjlee/Titan
SummaryTitan is a totally free cryptocurrency automated trading framework for traders of all skill levels. Built on top of the ccxt API library, it works out of the box with any exchange and trading pair. We believe in decentralizing trading strategies and providing everyone access to building advanced crypto portfolios. The future of algorithmic trading is here!.
upload_time2024-06-01 08:36:19
maintainerNone
docs_urlNone
authoryanjlee
requires_pythonNone
licenseNone
keywords
VCS
bugtrack_url
requirements aiodns aiohttp async-timeout Babel cchardet ccxt certifi chardet click cycler dash dash-core-components dash-html-components dash-renderer decorator Flask Flask-Babel Flask-Compress Flask-Table flask-debugtoolbar idna ipython-genutils itsdangerous Jinja2 jsonschema jupyter-core MarkupSafe matplotlib multidict nbformat numpy pandas plotly pycares pyparsing pypubsub python-dateutil pyti pytz requests six SQLAlchemy traitlets urllib3 Werkzeug yarl
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Titan

![Alt Text](https://i.imgur.com/uebAKT4.png)



Titan is a totally free cryptocurrency automated trading framework for traders of all skill levels. Built on top of the ccxt API library, it works out of the box with any exchange and trading pair. We believe in decentralizing trading strategies and providing everyone access to building advanced crypto portfolios. The future of algorithmic trading is here!

The base framework comes with a set of methods that allow you to program trading logic and write data to your own database with ease. A sample strategy based on moving average crossovers is provided out of the box to experiment as well as a full simulation suite where one can trade fake BTC against real market prices. The original objective of the project was to write a cryptocurrency trading bot in a framework that allows for the implementation of various machine learning algorithms to determine trade behavior.

## FAQ

#### Spare me the mumbo-jumbo! What's this all about?
IT PRINTS MONEY

#### But wait, why would you ever release this for free??? hurr-durr profits
Ah yes, I see you've taken a basic microeconomics course before. Truth is, this is mainly a project to encourage people to write their own strategies and have a way to test them out. We want to lower the bar to algorithmic cryptocurrency trading to those who are interested but don't know where to start. 

#### This sounds cool, I want to get involved!
Great, there's tons of cool stuff you can work on. Beginners welcome. Check out our discord [here!](https://discord.gg/4r9Qxuf)

#### What's with the name Titan anyway?
Sounds cool as heck, think about it. "Yeah made 5 BTC using that Titan trading system" - it has a certain ring to it. Plus it makes us feel important, ok?


## Getting Started
![Alt Text](https://media.giphy.com/media/v5Ewl8EnO4KFW/giphy.gif)

*Is this your face right now? Don't worry!*

First thing is make sure you have a recent version of Python on your computer, as well as Git (I recommend GitHub Desktop if you're a new user). You can download Python from the website [here](https://www.python.org/downloads/) and go for the 3.6+ version for your OS. From there, make a new virtual environment as follows:

    python -m venv /path/to/new/virtual/titanenv
    (Mac) $ source titanenv/bin/activate 
    (Windows) C:\> titanenv\Scripts\activate.bat 

Once you're squared away with a squeaky clean new virtual environment you should proceed to install all the dependencies required for the program to run. You should have (titanenv) on the side of your console window now. 
    
    mkdir Titan
    cd Titan
    git clone https://github.com/Denton24646/Titan.git
    python pip install -r requirements.txt 
  
Now you're all set to go - what to do next? Well, Titan is currently a Flask application that runs in your web browser. So the UI that you will interact with will be inside your Chrome or Firefox browser running on your local machine. Make sure you're in the main Titan directory and run the following:

    python titan_app.py
    
You should get an indication that the app is running on port 5555 on your local machine. If you see that message, open up your browser and navigate to http://127.0.0.1:5555 to start using the app!

## Getting Started With Docker

    ./build.sh
    ./run.sh

This should start up the app the same as above, only in a container.

## Using Titan
At first it's recommended to trade only simulation currency and familiarize yourself with the behavior of the program. 
A [detailed wiki](https://github.com/Denton24646/Titan/wiki) explains the core components underlying Titan. 

### Live Trading

*You better know what you're getting yourself into!*

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/yanjlee/Titan",
    "name": "Titan-pro",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "yanjlee",
    "author_email": "yanjlee@163.com",
    "download_url": "https://files.pythonhosted.org/packages/2a/9f/f62aaa374d7de462bf6f193ac9cc74cff3a36d3998922b4dec0eddb15b33/titan_pro-1.2.1.tar.gz",
    "platform": null,
    "description": "# Titan\r\n\r\n![Alt Text](https://i.imgur.com/uebAKT4.png)\r\n\r\n\r\n\r\nTitan is a totally free cryptocurrency automated trading framework for traders of all skill levels. Built on top of the ccxt API library, it works out of the box with any exchange and trading pair. We believe in decentralizing trading strategies and providing everyone access to building advanced crypto portfolios. The future of algorithmic trading is here!\r\n\r\nThe base framework comes with a set of methods that allow you to program trading logic and write data to your own database with ease. A sample strategy based on moving average crossovers is provided out of the box to experiment as well as a full simulation suite where one can trade fake BTC against real market prices. The original objective of the project was to write a cryptocurrency trading bot in a framework that allows for the implementation of various machine learning algorithms to determine trade behavior.\r\n\r\n## FAQ\r\n\r\n#### Spare me the mumbo-jumbo! What's this all about?\r\nIT PRINTS MONEY\r\n\r\n#### But wait, why would you ever release this for free??? hurr-durr profits\r\nAh yes, I see you've taken a basic microeconomics course before. Truth is, this is mainly a project to encourage people to write their own strategies and have a way to test them out. We want to lower the bar to algorithmic cryptocurrency trading to those who are interested but don't know where to start. \r\n\r\n#### This sounds cool, I want to get involved!\r\nGreat, there's tons of cool stuff you can work on. Beginners welcome. Check out our discord [here!](https://discord.gg/4r9Qxuf)\r\n\r\n#### What's with the name Titan anyway?\r\nSounds cool as heck, think about it. \"Yeah made 5 BTC using that Titan trading system\" - it has a certain ring to it. Plus it makes us feel important, ok?\r\n\r\n\r\n## Getting Started\r\n![Alt Text](https://media.giphy.com/media/v5Ewl8EnO4KFW/giphy.gif)\r\n\r\n*Is this your face right now? Don't worry!*\r\n\r\nFirst thing is make sure you have a recent version of Python on your computer, as well as Git (I recommend GitHub Desktop if you're a new user). You can download Python from the website [here](https://www.python.org/downloads/) and go for the 3.6+ version for your OS. From there, make a new virtual environment as follows:\r\n\r\n    python -m venv /path/to/new/virtual/titanenv\r\n    (Mac) $ source titanenv/bin/activate \r\n    (Windows) C:\\> titanenv\\Scripts\\activate.bat \r\n\r\nOnce you're squared away with a squeaky clean new virtual environment you should proceed to install all the dependencies required for the program to run. You should have (titanenv) on the side of your console window now. \r\n    \r\n    mkdir Titan\r\n    cd Titan\r\n    git clone https://github.com/Denton24646/Titan.git\r\n    python pip install -r requirements.txt \r\n  \r\nNow you're all set to go - what to do next? Well, Titan is currently a Flask application that runs in your web browser. So the UI that you will interact with will be inside your Chrome or Firefox browser running on your local machine. Make sure you're in the main Titan directory and run the following:\r\n\r\n    python titan_app.py\r\n    \r\nYou should get an indication that the app is running on port 5555 on your local machine. If you see that message, open up your browser and navigate to http://127.0.0.1:5555 to start using the app!\r\n\r\n## Getting Started With Docker\r\n\r\n    ./build.sh\r\n    ./run.sh\r\n\r\nThis should start up the app the same as above, only in a container.\r\n\r\n## Using Titan\r\nAt first it's recommended to trade only simulation currency and familiarize yourself with the behavior of the program. \r\nA [detailed wiki](https://github.com/Denton24646/Titan/wiki) explains the core components underlying Titan. \r\n\r\n### Live Trading\r\n\r\n*You better know what you're getting yourself into!*\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Titan is a totally free cryptocurrency automated trading framework for traders of all skill levels. Built on top of the ccxt API library, it works out of the box with any exchange and trading pair. We believe in decentralizing trading strategies and providing everyone access to building advanced crypto portfolios. The future of algorithmic trading is here!.",
    "version": "1.2.1",
    "project_urls": {
        "Homepage": "https://github.com/yanjlee/Titan"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b27f085cde51af23aab5eca3926e538995e9355901c5febc31dae099b9cdb42e",
                "md5": "91d8caf64b654e725cb0e62b77ad4230",
                "sha256": "78cae2fa24b3a210f64c0437348c1f06ab86fdfd5735d874bbf83eaa9740e721"
            },
            "downloads": -1,
            "filename": "Titan_pro-1.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "91d8caf64b654e725cb0e62b77ad4230",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 30711,
            "upload_time": "2024-06-01T08:36:17",
            "upload_time_iso_8601": "2024-06-01T08:36:17.291097Z",
            "url": "https://files.pythonhosted.org/packages/b2/7f/085cde51af23aab5eca3926e538995e9355901c5febc31dae099b9cdb42e/Titan_pro-1.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a9ff62aaa374d7de462bf6f193ac9cc74cff3a36d3998922b4dec0eddb15b33",
                "md5": "3dc9b79144e4e3461ad8a21048dc8a1a",
                "sha256": "e2302c48cb61f444bde39718936059571043bc80760ab924c93e0e71e3d9b16c"
            },
            "downloads": -1,
            "filename": "titan_pro-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "3dc9b79144e4e3461ad8a21048dc8a1a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 26371,
            "upload_time": "2024-06-01T08:36:19",
            "upload_time_iso_8601": "2024-06-01T08:36:19.918658Z",
            "url": "https://files.pythonhosted.org/packages/2a/9f/f62aaa374d7de462bf6f193ac9cc74cff3a36d3998922b4dec0eddb15b33/titan_pro-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-01 08:36:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yanjlee",
    "github_project": "Titan",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "aiodns",
            "specs": [
                [
                    "==",
                    "1.1.1"
                ]
            ]
        },
        {
            "name": "aiohttp",
            "specs": [
                [
                    "==",
                    "2.3.9"
                ]
            ]
        },
        {
            "name": "async-timeout",
            "specs": [
                [
                    "==",
                    "2.0.0"
                ]
            ]
        },
        {
            "name": "Babel",
            "specs": [
                [
                    "==",
                    "2.5.3"
                ]
            ]
        },
        {
            "name": "cchardet",
            "specs": [
                [
                    "==",
                    "2.1.1"
                ]
            ]
        },
        {
            "name": "ccxt",
            "specs": [
                [
                    "==",
                    "1.10.815"
                ]
            ]
        },
        {
            "name": "certifi",
            "specs": [
                [
                    "==",
                    "2018.1.18"
                ]
            ]
        },
        {
            "name": "chardet",
            "specs": [
                [
                    "==",
                    "3.0.4"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    "==",
                    "6.7"
                ]
            ]
        },
        {
            "name": "cycler",
            "specs": [
                [
                    "==",
                    "0.10.0"
                ]
            ]
        },
        {
            "name": "dash",
            "specs": [
                [
                    "==",
                    "0.20.0"
                ]
            ]
        },
        {
            "name": "dash-core-components",
            "specs": [
                [
                    "==",
                    "0.18.0"
                ]
            ]
        },
        {
            "name": "dash-html-components",
            "specs": [
                [
                    "==",
                    "0.8.0"
                ]
            ]
        },
        {
            "name": "dash-renderer",
            "specs": [
                [
                    "==",
                    "0.11.2"
                ]
            ]
        },
        {
            "name": "decorator",
            "specs": [
                [
                    "==",
                    "4.2.1"
                ]
            ]
        },
        {
            "name": "Flask",
            "specs": [
                [
                    "==",
                    "0.12.2"
                ]
            ]
        },
        {
            "name": "Flask-Babel",
            "specs": [
                [
                    "==",
                    "0.11.2"
                ]
            ]
        },
        {
            "name": "Flask-Compress",
            "specs": [
                [
                    "==",
                    "1.4.0"
                ]
            ]
        },
        {
            "name": "Flask-Table",
            "specs": [
                [
                    "==",
                    "0.5.0"
                ]
            ]
        },
        {
            "name": "flask-debugtoolbar",
            "specs": [
                [
                    "==",
                    "0.10.1"
                ]
            ]
        },
        {
            "name": "idna",
            "specs": [
                [
                    "==",
                    "2.6"
                ]
            ]
        },
        {
            "name": "ipython-genutils",
            "specs": [
                [
                    "==",
                    "0.2.0"
                ]
            ]
        },
        {
            "name": "itsdangerous",
            "specs": [
                [
                    "==",
                    "0.24"
                ]
            ]
        },
        {
            "name": "Jinja2",
            "specs": [
                [
                    "==",
                    "2.10"
                ]
            ]
        },
        {
            "name": "jsonschema",
            "specs": [
                [
                    "==",
                    "2.6.0"
                ]
            ]
        },
        {
            "name": "jupyter-core",
            "specs": [
                [
                    "==",
                    "4.4.0"
                ]
            ]
        },
        {
            "name": "MarkupSafe",
            "specs": [
                [
                    "==",
                    "1.0"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    "==",
                    "2.1.2"
                ]
            ]
        },
        {
            "name": "multidict",
            "specs": [
                [
                    "==",
                    "4.0.0"
                ]
            ]
        },
        {
            "name": "nbformat",
            "specs": [
                [
                    "==",
                    "4.4.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    "==",
                    "1.14.0"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    "==",
                    "0.22.0"
                ]
            ]
        },
        {
            "name": "plotly",
            "specs": [
                [
                    "==",
                    "2.2.3"
                ]
            ]
        },
        {
            "name": "pycares",
            "specs": [
                [
                    "==",
                    "2.3.0"
                ]
            ]
        },
        {
            "name": "pyparsing",
            "specs": [
                [
                    "==",
                    "2.2.0"
                ]
            ]
        },
        {
            "name": "pypubsub",
            "specs": [
                [
                    "==",
                    "4.0.0"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    "==",
                    "2.6.1"
                ]
            ]
        },
        {
            "name": "pyti",
            "specs": [
                [
                    "==",
                    "0.2.1"
                ]
            ]
        },
        {
            "name": "pytz",
            "specs": [
                [
                    "==",
                    "2017.3"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "==",
                    "2.18.4"
                ]
            ]
        },
        {
            "name": "six",
            "specs": [
                [
                    "==",
                    "1.11.0"
                ]
            ]
        },
        {
            "name": "SQLAlchemy",
            "specs": [
                [
                    "==",
                    "1.2.1"
                ]
            ]
        },
        {
            "name": "traitlets",
            "specs": [
                [
                    "==",
                    "4.3.2"
                ]
            ]
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    "==",
                    "1.22"
                ]
            ]
        },
        {
            "name": "Werkzeug",
            "specs": [
                [
                    "==",
                    "0.14.1"
                ]
            ]
        },
        {
            "name": "yarl",
            "specs": [
                [
                    "==",
                    "1.1.0"
                ]
            ]
        }
    ],
    "lcname": "titan-pro"
}
        
Elapsed time: 0.28449s