Giter VIP home page Giter VIP logo

rikj000 / monigomani Goto Github PK

View Code? Open in Web Editor NEW
998.0 65.0 153.0 265.32 MB

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.

Home Page: https://monigomani.io

License: GNU General Public License v3.0

Python 94.62% Shell 5.38%
freqtrade freqtrade-strategies freqtrade-ui python cryptocurrencies trading-bot trading-strategies weighted-signals hyperopt machine-learning

monigomani's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

monigomani's Issues

🐞 Change the way to import Master*Strategy

Apparently it's just mine problem with failed module imports, but MoniGoManiHyperStrategy can import Master from the same directory without using dot notation.

Before:

from user_data.strategies.MasterMoniGoManiHyperStrategy import MasterMoniGoManiHyperStrategy

After:

import sys
from pathlib import Path
sys.path.append(str(Path(__file__).parent))

from MasterMoniGoManiHyperStrategy import MasterMoniGoManiHyperStrategy

✨ `Multi-TimeFrame` usage + Automated zooming

The idea here is to:

  • Make the buy/sell signals more robust due to more confirmation over more different candles
  • Trade safer overall by doing more swing trades (Bigger candles give more certain predictions since they aren't so clouded by volatility)
  • Make more profit, by going more and more near scalping mode when the market goes sideways (by detecting smaller trends and doing smaller shorter trades for smaller profits)

How this would be implemented:

  • Use multiple candle data like we're doing now with TimeFrame-Zoom (TFZ), but even more:

    • 5m for original intra candle fluctuations during testing (purpose of TFZ)
    • Then for normal candle usage I was thinking about for example using:
      • 15m + 30m + 1h + 2h candles in a similar fashion as we combine candles in the dataframe now (so base timeframe will be 5m but we'll add the other data into it, this will make it rather heavy though), but being frugal in the amount of candles we'll use to not overload systems.
  • We'd use all that candle data to detect which candles we'd like to use:

    • Base is 2hr, if this has an upwards/downwards trend detected then we use the buy/sell signals for it (upwards/downwards is currently enabled in the config)
    • If we use the signals from the 2hr timeframe, we zoom in, check if there the same trend is also detected, if so, add the buy/sell signals (2 candle sizes now confirm that it's a good moment to buy/sell)
    • We continue doing this till we don't detect a matching trend anymore (ideally we'd zoom in all the way to 5m, then all candle sizes give indication that it's a good time to buy/sell)
  • If we detect sideways movement on 2hrs then we don't use that candle data for our buy/sell signals, but then:

    • We zoom in to 1hrs, to see if we can detect a trend here, if this is the case we start using the signals as buy/sell signals
    • We still continue zooming in if still no trend would have been found on the 1hrs

πŸ“ End Users neglecting documentation..

This has been the most re-occurring error I've seen since making MoniGoMani public!

First I spend tons of hours & hours of my precious time to write up some real good documentation.
Then these end-users just neglect all my hard work put into this documentation without reading it and start to waste even more of my time by bombarding me with questions..

Some of them even have the audacity of opening GitHub Issues for their ignorance towards reading documentations,
while these Issues are meant for well described bug reports that help me,
the developer in narrowing down the time needed to hunt for these bugs...

Please take your time to read all of the following documentation before asking questions:
πŸ‘‰ Official MoniGoMani Read the Docs Website

For questions you should not open GitHub Issues...
These can be posted in the #❔︱help channel of the Official MoniGoMani Discord Server
(But there goes the same rule, read before wasting other peoples time with noob questions).

  • ❌ No this strategy/framework is not an easy brainless copy/paste
    you should optimise your own version as described in the documentation.
  • βœ”οΈ Yes this framework should lead towards a profitable strategy setup in a day or 2 without the need of programming knowledge, but while using your head/common sense..
    (We're still under Pre-Release as of writing this though, 0 promises..)

✨ Static Averaged Volume PairList

The idea here is to:

Implement a method to pull a Static Averaged Volume PairList.
This to try and reach a more "realistic" pairlist to test upon when using a VolumePairList when dry/live-running.

How this would be implemented:

  • Calculated by summing up the top volume pairlists for each candle over the period of the timerange to HyperOpt upon.
  • Then dividing by the total amount of candles in the timerange, to create an averaged "volume" pairlist that can be used during BackTesting/HyperOpting.

🐞 Fix impossible too reach triggers needed

Impossible too reach results as following can be found by the framework now:

{
    "sell__downwards_trend_signal_triggers_needed": 10,  # value loaded from strategy
    "sell__downwards_trend_total_signal_needed": 176,
    "sell__downwards_trend_total_signal_needed_candles_lookback_window": 6,
    "sell_downwards_trend_ema_long_death_cross_weight": 0,  # value loaded from strategy
    "sell_downwards_trend_macd_weight": 100,  # value loaded from strategy
    "sell_downwards_trend_sma_long_death_cross_weight": 0,  # value loaded from strategy
    "sell_downwards_trend_adx_strong_down_weight": 92,
    "sell_downwards_trend_bollinger_bands_weight": 72,
    "sell_downwards_trend_ema_short_death_cross_weight": 57,
    "sell_downwards_trend_mfi_weight": 36,
    "sell_downwards_trend_rsi_weight": 73,
    "sell_downwards_trend_sma_short_death_cross_weight": 60,
    "sell_downwards_trend_vwap_cross_weight": 66
}

Here only 8 signal triggers can occur while 10 are needed, making selling during downwards trends basically disabled.
For this specific use-case it indeed would be debatable if the value found by HyperOpt is a good one or not.

But either way, when we set trading_during_trends for sell_trades_when_downwards to true, then HyperOpt should not be able to disable it behind our backs through abuse of the buy/sell__downwards/sideways/upwards_trend_signal_triggers_needed values!

🐞 Don't apply weak/strong signal overrides during BackTest/Dry/Live Modes after a 1st HyperOpt Run

Currently MGM will setup the parameter overrides for the weak/strong signals "for the 2nd HyperOpt Run" when you backtest/hyperopt/dry/live run after a 1st HyperOpt Run.

This is unwanted behavior for all modes besides HyperOpt mode since currently it prevents us from doing true BackTests upon 1st HyperOpt Results over timeranges different from the one used for our HyperOpt (which we can currently only see with hyperopt-show). It further also leads to more confusions for the users trying to understand which values are used because of what reason.

The proposed BugFix should solve all of the above though! πŸ™‚

❓ How to use it?

I tried to install this strategy into freqtrade instance but it gave errors:

freqtrade.exceptions.OperationalException: Impossible to load Strategy 'MoniGoManiHyperStrategy'. This class does not exist or contains Python code errors.

🐞 Fix bugs introduced by updating Freqtrade

I just updated my freqtrade image, and now I get this message when I try to hyperopt:

freqtrade - ERROR - This strategy requires 4800 candles to start. Binance only provides 1000 for 5m.

Any idea why?

✨ Implement export `.csv` as `mgm-hurry` feature

Implement @raftersvk's Export-MGM-result.py so it automatically outputs a .csv file (With all the proper parameters of a HO result) together with the current automated .log file export.

How it should be implemented:

  • A new command called mgm-hurry export_csv
  • Store the .csv file in the hyperopt_results folder (following the naming scheme/logic of the other automated result exports HyperOptResults-<output_file_name>.csv)
  • Which should also be executable through a new --export_csv modifier for the mgm-hurry hyperopt command (True by default)

🐞 ERROR [2/2] RUN apt-get update && apt-get -y install git &&

Hello
I had an error during installation, any hint please:

docker-compose pull
Pulling freqtrade ... done

docker-compose up --build
Building freqtrade
failed to get console mode for stdout: The handle is invalid.
[+] Building 1.0s (4/5)
=> [internal] load build definition from Dockerfile.technical 0.0s
[+] Building 1.1s (5/5) FINISHED
=> [internal] load build definition from Dockerfile.technical 0.0s
=> => transferring dockerfile: 42B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> [internal] load metadata for docker.io/freqtradeorg/freqtrade:develop 0.0s
=> [1/2] FROM docker.io/freqtradeorg/freqtrade:develop 0.1st && apt-get clean && pip install
=> ERROR [2/2] RUN apt-get update && apt-get -y install git && a 0.8s

[2/2] RUN apt-get update && apt-get -y install git && apt-get clean && pip install git+https://github.com/freqtrade/technical:
#5 0.224 Reading package lists...
#5 0.816 E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission denied)
#5 0.816 E: Unable to lock directory /var/lib/apt/lists/


ERROR: Service 'freqtrade' failed to build

❓ Always loosing

I'm running the bot with default parameters for one week so far in simulated mode. I'm only loosing all the time. The sell signals are not quite accurate. For example, two days ago the bot bought MATIC/BTC and achieved max 35% profit and did not sell at this point. Rather, it waited and sold when it was 12% only.

So, my question here is: do we need to optimize the bot before every run? and how?

✨ Configurable Sell ROI only in downwards/sideways/upwards trends

β˜‘οΈ Refactor to a roi_spaces section (with roi_table_step_size)
β˜‘οΈ In then new section add 3 new configurable true/false settings which will allow to fine-tune in which trends ROI is allowed to trigger:

{
    "roi_when_downwards": true,
    "roi_when_sideways": true,
    "roi_when_upwards": false
}

Linked to following Issues:

❓ json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes

I got an error that say json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes after running the hyper opting in go-to command

freqtrade hyperopt -s MoniGoManiHyperStrategy -c ./user_data/mgm-config.json -c ./user_data/mgm-config-private.json --hyperopt-loss WinRatioAndProfitRatioLoss --spaces all -e 800 --timerange 20210101-20210316 --enable-protections
215398928_1498409967183944_7992954481712727140_n

🐞 Fix impossible too reach and way too low total needed signals

Automatically weed out BackTests during the HyperOpt of which the total signals needed are unreachable.

Also implemented min_trend_signal_triggers_needed and search_threshold_trend_signal_triggers_needed.
With these HyperOptable settings we can assure that enough weighted signals to our & HyperOpts liking will trigger! πŸŽ‰

✨ Implement Strategy Controlled Stake Size

Implement dynamic stake sizes, new Freqtrade feature as in:

  • Invest more when the total buy signal reached is higher
  • Invest less when the total buy signal reached is lower but still enough to make the trade go trough
  • Perhaps the same for selling logic but I should checkout the new feature more first:

πŸ“ How to submit Issues, Pull Requests and Test Results

GitHub Etiquette

  • Issues: Meant for Bug Reports but also used as the Planned section for this project. If you don't think you can contribute back a bug-fix, then open a new issue if it hasn't been reported yet.
  • Pull Requests: If you think you can make some patch to fix the issue, fork the repo, and make a pull request (once you have pushed your patch back to your fork). When you'd like to send in a new feature/idea it's best to first discuss it with me on the Discord Server or through a PM there to avoid a rejected PR.
  • If you make a pull issue first, and then create a pull request, nothing stops you to reference the issue URL in your pull request comment, in order to avoid writing again the context of your patch.

Pull Requests

More PRs are very welcome, but if you send them in, please do 2 to 4 HyperOpts with a full 1000 epochs using the same random state:

  • One with the base code (Or 2 for a full process)
  • One with your alterations/changes (Or 2 for a full process)
    And then add the full HyperOpt results log output (Including the loading section, HyperOpt Results table and HyperOpt results) for each test you did + Freqtrade version you used + Some Dry Run results πŸ™‚

If you do it like that I will feel comfortable enough to merge it without having to spend hours HyperOpting to confirm if it works on my side, which will make us able to progress way faster! πŸš€

Test for improvements

The process is rather simple really on 1st HyperOpt Runs:

  • Copy/paste the Run 1 command
  • Check/Save the HyperOpt Run 1a Results
  • Reset MoniGoMani
  • Adjust a single:
    • Setting in mgm-config.json
    • Indicator/weighted signal
    • The spaces used
    • The protections enabled/disabled
    • ...
  • Copy/paste the Run 1 command again, use the same --random-state as you used in the previous test
  • Compare if the HyperOpt Run 1b Results are better then on your Run 1a attempt

See the How to test for improvements section on the MoniGoMani - Read the Docs website for more information!

✨ Sigmoid Buy/Sell Signals

Hyperbolic Tangent Sigmoid based Buy/Sell Signals have been reported to truly bring an improvement.

Version shared by @AdenBurns (should also be in his CustomLossFunction):

    def sigmoid(self, x):
        b = 1.0024567119327137
        return (-1 + b ** (2 * x))/(1 + b ** (2 * x))

The base of the exponent should bet a custom number slightly greater than 1, not e. Otherwise the sum of all signals grows too fast for the default e.

⚑️ ROI improvements

The MGM community has concluded that ROI in it's current state brings no improvements at all!
It reduced profits & increases drawdown in HyperOpt Results reported on Discord.

In it's current state I recommend leaving it completely off, however I believe we should not give up on it yet as our means to support the sell signals (that aim for selling off with profit) while reducing risk and drawdown!

Thus I propose following improvements done to ROI generation:

β˜‘οΈ #85: Make it configurable in which trends ROI is allowed to trigger.

β˜‘οΈ Generate the ROI on a slightly bigger candle size (perhaps configurable, perhaps auto-set) then the weighted buy/sell signals, because now ROI tends to seek to reap profits too fast, resulting in being the main sell reason, but also in decreasing the total profits made when it's enabled. Increasing the candle size for ROI only should lead to it decreasing over a longer timespan, which will hopefully balance things out.

β˜‘οΈ Introduce a configurable/hyperoptable gap (roi_delay) before ROI would start counting down. This would be another way of giving the sell signals more of a chance to act as the main reason for selling off profitable trades

πŸ“ Update Documentation for `v0.12.0`

Sections need updating and/or new things need to be added in The Official MoniGoMani Documentation:

✨ HyperOpt over 3 separate timeranges & individual spaces

The idea here is to:

HyperOpt over 3 separate timeranges (one representing each individual kind of trend, downwards/sideways/upwards, a timeframe that represents a corresponding trend should be picked). Experimental idea though, might not work at all.

How this would be implemented:

  • Make a version of MoniGoMani with 1 third of the parameters (basically no trend detection, but all the current signals etc remain)
  • HyperOpt that light version 3 times (once for upwards, once for downwards, once for sideways)
  • Combine those 3 hyperopt results (for each trend one) in the main MoniGoMani file again, and cross dem fingers 🀣

❓ WARNING - Could not import /home/johan/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py due to 'cannot import name 'CategoricalParameter' from 'freqtrade.strategy' (/home/name/freqtrade/freqtrade/strategy/__init__.py)'

Hello,

I wanted to try this strategy. I followed the instruction manuall and downloaded and copy the files to freqtrade but it came up with an error. Do you know what I need to change to fix this?

Error: WARNING - Could not import /home/johan/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py due to 'cannot import name 'CategoricalParameter' from 'freqtrade.strategy' (/home/johan/freqtrade/freqtrade/strategy/init.py)'

Thanks in advance!

🐞 Hyperopt is ignoring trailing_stop_positive_offset_max_value

The hyperopt is ignoring the "trailing_stop_positive_offset_max_value": 0.028 and opting for values higher than the configured max_value.

"trailing_stop_positive_min_value": 0.01,
"trailing_stop_positive_max_value": 0.021,
"trailing_stop_positive_offset_min_value": 0.011,
"trailing_stop_positive_offset_max_value": 0.028,

Trailing stop:

trailing_stop = True
trailing_stop_positive = 0.014
trailing_stop_positive_offset = 0.038
trailing_only_offset_is_reached = True

⚑️ Rename to `.example.json` config files and `.gitignore` original files

So mgm-config could be left alone with best recommended vanilla / unchanged settings and most of the tuning will be done via mgm-config-private.

####################################################################################################################
# START OF CONFIG NAMES SECTION #
####################################################################################################################
mgm_config_name = 'mgm-config.json'
mgm_config_hyperopt_name = 'mgm-config-hyperopt.json'
####################################################################################################################
# END OF CONFIG NAMES SECTION #
####################################################################################################################
# MGM trend names
mgm_trends = ['downwards', 'sideways', 'upwards']
# Initialize empty buy/sell_params dictionaries and initial (trailing)stoploss values
buy_params = {}
sell_params = {}
# Load the MoniGoMani settings
mgm_config_path = os.getcwd() + '/user_data/' + mgm_config_name
if os.path.isfile(mgm_config_path) is True:
# Load the 'mgm-config.json' file as an object and parse it as a dictionary
file_object = open(mgm_config_path, )
json_data = json.load(file_object)
mgm_config = json_data['monigomani_settings']
else:
sys.exit(f'MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file ({mgm_config_name}) can\'t '
f'be found at: {mgm_config_path}... Please provide the correct file and/or alter "mgm_config_name" in '
f'"MoniGoManiHyperStrategy.py"')

Most probably the logical and almost drop-in replacement way to implement is freqtrade.configuration.Configuration.from_files() .

class Configuration:
    """
    Class to read and init the bot configuration
    Reuse this class for the bot, backtesting, hyperopt and every script that required configuration
    """

❓ Different machines = different profit performance?

I'm getting different backtesting results for the exact same(zipped>unzipped) repository directory in two different machines.

One is a regular machine, i7 gen 10 with 17gb ram. The other one is a pi 4 with 2 gb of ram.

The scenario is that in my i7 machine I make a good amount of profit in the backtestings. It's not the case when I run the exact same command, with the exact same downloaded data and both running on docker with the latest image... I actually lose money in my pi 4 hahahahaha

So the question is: does it make any sense? Do I need to run the trained strategy in the same machine that was used for training?

❓ ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json...

I get this error after excatly going through the VERYQUICKSTART_FREQTRADE.md

It doesn't matter if i use the main branch or the dev branch :(

Attaching to Freqtrade-MoniGoMani
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,641 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,642 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,646 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,651 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,652 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,652 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,653 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,653 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,654 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,709 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,711 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,712 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,724 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,725 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:54:55,725 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,950 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,950 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,955 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,960 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,960 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,961 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,961 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,961 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:54:58,962 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:59,019 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:59,020 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:54:59,021 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:54:59,031 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:54:59,032 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:54:59,032 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,422 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,422 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,427 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,432 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,432 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,433 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,433 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,433 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,434 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,498 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,500 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,501 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,512 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,512 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:55:02,513 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,107 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,107 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,110 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,115 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,115 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,116 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,116 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,116 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,117 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,169 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,171 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,171 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,183 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,183 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:55:06,184 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,174 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,174 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,179 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,183 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,184 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,184 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,184 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,185 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,185 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,244 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,246 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,247 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,258 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,259 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:55:10,259 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,942 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,942 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,947 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,951 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,952 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,952 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,952 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,953 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:55:14,953 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:15,009 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:15,011 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:15,012 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:55:15,023 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:55:15,023 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:55:15,024 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,287 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,287 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,292 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,298 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,299 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,299 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,300 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,300 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,301 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,365 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,367 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,367 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,379 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,379 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:55:21,380 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,895 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,895 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,898 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,902 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,903 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,903 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,904 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,904 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,904 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,956 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,958 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,958 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,970 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,970 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:55:30,971 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,875 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,875 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,879 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,884 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,885 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,885 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,886 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,886 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,886 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,942 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,945 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,945 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,957 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,957 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:55:46,958 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,571 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,571 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,576 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,580 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,581 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,581 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,582 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,582 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,582 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,642 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,644 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,645 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,656 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,657 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:56:15,657 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,954 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,954 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,959 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,964 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,965 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,965 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,966 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,966 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:57:09,966 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:57:10,023 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:57:10,025 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:57:10,025 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:57:10,037 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:57:10,037 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:57:10,037 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,260 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,260 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,265 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,270 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,270 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,271 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,271 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,271 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,272 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,327 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,329 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,330 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,341 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,342 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 00:58:13,342 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The main MoniGoMani configuration file (mgm-config.json) is missing some settings. Please make sure that all MoniGoMani related settings are existing inside this file. 'weighted_signal_spaces' has been detected as missing from the file...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,635 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,635 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,639 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,645 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,645 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,646 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,646 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,647 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,647 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,719 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,722 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,722 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,738 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,739 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,739 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:29,833 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,791 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,791 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,795 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,804 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,805 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,805 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,806 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,807 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,807 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,863 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,865 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,866 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,878 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,878 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,879 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:33,948 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,689 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,689 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,694 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,700 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,700 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,701 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,701 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,702 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,702 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,760 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,761 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,762 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,774 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,774 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,775 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:37,843 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,919 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,919 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,923 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,931 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,932 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,932 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,932 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,933 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,934 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,992 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,994 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:41,994 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:01:42,006 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:01:42,007 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:01:42,007 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:42,076 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,251 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,251 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,255 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,260 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,261 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,261 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,261 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,263 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,263 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,318 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,320 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,321 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,334 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,334 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,335 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:01:46,395 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,639 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,639 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,643 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,650 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,651 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,651 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,652 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,653 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,654 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,710 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,713 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,713 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,726 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,726 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,727 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:05:52,801 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,276 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,276 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,280 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,285 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,286 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,286 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,287 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,287 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,287 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,342 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,344 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,345 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,355 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,356 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,356 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:05:56,424 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,269 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,269 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,274 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,279 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,279 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,280 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,280 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,281 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,281 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,349 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,351 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,352 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,364 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,365 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,366 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:00,434 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,377 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,377 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,381 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,388 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,389 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,389 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,389 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,390 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,391 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,455 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,457 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,458 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,470 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,471 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,471 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:04,540 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,932 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,932 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,937 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,942 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,942 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,943 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,943 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,944 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,944 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,996 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,998 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:08,999 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:06:09,010 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:06:09,011 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:06:09,011 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:09,085 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,840 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,840 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,844 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,849 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,850 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,850 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,850 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,851 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,852 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,906 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,909 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,909 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,921 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,922 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,922 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:14,991 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,783 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,783 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,788 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,795 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,797 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,797 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,798 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,798 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,799 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,863 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,865 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,866 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,878 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,879 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,880 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:21,950 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:06:31,988 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:31,988 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:31,992 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:31,997 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:06:31,998 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:06:31,998 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:31,999 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,000 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,000 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,055 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,058 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,058 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,071 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,072 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,072 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:32,154 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,810 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,810 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,814 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,820 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,820 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,821 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,821 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,822 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,823 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,877 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,879 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,879 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,891 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,892 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,892 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:06:48,961 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,265 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,265 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,269 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,275 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,276 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,276 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,277 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,277 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,278 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,334 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,336 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,337 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,349 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,350 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,350 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:07:18,425 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,352 - freqtrade.worker - INFO - Starting worker docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,352 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,358 - freqtrade.configuration.configuration - INFO - Using config: /freqtrade/user_data/mgm-config-private.json ...
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,365 - freqtrade.loggers - INFO - Verbosity set to 0
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,366 - freqtrade.configuration.configuration - INFO - Runmode set to dry_run.
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,367 - freqtrade.configuration.configuration - INFO - Parameter --db-url detected ...
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,367 - freqtrade.configuration.configuration - INFO - Dry run is enabled
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,368 - freqtrade.configuration.configuration - INFO - Using DB: "sqlite:////freqtrade/user_data/tradesv3-MoniGoMani_v0.12.0.sqlite"
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,369 - freqtrade.configuration.configuration - INFO - Using max_open_trades: -1 ...
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,424 - freqtrade.configuration.configuration - INFO - Using user-data directory: /freqtrade/user_data ...
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,426 - freqtrade.configuration.configuration - INFO - Using data directory: /freqtrade/user_data/data/binance ...
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,427 - freqtrade.configuration.check_exchange - INFO - Checking exchange...
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,439 - freqtrade.configuration.check_exchange - INFO - Exchange "binance" is officially supported by the Freqtrade development team.
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,439 - freqtrade.configuration.configuration - INFO - Using pairlist from configuration.
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,440 - freqtrade.freqtradebot - INFO - Starting freqtrade docker-be6d6b7d
Freqtrade-MoniGoMani | 2021-06-07 01:08:14,509 - freqtrade.resolvers.iresolver - INFO - Using resolved strategy MoniGoManiHyperStrategy from '/freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py'...
Freqtrade-MoniGoMani | MoniGoManiHyperStrategy - ERROR - The MoniGoMani HyperOpt Results configuration file (mgm-config-hyperopt.json) can't be found at: /freqtrade/user_data/mgm-config-hyperopt.json... Please Optimize your MoniGoMani before Dry/Live running! Once optimized provide the correct file and/or alter "mgm_config_hyperopt_name" in "MoniGoManiHyperStrategy.py"

✨ Total Market Cap Indicator

The idea here is to:

Add a Crypto Total Market Cap like column to the dataframe.
This can be used as a rather stable representation of how the global crypto market is doing.

How this would be implemented:

  • Add a new total_pair_close column to the dataframe
  • Sum up the close price for all pairs in the StaticPairList, for all of the rows of the dataframe, filling up the total_pair_close row
  • Once donce summing up divide the entries in the total_pair_close column with the amount of pairs in the StaticPairList
  • This can then further be implemented as an indicator

⚑️ Decrease HyperOpt time needed

No programming

Due to the large amount of checks/parameters in MGM it's grown to take a long time to HyperOpt.
The usual StaticVolumePairList of 15 + 1000 epoch + --spaces all HyperOpts we've been doing took around 10hrs for a run on my machine!

After seeing test results from @3ylo here: #51
And reading about other users experiences on Discord, I decided to change our default way of HyperOpting.

We concluded that using only a small StaticVolumePairList of 6 still gives a similar HyperOpt configuration!
However the plan is to still run with a larger VolumePairList of 60 (Smaller then 100 in an attempt to filter out more shit-coins)
Because that is our plan I believe it's also a good idea to do our backtests after HyperOpting upon a StaticVolumePairList of 60

Further we decided to start using 800 epochs, which should cause less overfitted / exploited results and also decrease the HyperOpting time needed some more.

So far my HyperOpting time needed already went back down to 1 - 1.5hrs for a run! πŸŽ‰

Programming

If one of the global overrides in trading_during_trends is set to false then we should be able to safely exclude the corresponding parameters from being HyperOpted which should reduce the time needed some further!

πŸ“ Improve upon the current `How-to-optimize-MoniGoMani` process

Way 1

  1. Disable protections [unclogger, stoploss, trailing] @ mgm-config.json
  2. Whitelist 6 pairs @ mgm-config.json (for faster hyperopting)
  3. HyperOpt --spaces buy sell -e 800 or so
  4. Apply HyperOpt Run 1 to mgm-config-hyperopt.json
  5. ? Remove sell__unclogger* from mgm-config-hyperopt.json ?
  6. Rinse and repeat HyperOpt for --spaces roi / stoploss / trailing (? with --hyperopt-loss UncloggedWinRatioAndProfitRatioLoss ?) and Apply HyperOpt Run 2 (? consequently removing unclogger settings ?)
  7. HyperOpt --spaces sell with unclogger enabled and Apply Run 2.
  8. 🀯🀯🀯🀯

Way 2

  1. Follow 1-5 from Way 1
  2. Enable protections [unclogger, stoploss, trailing] @ mgm-config.json
  3. Hyperopt without --spaces (equal to --spaces all) and Apply HyperOpt Run 2

Did I miss or screw something?

✨ Implement `MGM_WeightedMultiParameterHyperOptLoss`

issue: Don't optimize Unclogger to try and make profits
Unclogger is being hyperopted to make profit while it's purpose is to quickly toss out losing trades

Probably an update to the custom hyperoptloss might be the solution here? Also make sure to set "sell_profit_only": false

⚑️ Make signals only trigger once in lookback windows

The trend_total_signal_needed_candles_lookback_window_value's are based on an idea out of the EmperorBTC Trading Manual.
EmperorBTC

As you can see in the picture a great buy signal was the result of 6 indicators firing rapidly after one another.
To more represent this idea I'd like to move the rolling checks currently done on the total signals, to the individual weighted signals.
Since this should be a more valid implementation of the EmperorBTC idea.

πŸ“ Other & Better indicators!

MoniGoMani has been designed so signals can easily be inserted & swapped out through the Weighted Signal Interface! πŸŽ‰

After you learned how to use the Weighted Signal Interface, then check out these +200 Easy to implement Indicators for toying with it:

But feel free to look for other means of implementing indicators too.

Then use the Total-Overall-Signal-Importance-Calculator to find out which signals do best!

If you can find improvements with a 1000 epoch comparability test done on the same random state, then feel free to send your findings in as a Pull Request or report them on the Discord Server so we can improve together!
(Be sure to include both 1000 epoch best result tables so we can see the improvements found) πŸš€

MoniGoManiLogo1280x640

❓ Getting exception while running through Docker

I was trying to run the bot using the quickstart guide via docker image. I got the following exception, please let me know how to resolve it ?

INFO - Starting freqtrade docker-0af9bcef Freqtrade-MoniGoMani | 2021-06-17 00:04:58,961 - freqtrade.resolvers.iresolver - WARNING - Could not import /freqtrade/user_data/strategies/MoniGoManiHyperStrategy.py due to 'No module named 'freqtrade.state'' Freqtrade-MoniGoMani | 2021-06-17 00:04:58,961 - freqtrade.commands.trade_commands - ERROR - Impossible to load Strategy 'MoniGoManiHyperStrategy'. This class does not exist or contains Python code errors. Freqtrade-MoniGoMani | 2021-06-17 00:04:58,961 - freqtrade.commands.trade_commands - ERROR - Fatal exception! Freqtrade-MoniGoMani | Traceback (most recent call last): Freqtrade-MoniGoMani | File "/freqtrade/freqtrade/commands/trade_commands.py", line 18, in start_trading Freqtrade-MoniGoMani | worker = Worker(args) Freqtrade-MoniGoMani | File "/freqtrade/freqtrade/worker.py", line 35, in __init__ Freqtrade-MoniGoMani | self._init(False) Freqtrade-MoniGoMani | File "/freqtrade/freqtrade/worker.py", line 52, in _init Freqtrade-MoniGoMani | self.freqtrade = FreqtradeBot(self._config) Freqtrade-MoniGoMani | File "/freqtrade/freqtrade/freqtradebot.py", line 60, in __init__ Freqtrade-MoniGoMani | self.strategy: IStrategy = StrategyResolver.load_strategy(self.config) Freqtrade-MoniGoMani | File "/freqtrade/freqtrade/resolvers/strategy_resolver.py", line 44, in load_strategy Freqtrade-MoniGoMani | strategy: IStrategy = StrategyResolver._load_strategy( Freqtrade-MoniGoMani | File "/freqtrade/freqtrade/resolvers/strategy_resolver.py", line 205, in _load_strategy Freqtrade-MoniGoMani | raise OperationalException( Freqtrade-MoniGoMani | freqtrade.exceptions.OperationalException: Impossible to load Strategy 'MoniGoManiHyperStrategy'. This class does not exist or contains Python code errors.

✨ Implement `mgm-hurry`

Implement a mgm-manager, which will:

  • Simplify and shorten the usage of the go-to commands + remove the requirement to copy/paste them
  • Possibly automate more of the MGM optimization process by queuing HyperOpts after eachother (This will only be required if we find a new HyperOpt process that requires this, looking at #51 and #47 for this)

I'm planning to create the mgm-manager out of Hurry and Tool Belt as the base.
Already want to thank @denvers and @rvasilev for their great work on both their pending PRs, they will definitely be used!
But I hope you guys understand that I want to wrap up the last issues from v0.12.0 first so we can finally release the thing! πŸš€

❓ Build ema 200

New to this but as I understood so far is that: in order for ema 200 indicator to populate one should wait more than 8 days.
My question is if there is a way to populate this from historical data?

🐞 Fix HyperOpt Results not reproducing

Since recenty HyperOpt results achieved with identical setups and identical random states don't reproduce identical results anymore.
Which definitely is not normal!

So far it's still unsure what causes this, however following commits have been found suspicious;
unknown

I'm currently testing without -> list appended to def informative_pairs(self): in MoniGoManiHyperStrategy.py (Which aligns again with Freqtrade's sample_strategy.py)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.