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#1777 from freqtrade/new_release
Version to 0.18.5
- Loading branch information
Showing
93 changed files
with
4,638 additions
and
2,634 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 |
---|---|---|
|
@@ -81,6 +81,7 @@ target/ | |
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
*.ipynb | ||
|
||
# pyenv | ||
.python-version | ||
|
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,40 @@ | ||
FROM balenalib/raspberrypi3-debian:stretch | ||
|
||
RUN [ "cross-build-start" ] | ||
|
||
RUN apt-get update \ | ||
&& apt-get -y install wget curl build-essential libssl-dev libffi-dev \ | ||
&& apt-get clean | ||
|
||
# Prepare environment | ||
RUN mkdir /freqtrade | ||
WORKDIR /freqtrade | ||
|
||
# Install TA-lib | ||
COPY build_helpers/ta-lib-0.4.0-src.tar.gz /freqtrade/ | ||
RUN tar -xzf /freqtrade/ta-lib-0.4.0-src.tar.gz \ | ||
&& cd /freqtrade/ta-lib/ \ | ||
&& ./configure \ | ||
&& make \ | ||
&& make install \ | ||
&& rm /freqtrade/ta-lib-0.4.0-src.tar.gz | ||
|
||
ENV LD_LIBRARY_PATH /usr/local/lib | ||
|
||
# Install berryconda | ||
RUN wget https://github.com/jjhelmus/berryconda/releases/download/v2.0.0/Berryconda3-2.0.0-Linux-armv7l.sh \ | ||
&& bash ./Berryconda3-2.0.0-Linux-armv7l.sh -b \ | ||
&& rm Berryconda3-2.0.0-Linux-armv7l.sh | ||
|
||
# Install dependencies | ||
COPY requirements-pi.txt /freqtrade/ | ||
RUN ~/berryconda3/bin/conda install -y numpy pandas scipy \ | ||
&& ~/berryconda3/bin/pip install -r requirements-pi.txt --no-cache-dir | ||
|
||
# Install and execute | ||
COPY . /freqtrade/ | ||
RUN ~/berryconda3/bin/pip install -e . --no-cache-dir | ||
|
||
RUN [ "cross-build-end" ] | ||
|
||
ENTRYPOINT ["/root/berryconda3/bin/python","./freqtrade/main.py"] |
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
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,71 @@ | ||
{ | ||
"max_open_trades": 5, | ||
"stake_currency": "EUR", | ||
"stake_amount": 10, | ||
"fiat_display_currency": "EUR", | ||
"ticker_interval" : "5m", | ||
"dry_run": true, | ||
"db_url": "sqlite:///tradesv3.dryrun.sqlite", | ||
"trailing_stop": false, | ||
"unfilledtimeout": { | ||
"buy": 10, | ||
"sell": 30 | ||
}, | ||
"bid_strategy": { | ||
"ask_last_balance": 0.0, | ||
"use_order_book": false, | ||
"order_book_top": 1, | ||
"check_depth_of_market": { | ||
"enabled": false, | ||
"bids_to_ask_delta": 1 | ||
} | ||
}, | ||
"ask_strategy":{ | ||
"use_order_book": false, | ||
"order_book_min": 1, | ||
"order_book_max": 9 | ||
}, | ||
"exchange": { | ||
"name": "kraken", | ||
"key": "", | ||
"secret": "", | ||
"ccxt_config": {"enableRateLimit": true}, | ||
"ccxt_async_config": { | ||
"enableRateLimit": true, | ||
"rateLimit": 1000 | ||
}, | ||
"pair_whitelist": [ | ||
"ETH/EUR", | ||
"BTC/EUR", | ||
"BCH/EUR" | ||
], | ||
"pair_blacklist": [ | ||
|
||
] | ||
}, | ||
"edge": { | ||
"enabled": false, | ||
"process_throttle_secs": 3600, | ||
"calculate_since_number_of_days": 7, | ||
"capital_available_percentage": 0.5, | ||
"allowed_risk": 0.01, | ||
"stoploss_range_min": -0.01, | ||
"stoploss_range_max": -0.1, | ||
"stoploss_range_step": -0.01, | ||
"minimum_winrate": 0.60, | ||
"minimum_expectancy": 0.20, | ||
"min_trade_number": 10, | ||
"max_trade_duration_minute": 1440, | ||
"remove_pumps": false | ||
}, | ||
"telegram": { | ||
"enabled": false, | ||
"token": "", | ||
"chat_id": "" | ||
}, | ||
"initial_state": "running", | ||
"forcebuy_enable": false, | ||
"internals": { | ||
"process_throttle_secs": 5 | ||
} | ||
} |
Oops, something went wrong.