Rikj000 / MoniGoMani

Isn't that what we all want? Our money to go many? Well that's what this framework/strategy hopes to do for you! By giving you & HyperOpt a lot of signals to alter the weights from.
https://monigomani.io
GNU General Public License v3.0
1.01k stars 153 forks source link

🐞 Bug Manjaro/Arch - Install error `Freqtrade-MGM/./mgm-hurry': [Errno 2] No such file or directory` #285

Open anakein opened 2 years ago

anakein commented 2 years ago

i try install in ubuntu 20.10 into raspberry. all dependencies is working, i have not error installing but i try exec.....

tbot@tbot-desktop:~/Freqtrade-MGM$ python3 -m pipenv run python3 ./mgm-hurry
/home/tbot/.local/share/virtualenvs/Freqtrade-MGM-e8YCs6Dc/bin/python3: can't open file '/home/tbot/Freqtrade-MGM/./mgm-hurry': [Errno 2] No such file or directory

tbot@tbot-desktop:~/Freqtrade-MGM$ mgm-hurry
/home/tbot/.local/share/virtualenvs/Freqtrade-MGM-e8YCs6Dc/bin/python3: can't open file '/home/tbot/Freqtrade-MGM/./mgm-hurry': [Errno 2] No such file or directory

ToDo + Workarounds:

anakein commented 2 years ago

i tried manually install, and now i think is installed.

if i try launch MGM say this:

tbot@tbot-desktop:~/Freqtrade-MGM$ mgm-hurry up
Traceback (most recent call last):
  File "/home/tbot/Freqtrade-MGM/monigomani/./mgm-hurry", line 27, in <module>
    import fire
ModuleNotFoundError: No module named 'fire'
Rikj000 commented 2 years ago

Should be fixed in commit: https://github.com/Rikj000/MoniGoMani/commit/a8067975e9146e70c831f237ed21f019e22110be

Jmorzaez commented 2 years ago

Hi all,

Having same issue here, just after fresh install of development branch:

/home/jma/.local/share/virtualenvs/Freqtrade-MGM-H8JUSc0h/bin/python3: 
    can't open file '/home/jma/Descargas/Freqtrade-MGM/./mgm-hurry': [Errno 2] No such file or directory

Any workaround to test?

Thanks

Rikj000 commented 2 years ago

Hi all,

Having same issue here, just after fresh install of development branch:

/home/jma/.local/share/virtualenvs/Freqtrade-MGM-H8JUSc0h/bin/python3: 
    can't open file '/home/jma/Descargas/Freqtrade-MGM/./mgm-hurry': [Errno 2] No such file or directory

Any workaround to test?

Thanks

The issue was already resolved on my end. So please post your full installation log so we can dig deeper.

Jmorzaez commented 2 years ago

So please post your full installation log so we can dig deeper

No probs, but taking a look on install folder and virtualenvs canΒ΄t seem to find the installation log. Which one is the default path for it?

Thanks

Jmorzaez commented 2 years ago

Hi, coming back to this, could it be just a path issue? It is trying to locate mgm-hurry in /Freqtrade-MGM/./mgm-hurry while it is located in /Freqtrade-MGM/monigomani/mgm-hurry?

Just tried it in Manjaro fresh install (last time was in Debian) and got same issue.

Rikj000 commented 2 years ago

No probs, but taking a look on install folder and virtualenvs canΒ΄t seem to find the installation log. Which one is the default path for it?

Not completely sure if the installation process is logged, but if it is, it will be under Freqtrade-MGM/user_data/logs/

Hi, coming back to this, could it be just a path issue? It is trying to locate mgm-hurry in /Freqtrade-MGM/./mgm-hurry while it is located in /Freqtrade-MGM/monigomani/mgm-hurry?

That path should be correct:

Just tried it in Manjaro fresh install (last time was in Debian) and got same issue.

Hmmm, that's odd since I mainly develop MGM on Manjaro, however I do mostly use fish instead of bash in my CLI.
When using the installer.sh I tend to stick to bash though.

Conclusion

I suspect you're having issues with your mgm-hurry shell alias,
which the installer.sh should have asked to set up for you here

ToDo @Jmorzaez

Jmorzaez commented 2 years ago

Hi Rikj000,

Not completely sure if the installation process is logged, but if it is, it will be under Freqtrade-MGM/user_data/logs/

In there there is just an empty file called "freqtrade.log", couldn't find any other around.

then during the MGM installation, a symlink to Freqtrade-MGM/mgm-hurry will be created [here].

Checked that and realised it mustn't be the issue here.

You can read more about the shell alias in the docs [here]

I did so as I'm making sure to understand the docs before going further but no luck :(

Which CLI you use, I suspect bash?

Yep, as default in Manjaro 21.3.3.220712 XFCE.

If you used the installer.sh to setup the mgm-hurry shell alias?

I did, checking .bashrc I see the alias added at bottom:

MGM-Hurry shell alias
mgm-hurry() { pushd /home/jma/Documents/Freqtrade-MGM &> /dev/null; python3 -m pipenv run python3 ./mgm-hurry '$@'; popd &> /dev/null; }

Tried as well to run it from installation folder with python3 -m pipenv run python3 ./mgm-hurry with no luck, that's why I thought alias issue was not related?

What I will do if you let me is to run the installer again over a fresh install and post here every I/O from terminal with the steps I follow (install requirements, run installer).

This is anyway my full .bashrc file content:

Toggle .bashrc ```bash # # ~/.bashrc # [[ $- != *i* ]] && return colors() { local fgc bgc vals seq0 printf "Color escapes are %s\n" '\e[${value};...;${value}m' printf "Values 30..37 are \e[33mforeground colors\e[m\n" printf "Values 40..47 are \e[43mbackground colors\e[m\n" printf "Value 1 gives a \e[1mbold-faced look\e[m\n\n" # foreground colors for fgc in {30..37}; do # background colors for bgc in {40..47}; do fgc=${fgc#37} # white bgc=${bgc#40} # black vals="${fgc:+$fgc;}${bgc}" vals=${vals%%;} seq0="${vals:+\e[${vals}m}" printf " %-9s" "${seq0:-(default)}" printf " ${seq0}TEXT\e[m" printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m" done echo; echo done } [ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion # Change the window title of X terminals case ${TERM} in xterm*|rxvt*|Eterm*|aterm|kterm|gnome*|interix|konsole*) PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\007"' ;; screen*) PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\033\\"' ;; esac use_color=true # Set colorful PS1 only on colorful terminals. # dircolors --print-database uses its own built-in database # instead of using /etc/DIR_COLORS. Try to use the external file # first to take advantage of user additions. Use internal bash # globbing instead of external grep binary. safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM match_lhs="" [[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)" [[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(/dev/null \ && match_lhs=$(dircolors --print-database) [[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true if ${use_color} ; then # Enable colors for ls, etc. Prefer ~/.dir_colors #64489 if type -P dircolors >/dev/null ; then if [[ -f ~/.dir_colors ]] ; thenbashrc eval $(dircolors -b ~/.dir_colors) elif [[ -f /etc/DIR_COLORS ]] ; then eval $(dircolors -b /etc/DIR_COLORS) fi fi if [[ ${EUID} == 0 ]] ; then PS1='\[\033[01;31m\][\h\[\033[01;36m\] \W\[\033[01;31m\]]\$\[\033[00m\] ' else PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \W\[\033[01;32m\]]\$\[\033[00m\] ' fi alias ls='ls --color=auto' alias grep='grep --colour=auto' alias egrep='egrep --colour=auto' alias fgrep='fgrep --colour=auto' else if [[ ${EUID} == 0 ]] ; then # show root@ when we don't have colors PS1='\u@\h \W \$ ' else PS1='\u@\h \w \$ ' fi fi unset use_color safe_term match_lhs sh #alias cp="cp -i" # confirm before overwriting something #alias df='df -h' # human-readable sizes #alias free='free -m' # show sizes in MB #alias np='nano -w PKGBUILD' #alias more=less xhost +local:root > /dev/null 2>&1 # Bash won't get SIGWINCH if another process is in the foreground. # Enable checkwinsize so that bash will check the terminal size when # it regains control. #65623 # http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11) shopt -s checkwinsize shopt -s expand_aliases # export QT_SELECT=4 # Enable history appending instead of overwriting. #139609 shopt -s histappend # # # ex - archive extractor # # usage: ex ex () { if [ -f $1 ] ; then case $1 in *.tar.bz2) tar xjf $1 ;; *.tar.gz) tar xzf $1 ;; *.bz2) bunzip2 $1 ;; *.rar) unrar x $1 ;; *.gz) gunzip $1 ;; *.tar) tar xf $1 ;; *.tbz2) tar xjf $1 ;; *.tgz) tar xzf $1 ;; *.zip) unzip $1 ;; *.Z) uncompress $1;; *.7z) 7z x $1 ;; *) echo "'$1' cannot be extracted via ex()" ;; esac else echo "'$1' is not a valid file" fi } # MGM-Hurry shell alias mgm-hurry() { pushd /home/jma/Documents/Freqtrade-MGM &> /dev/null; python3 -m pipenv run python3 ./mgm-hurry '$@'; popd &> /dev/null; } ```
Rikj000 commented 2 years ago

I did, checking .bashrc I see the alias added at bottom:

MGM-Hurry shell alias
mgm-hurry() { pushd /home/jma/Documents/Freqtrade-MGM &> /dev/null; python3 -m pipenv run python3 ./mgm-hurry '$@'; popd &> /dev/null; }

It appears like this "bugfix" commit: https://github.com/Rikj000/MoniGoMani/commit/ce7c127b224dd8ae2f98edaf37dca51889ce0eb0 Broke the shell alias on Manjaro (and likely Arch) systems :thinking:

I suspect changing the '$@' part to "$@" will resolve your issue, I checked and I also still use double quotes in my own ~/.bashrc

