From 43e77e1fee0cc24fe459ae0e2efc5d5126cc0dd7 Mon Sep 17 00:00:00 2001 From: MoonGem <34537029+MoonGem@users.noreply.github.com> Date: Sun, 25 Mar 2018 04:49:18 -0500 Subject: [PATCH] Update and rename random_strategy.py to defauult_random_strategy.py --- .../{random_strategy.py => defauult_random_strategy.py} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename user_data/strategies/{random_strategy.py => defauult_random_strategy.py} (99%) diff --git a/user_data/strategies/random_strategy.py b/user_data/strategies/defauult_random_strategy.py similarity index 99% rename from user_data/strategies/random_strategy.py rename to user_data/strategies/defauult_random_strategy.py index 1b2a1efff..358288b2f 100644 --- a/user_data/strategies/random_strategy.py +++ b/user_data/strategies/defauult_random_strategy.py @@ -15,7 +15,7 @@ import numpy # noqa import random # Update this variable if you change the class name -class_name = 'RandomStrategy' +class_name = 'DefaultStrategy' # This class is a sample. Feel free to customize it. @@ -56,7 +56,7 @@ def Select(): -class RandomStrategy(IStrategy): +class DefaultStrategy(IStrategy): """ This is a test strategy to inspire you. More information in https://github.com/gcarq/freqtrade/blob/develop/docs/bot-optimization.md