1
0
mirror of https://github.com/Rikj000/MoniGoMani.git synced 2022-03-06 00:08:05 +03:00
Files
MoniGoMani-freqtrade-trading/Documentation/Docs-VeryQuickStart.md

5.3 KiB

Join MoniGoMani on Matrix Join CryptoStonksShallRise on Discord Total Releases Downloaded from GitHub Latest Official Release on GitHub GNU General Public License The current place where you can find all MoniGoMani Documentation! Freqtrade - The open source crypto day-trading bot ICONOMI - The world’s largest crypto strategy provider Buy me a Coffee as a way to sponsor this project!

⚠️ Disclaimer

  • This Framework & Strategy are still experimental and under heavy development. It is not recommended running it live at this moment.
  • Always make sure to understand & test your MoniGoMani configuration until you trust it, before even thinking about going live!
  • I am in no way responsible for your live results! You are always responsible for your own MoniGoMani configuration!
  • MoniGoMani should always be re-optimized after doing manual changes!
  • You need to optimized your own copy of MoniGoMani while thinking logically, don't follow your computer blindly!

TIP: Native installation is recommended since MoniGoMani sometimes requires a specific Freqtrade commit. It's also faster/better than a Docker Container, but Docker is easier to install

Requirements

Make sure that you have all of the following available on your system before proceeding:

  • Python 3.8+ is required
  • Pip (Package manager to install & manage Python packages)
  • Git (Software version management)
  • Jq (Command-line .json processor)
  • Curl (Command line data transferring through URLs)
  • Docker (If you really can't go for a source installation)
  • VSCodium (Optional - A light weight open-source IDE that comes pre-installed with good color codes to make it easier to read .json and .log files & many more great features)

Very Quick Start:

Need a more detailed guide? Checkout the Official Freqtrade Installation Guide!

  1. Install the required Python packages (Command may vary a bit depending on your systems version of python & pip)
    pip3 install -r https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/requirements-mgm.txt
    
  2. Download mgm-hurry in the folder where you want to install MoniGoMani and/or Freqtrade
    curl "https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/mgm-hurry" --output "mgm-hurry"
    
  3. Install & setup MoniGoMani and/or Freqtrade
    python3 mgm-hurry up
    

That's it you successfully installed MoniGoMani and/or Freqtrade! You can now start using MoniGoMani for HyperOpting/BackTesting/Dry/Live-running! Congratulations 🎉 This is only the beginning though, now please read the Docs-MoniGoMani.md & Docs-MGM-Hurry.md to learn how to use it properly!

Pro tip

Add an alias in the config file of your shell (eg. ~/.zshrc) so you can use MGM-Hurry as mgm-hurry without the need of pre-fixing Python in your commands anymore! 😄 Following is a non-sticking example line, this needs to be added to your shell config:

alias mgm-hurry="python3 /path/to/MoniGoMani/mgm-hurry"