However it still leaves us unsure why Manjaro is acting difficult,
while other OSes like Ubuntu needed that change to work correctly..

Either way @Jmorzaez, thank you for your thorough reply!

I'll leave this issue open for now so people can work around it manually untill I or another dev find the time to patch the installer.sh's shell alias creation to support multiple Distro's.
(Or at least make it differentiate between Arch/Manjaro and Debian/Ubuntu)

Rikj000 commented 2 years ago

ToDo/Workaround:

Jmorzaez commented 2 years ago

Hi Rik, It's good to see you got to the point. I'm posting here as not the same issue but install issue. It seems to be related with the freqtrade-side installation?

WARNING - FreqtradeCli - installation_exists() failed. Freqtrade binary not found in /home/jma/Documents/Freqtrade-MGM/.env/bin/freqtrade.
ERROR - 🀷 Whaaaa.. No Freqtrade installation found. Beats me...

As well the TA-lib is not being installed correctly:

Γ— Running setup.py install for TA-Lib did not run successfully.

I post the full process below:

Toggle Logs ```jma@MS7978 Documents]$ /usr/bin/env sh <(curl -s "https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/installer.sh") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ⛱️ Welcome aboard! Let's get started ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ πŸ‘‰ MoniGoMani will automatically share test results created with it's community, are you okay with this? (y/n) y 🚦 Requirements check ====================== βœ… Python3 is installed. πŸ™‰ Pip3 is not installed. Can't proceed. See: https://pypi.org/project/pip/ [jma@MS7978 Documents]$ sudo pacman -Syu python-pip [sudo] password for jma: :: Synchronising package databases... core is up to date extra is up to date community is up to date multilib is up to date :: Starting full system upgrade... resolving dependencies... looking for conflicting packages... Packages (23) python-cachecontrol-1:0.12.6-4 python-cffi-1.15.1-1 python-colorama-0.4.5-1 python-commonmark-0.9.1-5 python-cryptography-37.0.4-1 python-distlib-0.3.5-1 python-docutils-1:0.19-1 python-future-0.18.2-7 python-html5lib-1.1-11 python-msgpack-1.0.3-1 python-pep517-0.12.0-4 python-platformdirs-2.5.1-1 python-ply-3.11-10 python-pycparser-2.21-3 python-pygments-2.12.0-1 python-pyopenssl-22.0.0-1 python-resolvelib-0.8.1-1 python-rich-12.5.1-1 python-six-1.16.0-5 python-tenacity-8.0.1-3 python-typing_extensions-4.2.0-1 python-webencodings-0.5.1-9 python-pip-22.1.2-1 Total Download Size: 6.52 MiB Total Installed Size: 35.30 MiB :: Proceed with installation? [Y/n] y :: Retrieving packages... python-pygments-... 2.1 MiB 2.12 MiB/s 00:01 [######################] 100% python-cryptogra... 823.0 KiB 3.18 MiB/s 00:00 [######################] 100% python-future-0.... 713.3 KiB 4.55 MiB/s 00:00 [######################] 100% python-docutils-... 699.1 KiB 6.63 MiB/s 00:00 [######################] 100% python-pip-22.1.... 509.1 KiB 5.13 MiB/s 00:00 [######################] 100% python-rich-12.5... 395.0 KiB 3.86 MiB/s 00:00 [######################] 100% python-cffi-1.15... 222.3 KiB 2.93 MiB/s 00:00 [######################] 100% python-html5lib-... 211.5 KiB 1762 KiB/s 00:00 [######################] 100% python-pycparser... 194.3 KiB 1579 KiB/s 00:00 [######################] 100% python-distlib-0... 184.5 KiB 2.25 MiB/s 00:00 [######################] 100% python-commonmar... 110.6 KiB 1940 KiB/s 00:00 [######################] 100% python-pyopenssl... 86.2 KiB 1026 KiB/s 00:00 [######################] 100% python-ply-3.11-... 77.1 KiB 682 KiB/s 00:00 [######################] 100% python-msgpack-1... 73.7 KiB 995 KiB/s 00:00 [######################] 100% python-typing_ex... 37.2 KiB 689 KiB/s 00:00 [######################] 100% python-pep517-0.... 32.0 KiB 320 KiB/s 00:00 [######################] 100% python-cachecont... 30.3 KiB 246 KiB/s 00:00 [######################] 100% python-tenacity-... 29.4 KiB 516 KiB/s 00:00 [######################] 100% python-colorama-... 24.5 KiB 462 KiB/s 00:00 [######################] 100% python-resolveli... 24.1 KiB 446 KiB/s 00:00 [######################] 100% python-six-1.16.... 23.2 KiB 226 KiB/s 00:00 [######################] 100% python-platformd... 23.0 KiB 425 KiB/s 00:00 [######################] 100% python-webencodi... 19.3 KiB 264 KiB/s 00:00 [######################] 100% Total (23/23) 6.5 MiB 1399 KiB/s 00:05 [######################] 100% (23/23) checking keys in keyring [######################] 100% (23/23) checking package integrity [######################] 100% (23/23) loading package files [######################] 100% (23/23) checking for file conflicts [######################] 100% (23/23) checking available disk space [######################] 100% :: Processing package changes... ( 1/23) installing python-msgpack [######################] 100% ( 2/23) installing python-cachecontrol [######################] 100% Optional dependencies for python-cachecontrol python-lockfile: for the FileCache ( 3/23) installing python-colorama [######################] 100% ( 4/23) installing python-distlib [######################] 100% ( 5/23) installing python-six [######################] 100% ( 6/23) installing python-webencodings [######################] 100% ( 7/23) installing python-html5lib [######################] 100% Optional dependencies for python-html5lib python-lxml: lxml treebuilder python-genshi: genshi treewalker ( 8/23) installing python-pep517 [######################] 100% ( 9/23) installing python-platformdirs [######################] 100% (10/23) installing python-pygments [######################] 100% (11/23) installing python-resolvelib [######################] 100% (12/23) installing python-typing_extensions [######################] 100% (13/23) installing python-docutils [######################] 100% (14/23) installing python-future [######################] 100% Optional dependencies for python-future python-setuptools: futurize and pasteurize scripts [installed] (15/23) installing python-commonmark [######################] 100% (16/23) installing python-rich [######################] 100% (17/23) installing python-tenacity [######################] 100% Optional dependencies for python-tenacity python-tornado: for Tornado coroutines support (18/23) installing python-ply [######################] 100% (19/23) installing python-pycparser [######################] 100% (20/23) installing python-cffi [######################] 100% (21/23) installing python-cryptography [######################] 100% (22/23) installing python-pyopenssl [######################] 100% (23/23) installing python-pip [######################] 100% :: Running post-transaction hooks... (1/1) Arming ConditionNeedsUpdate... [jma@MS7978 Documents]$ [jma@MS7978 Documents]$ /usr/bin/env sh <(curl -s "https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/installer.sh") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ⛱️ Welcome aboard! Let's get started ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ πŸ‘‰ MoniGoMani will automatically share test results created with it's community, are you okay with this? (y/n) y 🚦 Requirements check ====================== βœ… Python3 is installed. βœ… Pip3 is installed. πŸ™‰ Pyenv is not installed. Can't proceed. See: https://github.com/pyenv/pyenv-installer#pyenv-installer/ [jma@MS7978 Documents]$ sudo pacman -Syu pyenv [sudo] password for jma: :: Synchronising package databases... core is up to date extra is up to date community is up to date multilib is up to date :: Starting full system upgrade... resolving dependencies... looking for conflicting packages... Packages (1) pyenv-2.3.2-1 Total Download Size: 0.25 MiB Total Installed Size: 2.64 MiB :: Proceed with installation? [Y/n] y :: Retrieving packages... pyenv-2.3.2-1-any 254.4 KiB 631 KiB/s 00:00 [######################] 100% (1/1) checking keys in keyring [######################] 100% (1/1) checking package integrity [######################] 100% (1/1) loading package files [######################] 100% (1/1) checking for file conflicts [######################] 100% (1/1) checking available disk space [######################] 100% :: Processing package changes... (1/1) installing pyenv [######################] 100% Optional dependencies for pyenv git: installing development versions [installed] :: Running post-transaction hooks... (1/1) Arming ConditionNeedsUpdate... [jma@MS7978 Documents]$ [jma@MS7978 Documents]$ /usr/bin/env sh <(curl -s "https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/installer.sh") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ⛱️ Welcome aboard! Let's get started ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ πŸ‘‰ MoniGoMani will automatically share test results created with it's community, are you okay with this? (y/n) y 🚦 Requirements check ====================== βœ… Python3 is installed. βœ… Pip3 is installed. βœ… Pyenv is installed. βœ… Git is installed. βœ… cURL is installed. πŸ™‰ Expect is not installed. Can't proceed. See: https://core.tcl-lang.org/expect/index [jma@MS7978 Documents]$ sudo pacman -Syu expect :: Synchronising package databases... core is up to date extra is up to date community is up to date multilib is up to date :: Starting full system upgrade... resolving dependencies... looking for conflicting packages... Packages (1) expect-5.45.4-2 Total Download Size: 0.18 MiB Total Installed Size: 0.41 MiB :: Proceed with installation? [Y/n] y :: Retrieving packages... expect-5.45.4-2-... 188.0 KiB 227 KiB/s 00:01 [######################] 100% (1/1) checking keys in keyring [######################] 100% (1/1) checking package integrity [######################] 100% (1/1) loading package files [######################] 100% (1/1) checking for file conflicts [######################] 100% (1/1) checking available disk space [######################] 100% :: Processing package changes... (1/1) installing expect [######################] 100% :: Running post-transaction hooks... (1/1) Arming ConditionNeedsUpdate... [jma@MS7978 Documents]$ [jma@MS7978 Documents]$ /usr/bin/env sh <(curl -s "https://raw.githubusercontent.com/Rikj000/MoniGoMani/development/installer.sh") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ⛱️ Welcome aboard! Let's get started ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ πŸ‘‰ MoniGoMani will automatically share test results created with it's community, are you okay with this? (y/n) y 🚦 Requirements check ====================== βœ… Python3 is installed. βœ… Pip3 is installed. βœ… Pyenv is installed. βœ… Git is installed. βœ… cURL is installed. βœ… Expect is installed. πŸ‘‰ Are you ready to proceed? (y/n) y ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ βš™οΈ Downloading required files... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cloning into '/home/jma/Documents/Freqtrade-MGM/monigomani'... remote: Enumerating objects: 6398, done. remote: Counting objects: 100% (84/84), done. remote: Compressing objects: 100% (57/57), done. remote: Total 6398 (delta 54), reused 43 (delta 27), pack-reused 6314 Receiving objects: 100% (6398/6398), 265.14 MiB | 11.30 MiB/s, done. Resolving deltas: 100% (4428/4428), done. Already on 'development' Your branch is up to date with 'origin/development'. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ βš™οΈ Installing pipenv... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (Some errors which are usually safe to ignore might occur during the installation of pip & pipenv) Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: pip in /usr/lib/python3.10/site-packages (22.1.2) Collecting pip Downloading pip-22.2-py3-none-any.whl (2.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 9.3 MB/s eta 0:00:00 Installing collected packages: pip Successfully installed pip-22.2 Defaulting to user installation because normal site-packages is not writeable Collecting pipenv Downloading pipenv-2022.7.24-py2.py3-none-any.whl (3.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.7/3.7 MB 9.7 MB/s eta 0:00:00 Collecting virtualenv Downloading virtualenv-20.15.1-py2.py3-none-any.whl (10.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.1/10.1 MB 11.1 MB/s eta 0:00:00 Requirement already satisfied: pip>=22.0.4 in /home/jma/.local/lib/python3.10/site-packages (from pipenv) (22.2) Requirement already satisfied: setuptools>=36.2.1 in /usr/lib/python3.10/site-packages (from pipenv) (61.3.1) Requirement already satisfied: certifi in /usr/lib/python3.10/site-packages (from pipenv) (2022.6.15) Collecting virtualenv-clone>=0.2.5 Downloading virtualenv_clone-0.5.7-py3-none-any.whl (6.6 kB) Requirement already satisfied: distlib<1,>=0.3.1 in /usr/lib/python3.10/site-packages (from virtualenv->pipenv) (0.3.5) Collecting filelock<4,>=3.2 Downloading filelock-3.7.1-py3-none-any.whl (10 kB) Requirement already satisfied: six<2,>=1.9.0 in /usr/lib/python3.10/site-packages (from virtualenv->pipenv) (1.16.0) Requirement already satisfied: platformdirs<3,>=2 in /usr/lib/python3.10/site-packages (from virtualenv->pipenv) (2.5.1) Installing collected packages: virtualenv-clone, filelock, virtualenv, pipenv Successfully installed filelock-3.7.1 pipenv-2022.7.24 virtualenv-20.15.1 virtualenv-clone-0.5.7 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ βš™οΈ Setting up virtual environment with python dependency packages... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Warning: Python 3.9 was not found on your system... Would you like us to install CPython 3.9.13 with Pyenv? [Y/n]: y Installing CPython 3.9.13 with /usr/bin/pyenv (this may take a few minutes)... βœ” Success! Creating a virtualenv for this project... Pipfile: /home/jma/Documents/Freqtrade-MGM/Pipfile Using /home/jma/.pyenv/versions/3.9.13/bin/python3.9 (3.9.13) to create virtualenv... β ‹ Creating virtual environment...created virtual environment CPython3.9.13.final.0-64 in 469ms creator CPython3Posix(dest=/home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/jma/.local/share/virtualenv) added seed packages: pip==22.1.2, setuptools==62.6.0, wheel==0.37.1 activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator βœ” Successfully created virtual environment! Virtualenv location: /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S Pipfile.lock not found, creating... Locking [dev-packages] dependencies... Building requirements... Resolving dependencies... βœ” Success! Locking [packages] dependencies... Building requirements... Resolving dependencies... βœ” Success! Updated Pipfile.lock (60f1e5)! Installing dependencies from Pipfile.lock (60f1e5)... 🐍 β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰ 49/49 β€” 00:00:25 To activate this project's virtualenv, run pipenv shell. Alternatively, run a command inside the virtualenv with pipenv run. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ βš™οΈ Proceeding to Freqtrade & MoniGoMani installation... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ _ _ __ ___ __ _ _ __ ___ | |__ _ _ _ __ _ __ _ _ | '_ ` _ \ / _` || '_ ` _ \ _____ | '_ \ | | | || '__|| '__|| | | | | | | | | || (_| || | | | | ||_____|| | | || |_| || | | | | |_| | |_| |_| |_| \__, ||_| |_| |_| |_| |_| \__,_||_| |_| \__, | |___/ |___/ WARNING - Could not find .hurry config file at /home/jma/Documents/Freqtrade-MGM/.hurry INFO - 🍺 Configuration data written to ".hurry" file WARNING - FreqtradeCli - installation_exists() failed. Freqtrade binary not found in /home/jma/Documents/Freqtrade-MGM/.env/bin/freqtrade. WARNING - 🀷 No Freqtrade installation found. Please run "mgm-hurry install_freqtrade" before attempting to go further! INFO - πŸ’¨ πŸ’¨ πŸ’¨ πŸ‘‰ The all in one command. Hurry up, turn it up! πŸ’¨ πŸ’¨ πŸ’¨ ? πŸ’¨ Do you want to install Freqtrade? Yes ? πŸ’¨ Do you want to install MoniGoMani? Yes ? πŸ’¨ Do you want to configure it now? Yes ? πŸ’¨ Do you want to generate a static pairlist now? Yes ? πŸ’¨ Do you want to download candle data now? Yes ? πŸ’¨ Do you want to hyperopt now? No ? πŸ’¨ Do you want to backtest now? No ? πŸ’¨ Do you want to start trading? No INFO - πŸ’¨ πŸ’¨ πŸ’¨ πŸ‘‰ Install Freqtrade πŸ’¨ πŸ’¨ πŸ’¨ WARNING - FreqtradeCli - installation_exists() failed. Freqtrade binary not found in /home/jma/Documents/Freqtrade-MGM/.env/bin/freqtrade. β ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‡ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd⠏ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ‹ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ™ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ή πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Έ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ Ό πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ΄ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ ¦ πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβ § πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16ddβœ” πŸ‘‰ Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd8ec6e252489a3e62d βœ” πŸ‘‰ Copy Freqtrade installation πŸ‘‰ Run Freqtrade setup INFO - πŸ‘‰ MGM-Hurry will now run the following command for you: export VIRTUAL_ENV_BAK=$VIRTUAL_ENV; unset VIRTUAL_ENV; expect /home/jma/Documents/Freqtrade-MGM/setup.exp; export VIRTUAL_ENV=$VIRTUAL_ENV_BAK; unset VIRTUAL_ENV_BAK; spawn ./setup.sh --install /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/bin/python3.9 using python3.9 ---------------------------- Installing mandatory dependencies ---------------------------- This script does not support your OS. If you have Python version 3.7 - 3.9, pip, virtualenv, ta-lib you can continue. Wait 10 seconds to continue the next install steps or use ctrl+c to interrupt this shell. ---------------------------- Resetting branch and virtual env ---------------------------- Reset git branch? (This will remove all changes you made!) [y/N]? n ---------------------------- Updating your virtual env ---------------------------- pip install in-progress. Please wait... Requirement already satisfied: pip in ./.env/lib/python3.9/site-packages (22.0.4) Collecting pip Using cached pip-22.2-py3-none-any.whl (2.0 MB) Installing collected packages: pip Attempting uninstall: pip Found existing installation: pip 22.0.4 Uninstalling pip-22.0.4: Successfully uninstalled pip-22.0.4 Successfully installed pip-22.2 Do you want to install dependencies for dev [y/N]? y Do you want to install plotting dependencies (plotly) [y/N]? y Do you want to install hyperopt dependencies [y/N]? y Collecting numpy==1.21.4 Downloading numpy-1.21.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (15.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/15.7 MB ? eta -:--:-- ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/15.7 MB 9.9 MB/s eta 0:00:02 ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/15.7 MB 9.4 MB/s eta 0:00:02 ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/15.7 MB 9.9 MB/s eta 0:00:02 ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/15.7 MB 10.0 MB/s eta 0:00:02 ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/15.7 MB 10.2 MB/s eta 0:00:02 ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/15.7 MB 10.6 MB/s eta 0:00:02 ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/15.7 MB 10.8 MB/s eta 0:00:02 ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/15.7 MB 10.8 MB/s eta 0:00:02 ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/15.7 MB 10.9 MB/s eta 0:00:02 ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/15.7 MB 11.1 MB/s eta 0:00:02 ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.2/15.7 MB 11.1 MB/s eta 0:00:02 ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/15.7 MB 11.1 MB/s eta 0:00:02 ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.1/15.7 MB 11.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/15.7 MB 11.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 6.0/15.7 MB 11.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 6.4/15.7 MB 11.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 6.9/15.7 MB 11.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 7.3/15.7 MB 11.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 7.8/15.7 MB 11.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 8.3/15.7 MB 12.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 8.9/15.7 MB 12.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 9.6/15.7 MB 12.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 10.3/15.7 MB 12.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 10.8/15.7 MB 13.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 11.4/15.7 MB 13.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 11.9/15.7 MB 13.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 12.5/15.7 MB 14.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 13.1/15.7 MB 14.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 13.5/15.7 MB 14.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 14.1/15.7 MB 14.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 14.7/15.7 MB 15.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 15.3/15.7 MB 15.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 15.7/15.7 MB 15.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 15.7/15.7 MB 15.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.7/15.7 MB 13.8 MB/s eta 0:00:00 Collecting pandas==1.3.4 Downloading pandas-1.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/11.5 MB ? eta -:--:-- ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/11.5 MB 17.3 MB/s eta 0:00:01 ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/11.5 MB 15.6 MB/s eta 0:00:01 ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/11.5 MB 16.4 MB/s eta 0:00:01 ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/11.5 MB 17.2 MB/s eta 0:00:01 ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/11.5 MB 17.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/11.5 MB 17.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/11.5 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 5.2/11.5 MB 18.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 6.0/11.5 MB 18.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 6.7/11.5 MB 18.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 7.4/11.5 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 7.9/11.5 MB 18.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 8.6/11.5 MB 18.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.2/11.5 MB 18.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 9.9/11.5 MB 18.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 10.7/11.5 MB 18.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 11.4/11.5 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 11.5/11.5 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.5/11.5 MB 17.1 MB/s eta 0:00:00 Collecting pandas-ta==0.3.14b Downloading pandas_ta-0.3.14b.tar.gz (115 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/115.1 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 115.1/115.1 kB 13.0 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting ccxt==1.61.92 Downloading ccxt-1.61.92-py2.py3-none-any.whl (2.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.2 MB ? eta -:--:-- ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/2.2 MB 23.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 1.3/2.2 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 1.9/2.2 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 2.2/2.2 MB 17.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/2.2 MB 14.5 MB/s eta 0:00:00 Collecting cryptography==36.0.0 Downloading cryptography-36.0.0-cp36-abi3-manylinux_2_24_x86_64.whl (3.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/3.6 MB 20.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.6 MB 20.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 2.0/3.6 MB 19.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.8/3.6 MB 19.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 3.4/3.6 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 3.6/3.6 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 16.2 MB/s eta 0:00:00 Collecting aiohttp==3.8.1 Downloading aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 0.7/1.2 MB 20.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 1.2/1.2 MB 20.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 15.6 MB/s eta 0:00:00 Collecting SQLAlchemy==1.4.27 Downloading SQLAlchemy-1.4.27-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.6 MB ? eta -:--:-- ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 0.7/1.6 MB 20.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 1.3/1.6 MB 19.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 16.6 MB/s eta 0:00:00 Collecting python-telegram-bot==13.8.1 Downloading python_telegram_bot-13.8.1-py3-none-any.whl (495 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/495.2 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 491.5/495.2 kB 20.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 495.2/495.2 kB 12.8 MB/s eta 0:00:00 Collecting arrow==1.2.1 Downloading arrow-1.2.1-py3-none-any.whl (63 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/63.4 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.4/63.4 kB 7.5 MB/s eta 0:00:00 Collecting cachetools==4.2.2 Downloading cachetools-4.2.2-py3-none-any.whl (11 kB) Collecting requests==2.26.0 Downloading requests-2.26.0-py2.py3-none-any.whl (62 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/62.3 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.3/62.3 kB 8.4 MB/s eta 0:00:00 Collecting urllib3==1.26.7 Downloading urllib3-1.26.7-py2.py3-none-any.whl (138 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/138.8 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 138.8/138.8 kB 11.4 MB/s eta 0:00:00 Collecting jsonschema==4.2.1 Downloading jsonschema-4.2.1-py3-none-any.whl (69 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/69.4 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 69.4/69.4 kB 8.5 MB/s eta 0:00:00 Collecting TA-Lib==0.4.21 Downloading TA-Lib-0.4.21.tar.gz (270 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/270.1 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 270.1/270.1 kB 15.7 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting technical==1.3.0 Downloading technical-1.3.0-py3-none-any.whl (51 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/51.7 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 51.7/51.7 kB 5.8 MB/s eta 0:00:00 Collecting tabulate==0.8.9 Downloading tabulate-0.8.9-py3-none-any.whl (25 kB) Collecting pycoingecko==2.2.0 Downloading pycoingecko-2.2.0-py3-none-any.whl (8.3 kB) Collecting jinja2==3.0.3 Downloading Jinja2-3.0.3-py3-none-any.whl (133 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/133.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 133.6/133.6 kB 10.4 MB/s eta 0:00:00 Collecting tables==3.6.1 Downloading tables-3.6.1-cp39-cp39-manylinux2010_x86_64.whl (14.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/14.3 MB ? eta -:--:-- ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/14.3 MB 20.5 MB/s eta 0:00:01 ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/14.3 MB 18.3 MB/s eta 0:00:01 ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/14.3 MB 18.3 MB/s eta 0:00:01 ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/14.3 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.0/14.3 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/14.3 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 5.3/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 6.0/14.3 MB 18.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 6.8/14.3 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.3 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 8.3/14.3 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 8.9/14.3 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 9.7/14.3 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 10.3/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 10.9/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 11.5/14.3 MB 18.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 12.3/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 13.0/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 13.7/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 14.3/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 14.3/14.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.3/14.3 MB 16.5 MB/s eta 0:00:00 Collecting blosc==1.10.6 Downloading blosc-1.10.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.6 MB ? eta -:--:-- ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/2.6 MB 22.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 1.4/2.6 MB 20.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.0/2.6 MB 19.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 2.6/2.6 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/2.6 MB 15.7 MB/s eta 0:00:00 Collecting py_find_1st==1.1.5 Downloading py_find_1st-1.1.5.tar.gz (8.8 kB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Collecting python-rapidjson==1.5 Downloading python_rapidjson-1.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.5 MB ? eta -:--:-- ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 0.6/1.5 MB 18.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 1.2/1.5 MB 16.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 14.2 MB/s eta 0:00:00 Collecting sdnotify==0.3.2 Downloading sdnotify-0.3.2.tar.gz (2.5 kB) Preparing metadata (setup.py) ... done Collecting fastapi==0.70.0 Downloading fastapi-0.70.0-py3-none-any.whl (51 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/51.9 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 51.9/51.9 kB 3.1 MB/s eta 0:00:00 Collecting uvicorn==0.15.0 Downloading uvicorn-0.15.0-py3-none-any.whl (54 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/54.4 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.4/54.4 kB 3.2 MB/s eta 0:00:00 Collecting pyjwt==2.3.0 Downloading PyJWT-2.3.0-py3-none-any.whl (16 kB) Collecting aiofiles==0.7.0 Downloading aiofiles-0.7.0-py3-none-any.whl (13 kB) Collecting psutil==5.8.0 Downloading psutil-5.8.0-cp39-cp39-manylinux2010_x86_64.whl (293 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/293.5 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 293.5/293.5 kB 11.6 MB/s eta 0:00:00 Collecting colorama==0.4.4 Downloading colorama-0.4.4-py2.py3-none-any.whl (16 kB) Collecting questionary==1.10.0 Downloading questionary-1.10.0-py3-none-any.whl (31 kB) Collecting prompt-toolkit==3.0.22 Downloading prompt_toolkit-3.0.22-py3-none-any.whl (374 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/374.3 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 374.3/374.3 kB 11.7 MB/s eta 0:00:00 Collecting python-dateutil==2.8.2 Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/247.7 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 247.7/247.7 kB 12.2 MB/s eta 0:00:00 Collecting plotly==5.4.0 Downloading plotly-5.4.0-py2.py3-none-any.whl (25.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/25.3 MB ? eta -:--:-- ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/25.3 MB 17.8 MB/s eta 0:00:02 ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/25.3 MB 18.3 MB/s eta 0:00:02 ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/25.3 MB 18.3 MB/s eta 0:00:02 ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/25.3 MB 18.3 MB/s eta 0:00:02 ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/25.3 MB 18.3 MB/s eta 0:00:02 ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/25.3 MB 11.8 MB/s eta 0:00:02 ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/25.3 MB 18.0 MB/s eta 0:00:02 ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.3/25.3 MB 18.2 MB/s eta 0:00:02 ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.0/25.3 MB 18.3 MB/s eta 0:00:02 ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.7/25.3 MB 18.4 MB/s eta 0:00:02 ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.6/25.3 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.3/25.3 MB 18.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 9.0/25.3 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/25.3 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 10.4/25.3 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 11.1/25.3 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 11.9/25.3 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 12.6/25.3 MB 22.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 13.3/25.3 MB 21.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 14.0/25.3 MB 20.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 14.8/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 15.4/25.3 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 16.1/25.3 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 16.8/25.3 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 17.6/25.3 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 18.3/25.3 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 19.0/25.3 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 19.7/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 20.4/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 21.1/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 21.8/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 22.5/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 23.2/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 23.9/25.3 MB 19.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 24.6/25.3 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 25.1/25.3 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 25.3/25.3 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 25.3/25.3 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 25.3/25.3 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 25.3/25.3 MB 15.8 MB/s eta 0:00:00 Collecting scipy==1.7.2 Downloading scipy-1.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/39.8 MB ? eta -:--:-- ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/39.8 MB 19.0 MB/s eta 0:00:03 ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/39.8 MB 19.4 MB/s eta 0:00:02 ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/39.8 MB 16.9 MB/s eta 0:00:03 ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/39.8 MB 17.1 MB/s eta 0:00:03 ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/39.8 MB 17.7 MB/s eta 0:00:03 ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/39.8 MB 18.1 MB/s eta 0:00:02 ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/39.8 MB 18.2 MB/s eta 0:00:02 ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.3/39.8 MB 18.4 MB/s eta 0:00:02 ━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.0/39.8 MB 18.5 MB/s eta 0:00:02 ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.8/39.8 MB 18.6 MB/s eta 0:00:02 ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.5/39.8 MB 18.8 MB/s eta 0:00:02 ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/39.8 MB 18.8 MB/s eta 0:00:02 ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.9/39.8 MB 18.7 MB/s eta 0:00:02 ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.6/39.8 MB 18.7 MB/s eta 0:00:02 ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.4/39.8 MB 18.8 MB/s eta 0:00:02 ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.2/39.8 MB 18.8 MB/s eta 0:00:02 ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.9/39.8 MB 19.0 MB/s eta 0:00:02 ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.6/39.8 MB 19.5 MB/s eta 0:00:02 ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.3/39.8 MB 19.3 MB/s eta 0:00:02 ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 14.1/39.8 MB 19.4 MB/s eta 0:00:02 ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 14.9/39.8 MB 19.4 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 15.6/39.8 MB 19.4 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 16.1/39.8 MB 19.1 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 16.8/39.8 MB 19.0 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 17.3/39.8 MB 18.6 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 18.1/39.8 MB 18.6 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 18.8/39.8 MB 18.6 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 18.9/39.8 MB 18.6 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 18.9/39.8 MB 18.6 MB/s eta 0:00:02 ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 21.1/39.8 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 21.6/39.8 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 22.3/39.8 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 22.9/39.8 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 23.5/39.8 MB 18.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 24.1/39.8 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 24.7/39.8 MB 17.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 25.3/39.8 MB 17.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 26.0/39.8 MB 17.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 26.7/39.8 MB 17.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 27.5/39.8 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 28.2/39.8 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 28.9/39.8 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 29.6/39.8 MB 20.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 30.3/39.8 MB 19.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 31.0/39.8 MB 18.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 31.7/39.8 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 32.3/39.8 MB 18.2 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 32.9/39.8 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 33.6/39.8 MB 18.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 34.3/39.8 MB 18.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 35.0/39.8 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 35.6/39.8 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 36.3/39.8 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 37.0/39.8 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 37.7/39.8 MB 18.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 38.3/39.8 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 39.0/39.8 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.4/39.8 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.8/39.8 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.8/39.8 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.8/39.8 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.8/39.8 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.8/39.8 MB 13.9 MB/s eta 0:00:00 Collecting scikit-learn==1.0.1 Downloading scikit_learn-1.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (24.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/24.7 MB ? eta -:--:-- ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/24.7 MB 22.5 MB/s eta 0:00:02 ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/24.7 MB 17.4 MB/s eta 0:00:02 ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/24.7 MB 18.1 MB/s eta 0:00:02 ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.7/24.7 MB 18.6 MB/s eta 0:00:02 ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/24.7 MB 18.9 MB/s eta 0:00:02 ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.1/24.7 MB 18.4 MB/s eta 0:00:02 ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.8/24.7 MB 18.5 MB/s eta 0:00:02 ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.6/24.7 MB 18.6 MB/s eta 0:00:02 ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/24.7 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.0/24.7 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/24.7 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.5/24.7 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 9.2/24.7 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 9.9/24.7 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 10.7/24.7 MB 18.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 11.4/24.7 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 12.2/24.7 MB 19.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 12.9/24.7 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 13.6/24.7 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 14.4/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 15.1/24.7 MB 19.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 15.8/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 16.6/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 17.3/24.7 MB 19.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 18.1/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 18.8/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 19.5/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 20.3/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 21.0/24.7 MB 19.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 21.5/24.7 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 22.3/24.7 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 23.0/24.7 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 23.8/24.7 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 24.2/24.7 MB 18.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 24.7/24.7 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 24.7/24.7 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 24.7/24.7 MB 18.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.7/24.7 MB 15.9 MB/s eta 0:00:00 Collecting scikit-optimize==0.9.0 Downloading scikit_optimize-0.9.0-py2.py3-none-any.whl (100 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/100.3 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100.3/100.3 kB 11.0 MB/s eta 0:00:00 Collecting filelock==3.4.0 Downloading filelock-3.4.0-py3-none-any.whl (9.8 kB) Collecting joblib==1.1.0 Downloading joblib-1.1.0-py2.py3-none-any.whl (306 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/307.0 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.0/307.0 kB 14.0 MB/s eta 0:00:00 Collecting progressbar2==3.55.0 Downloading progressbar2-3.55.0-py2.py3-none-any.whl (26 kB) Collecting coveralls==3.3.1 Downloading coveralls-3.3.1-py2.py3-none-any.whl (14 kB) Collecting flake8==4.0.1 Downloading flake8-4.0.1-py2.py3-none-any.whl (64 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/64.1 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.1/64.1 kB 6.5 MB/s eta 0:00:00 Collecting flake8-tidy-imports==4.5.0 Downloading flake8_tidy_imports-4.5.0-py3-none-any.whl (9.3 kB) Collecting mypy==0.910 Downloading mypy-0.910-cp39-cp39-manylinux2010_x86_64.whl (23.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/23.2 MB ? eta -:--:-- ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/23.2 MB 20.3 MB/s eta 0:00:02 ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/23.2 MB 19.7 MB/s eta 0:00:02 ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/23.2 MB 19.7 MB/s eta 0:00:02 ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/23.2 MB 19.0 MB/s eta 0:00:02 ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/23.2 MB 17.9 MB/s eta 0:00:02 ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.0/23.2 MB 17.5 MB/s eta 0:00:02 ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/23.2 MB 17.9 MB/s eta 0:00:02 ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/23.2 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.0/23.2 MB 17.5 MB/s eta 0:00:01 ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.8/23.2 MB 17.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.6/23.2 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/23.2 MB 17.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 9.0/23.2 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 9.7/23.2 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 10.5/23.2 MB 18.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 11.1/23.2 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 11.8/23.2 MB 17.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 12.5/23.2 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 13.3/23.2 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 13.9/23.2 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 14.7/23.2 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 15.4/23.2 MB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 16.1/23.2 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 16.9/23.2 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 17.6/23.2 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 18.3/23.2 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 19.0/23.2 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 19.7/23.2 MB 19.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 20.3/23.2 MB 18.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 21.1/23.2 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 21.9/23.2 MB 19.1 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 22.5/23.2 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 23.2/23.2 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 23.2/23.2 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 23.2/23.2 MB 19.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.2/23.2 MB 16.5 MB/s eta 0:00:00 Collecting pytest==6.2.5 Downloading pytest-6.2.5-py3-none-any.whl (280 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/280.7 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 280.7/280.7 kB 8.9 MB/s eta 0:00:00 Collecting pytest-asyncio==0.16.0 Downloading pytest_asyncio-0.16.0-py3-none-any.whl (12 kB) Collecting pytest-cov==3.0.0 Downloading pytest_cov-3.0.0-py3-none-any.whl (20 kB) Collecting pytest-mock==3.6.1 Downloading pytest_mock-3.6.1-py3-none-any.whl (12 kB) Collecting pytest-random-order==1.0.4 Downloading pytest_random_order-1.0.4-py3-none-any.whl (10 kB) Collecting isort==5.10.1 Downloading isort-5.10.1-py3-none-any.whl (103 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/103.4 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 103.4/103.4 kB 5.4 MB/s eta 0:00:00 Collecting time-machine==2.4.0 Downloading time_machine-2.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (36 kB) Collecting nbconvert==6.3.0 Downloading nbconvert-6.3.0-py3-none-any.whl (556 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/556.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 553.0/556.6 kB 18.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 556.6/556.6 kB 14.5 MB/s eta 0:00:00 Collecting types-cachetools==4.2.5 Downloading types_cachetools-4.2.5-py3-none-any.whl (4.7 kB) Collecting types-filelock==3.2.1 Downloading types_filelock-3.2.1-py3-none-any.whl (2.3 kB) Collecting types-requests==2.26.0 Downloading types_requests-2.26.0-py3-none-any.whl (22 kB) Collecting types-tabulate==0.8.3 Downloading types_tabulate-0.8.3-py3-none-any.whl (2.4 kB) Collecting types-python-dateutil==2.8.2 Downloading types_python_dateutil-2.8.2-py3-none-any.whl (7.6 kB) Collecting pytz>=2017.3 Downloading pytz-2022.1-py2.py3-none-any.whl (503 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/503.5 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 501.8/503.5 kB 21.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 503.5/503.5 kB 12.6 MB/s eta 0:00:00 Collecting aiodns>=1.1.1 Downloading aiodns-3.0.0-py3-none-any.whl (5.0 kB) Collecting yarl==1.6.3 Downloading yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl (315 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/315.0 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 315.0/315.0 kB 12.4 MB/s eta 0:00:00 Requirement already satisfied: setuptools>=38.5.1 in ./.env/lib/python3.9/site-packages (from ccxt==1.61.92->-r requirements.txt (line 5)) (58.1.0) Collecting certifi>=2018.1.18 Downloading certifi-2022.6.15-py3-none-any.whl (160 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/160.2 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 160.2/160.2 kB 10.8 MB/s eta 0:00:00 Collecting cffi>=1.12 Downloading cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/441.2 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 440.3/441.2 kB 21.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 441.2/441.2 kB 10.3 MB/s eta 0:00:00 Collecting attrs>=17.3.0 Downloading attrs-21.4.0-py2.py3-none-any.whl (60 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/60.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.6/60.6 kB 6.9 MB/s eta 0:00:00 Collecting multidict<7.0,>=4.5 Downloading multidict-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/114.2 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 114.2/114.2 kB 9.2 MB/s eta 0:00:00 Collecting async-timeout<5.0,>=4.0.0a3 Downloading async_timeout-4.0.2-py3-none-any.whl (5.8 kB) Collecting charset-normalizer<3.0,>=2.0 Downloading charset_normalizer-2.1.0-py3-none-any.whl (39 kB) Collecting frozenlist>=1.1.1 Downloading frozenlist-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/156.2 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 156.2/156.2 kB 10.5 MB/s eta 0:00:00 Collecting aiosignal>=1.1.2 Downloading aiosignal-1.2.0-py3-none-any.whl (8.2 kB) Collecting greenlet!=0.4.17 Downloading greenlet-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (153 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/153.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 153.6/153.6 kB 10.4 MB/s eta 0:00:00 Collecting APScheduler==3.6.3 Downloading APScheduler-3.6.3-py2.py3-none-any.whl (58 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/58.9 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.9/58.9 kB 7.0 MB/s eta 0:00:00 Collecting tornado>=6.1 Downloading tornado-6.2-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/424.0 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 419.8/424.0 kB 20.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 424.0/424.0 kB 10.6 MB/s eta 0:00:00 Collecting idna<4,>=2.5 Downloading idna-3.3-py3-none-any.whl (61 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/61.2 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 6.8 MB/s eta 0:00:00 Collecting charset-normalizer<3.0,>=2.0 Downloading charset_normalizer-2.0.12-py3-none-any.whl (39 kB) Collecting pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 Downloading pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (115 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/115.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 115.6/115.6 kB 10.4 MB/s eta 0:00:00 Collecting MarkupSafe>=2.0 Downloading MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25 kB) Collecting numexpr>=2.6.2 Downloading numexpr-2.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/380.5 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 380.5/380.5 kB 14.1 MB/s eta 0:00:00 Collecting starlette==0.16.0 Downloading starlette-0.16.0-py3-none-any.whl (61 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/61.7 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.7/61.7 kB 9.1 MB/s eta 0:00:00 Collecting pydantic!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0,>=1.6.2 Downloading pydantic-1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/12.4 MB ? eta -:--:-- ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/12.4 MB 18.2 MB/s eta 0:00:01 ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/12.4 MB 19.6 MB/s eta 0:00:01 ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/12.4 MB 17.5 MB/s eta 0:00:01 ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/12.4 MB 17.1 MB/s eta 0:00:01 ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/12.4 MB 17.7 MB/s eta 0:00:01 ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.5/12.4 MB 17.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.2/12.4 MB 18.0 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 4.8/12.4 MB 17.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 5.5/12.4 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 6.2/12.4 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 6.7/12.4 MB 17.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 7.3/12.4 MB 17.5 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 7.9/12.4 MB 17.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 8.6/12.4 MB 17.3 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 9.2/12.4 MB 17.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.9/12.4 MB 17.6 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 10.6/12.4 MB 17.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 11.3/12.4 MB 17.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 11.9/12.4 MB 17.9 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 12.4/12.4 MB 17.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.4/12.4 MB 16.5 MB/s eta 0:00:00 Collecting h11>=0.8 Downloading h11-0.13.0-py3-none-any.whl (58 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/58.2 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.2/58.2 kB 3.6 MB/s eta 0:00:00 Collecting click>=7.0 Downloading click-8.1.3-py3-none-any.whl (96 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/96.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 96.6/96.6 kB 7.0 MB/s eta 0:00:00 Collecting asgiref>=3.4.0 Downloading asgiref-3.5.2-py3-none-any.whl (22 kB) Collecting wcwidth Downloading wcwidth-0.2.5-py2.py3-none-any.whl (30 kB) Collecting six>=1.5 Downloading six-1.16.0-py2.py3-none-any.whl (11 kB) Collecting tenacity>=6.2.0 Downloading tenacity-8.0.1-py3-none-any.whl (24 kB) Collecting threadpoolctl>=2.0.0 Downloading threadpoolctl-3.1.0-py3-none-any.whl (14 kB) Collecting pyaml>=16.9 Downloading pyaml-21.10.1-py2.py3-none-any.whl (24 kB) Collecting python-utils>=2.3.0 Downloading python_utils-3.3.3-py2.py3-none-any.whl (23 kB) Collecting docopt>=0.6.1 Downloading docopt-0.6.2.tar.gz (25 kB) Preparing metadata (setup.py) ... done Collecting coverage!=6.0.*,!=6.1,!=6.1.1,<7.0,>=4.1 Downloading coverage-6.4.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/211.8 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.8/211.8 kB 8.6 MB/s eta 0:00:00 Collecting pyflakes<2.5.0,>=2.4.0 Downloading pyflakes-2.4.0-py2.py3-none-any.whl (69 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/69.7 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 69.7/69.7 kB 7.3 MB/s eta 0:00:00 Collecting mccabe<0.7.0,>=0.6.0 Downloading mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB) Collecting pycodestyle<2.9.0,>=2.8.0 Downloading pycodestyle-2.8.0-py2.py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.1 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 kB 4.5 MB/s eta 0:00:00 Collecting typing-extensions>=3.7.4 Downloading typing_extensions-4.3.0-py3-none-any.whl (25 kB) Collecting mypy-extensions<0.5.0,>=0.4.3 Downloading mypy_extensions-0.4.3-py2.py3-none-any.whl (4.5 kB) Collecting toml Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting iniconfig Downloading iniconfig-1.1.1-py2.py3-none-any.whl (5.0 kB) Collecting py>=1.8.2 Downloading py-1.11.0-py2.py3-none-any.whl (98 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/98.7 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.7/98.7 kB 6.9 MB/s eta 0:00:00 Collecting packaging Downloading packaging-21.3-py3-none-any.whl (40 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/40.8 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.8/40.8 kB 2.6 MB/s eta 0:00:00 Collecting pluggy<2.0,>=0.12 Downloading pluggy-1.0.0-py2.py3-none-any.whl (13 kB) Collecting bleach Downloading bleach-5.0.1-py3-none-any.whl (160 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/160.9 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 160.9/160.9 kB 7.2 MB/s eta 0:00:00 Collecting nbclient<0.6.0,>=0.5.0 Downloading nbclient-0.5.13-py3-none-any.whl (70 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/70.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 70.6/70.6 kB 9.0 MB/s eta 0:00:00 Collecting jupyter-core Downloading jupyter_core-4.11.1-py3-none-any.whl (88 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/88.4 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 88.4/88.4 kB 8.9 MB/s eta 0:00:00 Collecting defusedxml Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB) Collecting pandocfilters>=1.4.1 Downloading pandocfilters-1.5.0-py2.py3-none-any.whl (8.7 kB) Collecting mistune<2,>=0.8.1 Downloading mistune-0.8.4-py2.py3-none-any.whl (16 kB) Collecting jupyterlab-pygments Downloading jupyterlab_pygments-0.2.2-py2.py3-none-any.whl (21 kB) Collecting testpath Downloading testpath-0.6.0-py3-none-any.whl (83 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/83.9 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.9/83.9 kB 8.4 MB/s eta 0:00:00 Collecting entrypoints>=0.2.2 Downloading entrypoints-0.4-py3-none-any.whl (5.3 kB) Collecting nbformat>=4.4 Downloading nbformat-5.4.0-py3-none-any.whl (73 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/73.3 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 73.3/73.3 kB 6.9 MB/s eta 0:00:00 Collecting pygments>=2.4.1 Downloading Pygments-2.12.0-py3-none-any.whl (1.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.1 MB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 0.7/1.1 MB 20.7 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 16.6 MB/s eta 0:00:00 Collecting traitlets>=5.0 Downloading traitlets-5.3.0-py3-none-any.whl (106 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/106.8 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 106.8/106.8 kB 10.0 MB/s eta 0:00:00 Collecting tzlocal>=1.2 Downloading tzlocal-4.2-py3-none-any.whl (19 kB) Collecting anyio<4,>=3.0.0 Downloading anyio-3.6.1-py3-none-any.whl (80 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/80.6 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 80.6/80.6 kB 5.3 MB/s eta 0:00:00 Collecting pycares>=4.0.0 Downloading pycares-4.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (292 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/292.3 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 292.3/292.3 kB 9.2 MB/s eta 0:00:00 Collecting pycparser Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/118.7 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 118.7/118.7 kB 9.7 MB/s eta 0:00:00 Collecting tomli Downloading tomli-2.0.1-py3-none-any.whl (12 kB) Collecting jupyter-client>=6.1.5 Downloading jupyter_client-7.3.4-py3-none-any.whl (132 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/132.1 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 132.1/132.1 kB 9.4 MB/s eta 0:00:00 Collecting nest-asyncio Downloading nest_asyncio-1.5.5-py3-none-any.whl (5.2 kB) Collecting fastjsonschema Downloading fastjsonschema-2.16.1-py3-none-any.whl (22 kB) Collecting PyYAML Downloading PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (661 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/661.8 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 655.4/661.8 kB 20.4 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 661.8/661.8 kB 16.2 MB/s eta 0:00:00 Collecting webencodings Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB) Collecting pyparsing!=3.0.5,>=2.0.2 Downloading pyparsing-3.0.9-py3-none-any.whl (98 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/98.3 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.3/98.3 kB 7.4 MB/s eta 0:00:00 Collecting sniffio>=1.1 Downloading sniffio-1.2.0-py3-none-any.whl (10 kB) Collecting pyzmq>=23.0 Downloading pyzmq-23.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.1 MB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 0.7/1.1 MB 20.8 MB/s eta 0:00:01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 16.6 MB/s eta 0:00:00 Collecting pytz-deprecation-shim Downloading pytz_deprecation_shim-0.1.0.post0-py2.py3-none-any.whl (15 kB) Collecting tzdata Downloading tzdata-2022.1-py2.py3-none-any.whl (339 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/339.5 kB ? eta -:--:-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 339.5/339.5 kB 12.7 MB/s eta 0:00:00 Using legacy 'setup.py install' for pandas-ta, since package 'wheel' is not installed. Using legacy 'setup.py install' for TA-Lib, since package 'wheel' is not installed. Using legacy 'setup.py install' for sdnotify, since package 'wheel' is not installed. Using legacy 'setup.py install' for docopt, since package 'wheel' is not installed. Building wheels for collected packages: py_find_1st Building wheel for py_find_1st (pyproject.toml) ... done Created wheel for py_find_1st: filename=py_find_1st-1.1.5-cp39-cp39-linux_x86_64.whl size=28633 sha256=c83ad0d69d799e6aae8f5bc4dff3ba9377ba3adcf8b33ee284f33832d2271312 Stored in directory: /home/jma/.cache/pip/wheels/bf/c1/49/5439f3dd8159a3d27336f734925c355fe86c73f231d5c4748a Successfully built py_find_1st Installing collected packages: webencodings, wcwidth, types-tabulate, types-requests, types-python-dateutil, types-filelock, types-cachetools, tabulate, sdnotify, pytz, mypy-extensions, mistune, mccabe, iniconfig, fastjsonschema, docopt, blosc, urllib3, tzdata, typing-extensions, traitlets, tornado, tomli, toml, threadpoolctl, testpath, tenacity, sniffio, six, pyzmq, PyYAML, python-utils, python-rapidjson, pyrsistent, pyparsing, pyjwt, pygments, pyflakes, pycparser, pycodestyle, py, psutil, prompt-toolkit, pluggy, pandocfilters, numpy, nest-asyncio, multidict, MarkupSafe, jupyterlab-pygments, joblib, isort, idna, h11, greenlet, frozenlist, filelock, entrypoints, defusedxml, coverage, colorama, click, charset-normalizer, certifi, cachetools, attrs, async-timeout, asgiref, aiofiles, yarl, uvicorn, TA-Lib, SQLAlchemy, scipy, requests, questionary, pytz-deprecation-shim, python-dateutil, pydantic, pyaml, py_find_1st, progressbar2, plotly, packaging, mypy, jupyter-core, jsonschema, jinja2, flake8, cffi, bleach, anyio, aiosignal, tzlocal, time-machine, starlette, scikit-learn, pytest, pycoingecko, pycares, pandas, numexpr, nbformat, jupyter-client, flake8-tidy-imports, cryptography, coveralls, arrow, aiohttp, technical, tables, scikit-optimize, pytest-random-order, pytest-mock, pytest-cov, pytest-asyncio, pandas-ta, nbclient, fastapi, APScheduler, aiodns, python-telegram-bot, nbconvert, ccxt Running setup.py install for sdnotify ... done Running setup.py install for docopt ... done Running setup.py install for TA-Lib ... error error: subprocess-exited-with-error Γ— Running setup.py install for TA-Lib did not run successfully. β”‚ exit code: 1 ╰─> [29 lines of output] /tmp/pip-install-sskdakn5/ta-lib_0935527bcaa74972a8862e936b07d0ac/setup.py:76: UserWarning: Cannot find ta-lib library, installation may fail. warnings.warn('Cannot find ta-lib library, installation may fail.') running install running build running build_py creating build creating build/lib.linux-x86_64-3.9 creating build/lib.linux-x86_64-3.9/talib copying talib/test_stream.py -> build/lib.linux-x86_64-3.9/talib copying talib/test_pandas.py -> build/lib.linux-x86_64-3.9/talib copying talib/test_func.py -> build/lib.linux-x86_64-3.9/talib copying talib/test_data.py -> build/lib.linux-x86_64-3.9/talib copying talib/test_abstract.py -> build/lib.linux-x86_64-3.9/talib copying talib/stream.py -> build/lib.linux-x86_64-3.9/talib copying talib/deprecated.py -> build/lib.linux-x86_64-3.9/talib copying talib/abstract.py -> build/lib.linux-x86_64-3.9/talib copying talib/__init__.py -> build/lib.linux-x86_64-3.9/talib warning: build_py: byte-compiling is disabled, skipping. running build_ext building 'talib._ta_lib' extension creating build/temp.linux-x86_64-3.9 creating build/temp.linux-x86_64-3.9/talib gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/include -I/usr/local/include -I/opt/include -I/opt/local/include -I/opt/homebrew/include -I/opt/homebrew/opt/ta-lib/include -I/home/jma/Documents/Freqtrade-MGM/.env/lib/python3.9/site-packages/numpy/core/include -I/home/jma/Documents/Freqtrade-MGM/.env/include -I/home/jma/.pyenv/versions/3.9.13/include/python3.9 -c talib/_ta_lib.c -o build/temp.linux-x86_64-3.9/talib/_ta_lib.o talib/_ta_lib.c:613:10: fatal error: ta-lib/ta_defs.h: No such file or directory 613 | #include "ta-lib/ta_defs.h" | ^~~~~~~~~~~~~~~~~~ compilation terminated. error: command '/usr/bin/gcc' failed with exit code 1 [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: legacy-install-failure Γ— Encountered error while trying to install package. ╰─> TA-Lib note: This is an issue with the package mentioned above, not pip. hint: See above for output from the failure. Failed installing dependencies INFO - πŸ‘‰ MGM-Hurry will now run the following command for you: . /home/jma/Documents/Freqtrade-MGM/.env/bin/activate; freqtrade install-ui /bin/sh: line 1: freqtrade: command not found INFO - βœ” Successfully installed FreqUI! βœ” Freqtrade setup completed! INFO - 🍺 Freqtrade has been installed. You can now proceed to install MoniGoMani. (Hint: mgm-hurry install_mgm) INFO - πŸ’¨ πŸ’¨ πŸ’¨ πŸ‘‰ Install MoniGoMani πŸ’¨ πŸ’¨ πŸ’¨ 🀷 No "mgm-config.json" file found. WARNING - 🀷 No "mgm-config.json" file found. βœ” πŸ‘‰ Clone MoniGoMani repository on the latest commit βœ” Copy & linking MoniGoMani installation files completed! πŸ‘‰ Copy MoniGoMani to the monigomani folder in the target directory and symbolic linking files INFO - πŸ‘‰ Installing/Updating MoniGoMani Python dependency packages INFO - πŸ‘‰ MGM-Hurry will now run the following command for you: pip3 install --requirement ./monigomani/requirements-mgm.txt Requirement already satisfied: art==5.4 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 2)) (5.4) Requirement already satisfied: cached-property==1.5.2 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 3)) (1.5.2) Requirement already satisfied: certifi==2022.6.15 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 4)) (2022.6.15) Collecting cffi==1.15.0 Downloading cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (444 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 444.3/444.3 kB 8.2 MB/s eta 0:00:00 Collecting charset-normalizer==2.0.12 Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) Requirement already satisfied: coloredlogs==15.0.1 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 7)) (15.0.1) Requirement already satisfied: cryptography==36.0.1 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 8)) (36.0.1) Requirement already satisfied: cycler==0.11.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 9)) (0.11.0) Requirement already satisfied: discord-webhook==0.14.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 10)) (0.14.0) Requirement already satisfied: distro==1.6.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 11)) (1.6.0) Requirement already satisfied: fire==0.4.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 12)) (0.4.0) Collecting fonttools==4.33.3 Downloading fonttools-4.33.3-py3-none-any.whl (930 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 930.9/930.9 kB 12.1 MB/s eta 0:00:00 Requirement already satisfied: gitdb==4.0.9 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 14)) (4.0.9) Requirement already satisfied: humanfriendly==10.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 15)) (10.0) Requirement already satisfied: idna==3.3 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 16)) (3.3) Requirement already satisfied: inquirerpy==0.3.3 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 17)) (0.3.3) Collecting kiwisolver==1.4.3 Downloading kiwisolver-1.4.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 11.3 MB/s eta 0:00:00 Requirement already satisfied: logger==1.4 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 19)) (1.4) Collecting lxml==4.9.0 Downloading lxml-4.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (7.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.0/7.0 MB 13.5 MB/s eta 0:00:00 Requirement already satisfied: matplotlib==3.5.2 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 21)) (3.5.2) Collecting multitasking==0.0.10 Downloading multitasking-0.0.10.tar.gz (8.2 kB) Preparing metadata (setup.py): started Preparing metadata (setup.py): finished with status 'done' Requirement already satisfied: numpy==1.22.3 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 23)) (1.22.3) Requirement already satisfied: packaging==21.3 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 24)) (21.3) Requirement already satisfied: pandas==1.4.1 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 25)) (1.4.1) Requirement already satisfied: pfzy==0.3.4 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 26)) (0.3.4) Collecting pillow==9.1.1 Downloading Pillow-9.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 14.1 MB/s eta 0:00:00 Requirement already satisfied: plotly==5.6.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 28)) (5.6.0) Requirement already satisfied: prompt-toolkit==3.0.28 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 29)) (3.0.28) Requirement already satisfied: pycparser==2.21 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 30)) (2.21) Collecting pygit2==1.9.2 Downloading pygit2-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 12.3 MB/s eta 0:00:00 Requirement already satisfied: pyparsing==3.0.9 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 32)) (3.0.9) Requirement already satisfied: python-dateutil==2.8.2 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 33)) (2.8.2) Requirement already satisfied: python-rapidjson==1.5 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 34)) (1.5) Requirement already satisfied: pytz==2022.1 in /home/jma/.local/svirtual environmenthare/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 35)) (2022.1) Requirement already satisfied: pyyaml==6.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 36)) (6.0) Requirement already satisfied: quantstats==0.0.50 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 37)) (0.0.50) Collecting requests==2.28.0 Downloading requests-2.28.0-py3-none-any.whl (62 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.8/62.8 kB 5.5 MB/s eta 0:00:00 Requirement already satisfied: scipy==1.8.1 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 39)) (1.8.1) Requirement already satisfied: seaborn==0.11.2 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 40)) (0.11.2) Requirement already satisfied: setuptools==58.3.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 41)) (58.3.0) Requirement already satisfied: six==1.16.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 42)) (1.16.0) Requirement already satisfied: smmap==5.0.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 43)) (5.0.0) Requirement already satisfied: tabulate==0.8.10 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 44)) (0.8.10) Requirement already satisfied: tenacity==8.0.1 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 45)) (8.0.1) Requirement already satisfied: termcolor==1.1.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 46)) (1.1.0) Collecting urllib3==1.26.9 Downloading urllib3-1.26.9-py2.py3-none-any.whl (138 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 139.0/139.0 kB 7.2 MB/s eta 0:00:00 Requirement already satisfied: wcwidth==0.2.5 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 48)) (0.2.5) Requirement already satisfied: yaspin==2.1.0 in /home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/lib/python3.9/site-packages (from -r ./monigomani/requirements-mgm.txt (line 49)) (2.1.0) Collecting yfinance==0.1.72 Downloading yfinance-0.1.72-py2.py3-none-any.whl (27 kB) Building wheels for collected packages: multitasking Building wheel for multitasking (setup.py): started Building wheel for multitasking (setup.py): finished with status 'done' Created wheel for multitasking: filename=multitasking-0.0.10-py3-none-any.whl size=8500 sha256=ee5fefca2537459afaae01d7f7053c010699c1a8a5614bd49b14e597c0f9edb9 Stored in directory: /home/jma/.cache/pip/wheels/f2/b5/2c/59ba95dcf854e542944c75fe3da584e4e3833b319735a0546c Successfully built multitasking Installing collected packages: multitasking, urllib3, pillow, lxml, kiwisolver, fonttools, charset-normalizer, cffi, requests, pygit2, yfinance Attempting uninstall: multitasking Found existing installation: multitasking 0.0.11 Uninstalling multitasking-0.0.11: Successfully uninstalled multitasking-0.0.11 Attempting uninstall: urllib3 Found existing installation: urllib3 1.26.11 Uninstalling urllib3-1.26.11: Successfully uninstalled urllib3-1.26.11 Attempting uninstall: pillow Found existing installation: Pillow 9.2.0 Uninstalling Pillow-9.2.0: Successfully uninstalled Pillow-9.2.0 Attempting uninstall: lxml Found existing installation: lxml 4.9.1 Uninstalling lxml-4.9.1: Successfully uninstalled lxml-4.9.1 Attempting uninstall: kiwisolver Found existing installation: kiwisolver 1.4.4 Uninstalling kiwisolver-1.4.4: Successfully uninstalled kiwisolver-1.4.4 Attempting uninstall: fonttools Found existing installation: fonttools 4.34.4 Uninstalling fonttools-4.34.4: Successfully uninstalled fonttools-4.34.4 Attempting uninstall: charset-normalizer Found existing installation: charset-normalizer 2.1.0 Uninstalling charset-normalizer-2.1.0: Successfully uninstalled charset-normalizer-2.1.0 Attempting uninstall: cffi Found existing installation: cffi 1.15.1 Uninstalling cffi-1.15.1: Successfully uninstalled cffi-1.15.1 Attempting uninstall: requests Found existing installation: requests 2.28.1 Uninstalling requests-2.28.1: Successfully uninstalled requests-2.28.1 Attempting uninstall: pygit2 Found existing installation: pygit2 1.10.0 Uninstalling pygit2-1.10.0: Successfully uninstalled pygit2-1.10.0 Attempting uninstall: yfinance Found existing installation: yfinance 0.1.74 Uninstalling yfinance-0.1.74: Successfully uninstalled yfinance-0.1.74 Successfully installed cffi-1.15.0 charset-normalizer-2.0.12 fonttools-4.33.3 kiwisolver-1.4.3 lxml-4.9.0 multitasking-0.0.10 pillow-9.1.1 pygit2-1.9.2 requests-2.28.0 urllib3-1.26.9 yfinance-0.1.72 INFO - βœ” Downloading & Installing MoniGoMani completed! INFO - πŸ‘‰ MoniGoMani config files prepared √ INFO - 🍺 MoniGoMani has been installed. You can now proceed to setup your instance. (Hint: mgm-hurry setup) INFO - πŸ’¨ πŸ’¨ πŸ’¨ πŸ‘‰ Setup πŸ’¨ πŸ’¨ πŸ’¨ INFO - πŸ€“ Let's answer some questions to make your life easier. WARNING - ⚠️ The target file "mgm-config.json" already exists. Is cool. WARNING - ⚠️ The target file "mgm-config-private.json" already exists. Is cool. INFO - πŸ‘‰ MoniGoMani config files prepared √ ? Please enter the default timerange you want to use: 20210501-20210616 ? Which HyperOpt Strategy do you want to use? MoniGoManiHyperStrategy ? Which HyperOpt Loss do you want to use? MGM_WeightedMultiParameterHyperOptLoss ? Which spaces do you want to HyperOpt? ['buy', 'sell'] ? Please enter the default stake currency you want to use: USDT ? Please enter the amount of epochs you want to HyperOpt: 1000 ? Do you want to also setup your exchange? No ? Please enter the username you want to use to share test results with the MoniGoMani community: MoniGoMani Community INFO - 🍺 Configuration data written to ".hurry" file ? Do you want to also setup your Telegram bot? No INFO - πŸ’¨ πŸ’¨ πŸ’¨ πŸ‘‰ Download Top Volume Static Pairlist πŸ’¨ πŸ’¨ πŸ’¨ WARNING - FreqtradeCli - installation_exists() failed. Freqtrade binary not found in /home/jma/Documents/Freqtrade-MGM/.env/bin/freqtrade. ERROR - 🀷 Whaaaa.. No Freqtrade installation found. Beats me... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ βš™οΈ Setting up shell alias... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You can now run MGM-hurry commands with: 'python3 -m pipenv run python3 ./mgm-hurry ...' only from inside: /home/jma/Documents/Freqtrade-MGM πŸ‘‰ Do you want to add a shell alias so you can run MGM-hurry commands more easily from all over your system as 'mgm-hurry ...'? (y/n) y touch: cannot touch '/home/jma/.config/fish/config.fish': No such file or directory πŸŽ‰ Shell aliases have been set! Please close & re-open your terminal for the aliases to become active! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ πŸŽ‰ You are all set! We hope you enjoy your ride. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [jma@MS7978 Desktop]$ mgm-hurry up _ _ __ ___ __ _ _ __ ___ | |__ _ _ _ __ _ __ _ _ | '_ ` _ \ / _` || '_ ` _ \ _____ | '_ \ | | | || '__|| '__|| | | | | | | | | || (_| || | | | | ||_____|| | | || |_| || | | | | |_| | |_| |_| |_| \__, ||_| |_| |_| |_| |_| \__,_||_| |_| \__, | |___/ |___/ WARNING - FreqtradeCli - installation_exists() failed. Freqtrade binary not found in /home/jma/Documents/Freqtrade-MGM/.env/bin/freqtrade. WARNING - 🀷 No Freqtrade installation found. Please run "mgm-hurry install_freqtrade" before attempting to go further! ERROR: Could not consume arg: $@ Usage: mgm-hurry available groups: freqtrade_cli | logger | monigomani_cli | monigomani_config available commands: backtest | cleanup | download_candle_data | download_static_pairlist | export_csv | export_results | hyperopt | hyperopt_show_epoch | hyperopt_show_results | importance_report | install_freqtrade | install_mgm | plot_profit | plot_stats | setup | start_trader | up | version available values: basedir For detailed information on this command, run: mgm-hurry --help [jma@MS7978 Desktop]$ [jma@MS7978 Desktop]$ mgm-hurry install_freqtrade _ _ __ ___ __ _ _ __ ___ | |__ _ _ _ __ _ __ _ _ | '_ ` _ \ / _` || '_ ` _ \ _____ | '_ \ | | | || '__|| '__|| | | | | | | | | || (_| || | | | | ||_____|| | | || |_| || | | | | |_| | |_| |_| |_| \__, ||_| |_| |_| |_| |_| \__,_||_| |_| \__, | |___/ |___/ WARNING - FreqtradeCli - installation_exists() failed. Freqtrade binary not found in /home/jma/Documents/Freqtrade-MGM/.env/bin/freqtrade. WARNING - 🀷 No Freqtrade installation found. Please run "mgm-hurry install_freqtrade" before attempting to go further! ERROR: Could not consume arg: $@ Usage: mgm-hurry available groups: freqtrade_cli | logger | monigomani_cli | monigomani_config available commands: backtest | cleanup | download_candle_data | download_static_pairlist | export_csv | export_results | hyperopt | hyperopt_show_epoch | hyperopt_show_results | importance_report | install_freqtrade | install_mgm | plot_profit | plot_stats | setup | start_trader | up | version available values: basedir For detailed information on this command, run: mgm-hurry --help [jma@MS7978 Desktop]$ ```
Rikj000 commented 2 years ago

