forked from freqtrade/freqtrade
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request freqtrade#1438 from freqtrade/release_1804
Release last version for 2018
- Loading branch information
Showing
103 changed files
with
7,103 additions
and
2,207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,32 @@ | ||
# autogenerated pyup.io config file | ||
# autogenerated pyup.io config file | ||
# see https://pyup.io/docs/configuration/ for all available options | ||
|
||
schedule: every day | ||
# configure updates globally | ||
# default: all | ||
# allowed: all, insecure, False | ||
update: all | ||
|
||
# configure dependency pinning globally | ||
# default: True | ||
# allowed: True, False | ||
pin: True | ||
|
||
schedule: "every day" | ||
|
||
|
||
search: False | ||
# Specify requirement files by hand, default is empty | ||
# default: empty | ||
# allowed: list | ||
requirements: | ||
- requirements.txt | ||
- requirements-dev.txt | ||
|
||
|
||
# configure the branch prefix the bot is using | ||
# default: pyup- | ||
branch_prefix: pyup/ | ||
|
||
# allow to close stale PRs | ||
# default: True | ||
close_prs: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM freqtradeorg/freqtrade:develop | ||
|
||
# Install dependencies | ||
COPY requirements-dev.txt /freqtrade/ | ||
RUN pip install numpy --no-cache-dir \ | ||
&& pip install -r requirements-dev.txt --no-cache-dir | ||
|
||
# Empty the ENTRYPOINT to allow all commands | ||
ENTRYPOINT [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM freqtradeorg/freqtrade:develop | ||
|
||
RUN apt-get update \ | ||
&& apt-get -y install git \ | ||
&& apt-get clean \ | ||
&& pip install git+https://github.com/berlinguyinca/technical |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
if [ ! -f "ta-lib/CHANGELOG.TXT" ]; then | ||
tar zxvf ta-lib-0.4.0-src.tar.gz | ||
cd ta-lib \ | ||
&& sed -i.bak "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h \ | ||
&& ./configure \ | ||
&& make \ | ||
&& which sudo && sudo make install || make install \ | ||
&& cd .. | ||
else | ||
echo "TA-lib already installed, skipping download and build." | ||
cd ta-lib && sudo make install && cd .. | ||
|
||
fi |
Oops, something went wrong.