Thank you for your full log report @Jmorzaez! :mechanical_arm: I think I've spotted the issue in below snippet of your log report:

INFO - πŸ’¨ πŸ’¨ πŸ’¨
       πŸ‘‰ Install Freqtrade
       πŸ’¨ πŸ’¨ πŸ’¨
πŸ‘‰  Clone Freqtrade repository and resetting to commit 4179a1a7971f9547fad16dd8ec6e252489a3e62d βœ” 
πŸ‘‰  Copy Freqtrade installation
πŸ‘‰  Run Freqtrade setup
INFO - πŸ‘‰ MGM-Hurry will now run the following command for you:
 export VIRTUAL_ENV_BAK=$VIRTUAL_ENV; unset VIRTUAL_ENV; expect /home/jma/Documents/Freqtrade-MGM/setup.exp; export VIRTUAL_ENV=$VIRTUAL_ENV_BAK; unset VIRTUAL_ENV_BAK;
spawn ./setup.sh --install
/home/jma/.local/share/virtualenvs/Freqtrade-MGM-NojPaa9S/bin/python3.9
using python3.9
----------------------------
Installing mandatory dependencies
----------------------------
This script does not support your OS.
If you have Python version 3.7 - 3.9, pip, virtualenv, ta-lib you can continue.

Conclusion

Work around

Fix

Re-add the TA-Lib dependency check to MGM's installer.sh, however, only for OSes which are not supported by Freqtrade's setup.sh

Jmorzaez commented 2 years ago

Hi Rik, I've installed TA-Lib manually and it worked like a charm. I did not relate it with the freqtrade install issue... :expressionless:

Curiously I had to remove the venv and run a fresh install because mgm-hurry install_freqtrade didn't work and did not return any output again. I would not consider it a problem either. All looks good now :call_me_hand:

Thank you for your detailed explanations and responses.

Let's tinker a bit... :joy:

Rikj000 commented 2 years ago

All looks good now πŸ€™

Thank you for your detailed explanations and responses.

Let's tinker a bit... πŸ˜‚

@Jmorzaez you're welcome, have fun with the MGM framework!

Also feel free to join the MGM Matrix Community or Discord Server (both are bridged with each-other),
for further discussion around MGM/Freqtrade/TA/crypto related things πŸ™‚