From 02ad056c90ece078992d9a0b3a230be21400380c Mon Sep 17 00:00:00 2001 From: Lorenzo Tucci Date: Mon, 26 Apr 2021 11:58:39 +0200 Subject: [PATCH] adding VET and changing name of cake strategy --- USDT/CAKE_1.py | 2 +- USDT/CAKE_2.py | 2 +- USDT/VET.md | 5 +++++ USDT/{VET_Feb2021.py => VET_1.py} | 20 +++++++++----------- 4 files changed, 16 insertions(+), 13 deletions(-) create mode 100644 USDT/VET.md rename USDT/{VET_Feb2021.py => VET_1.py} (97%) diff --git a/USDT/CAKE_1.py b/USDT/CAKE_1.py index 702c30f..a6f3b6c 100644 --- a/USDT/CAKE_1.py +++ b/USDT/CAKE_1.py @@ -13,7 +13,7 @@ import talib.abstract as ta import freqtrade.vendor.qtpylib.indicators as qtpylib -class BestProfitLowBudget(IStrategy): +class CAKE_1(IStrategy): """ This is a strategy template to get you started. More information in https://github.com/freqtrade/freqtrade/blob/develop/docs/bot-optimization.md diff --git a/USDT/CAKE_2.py b/USDT/CAKE_2.py index 8e7cc5b..aec6eeb 100644 --- a/USDT/CAKE_2.py +++ b/USDT/CAKE_2.py @@ -13,7 +13,7 @@ import talib.abstract as ta import freqtrade.vendor.qtpylib.indicators as qtpylib -class BestProfitLowBudget(IStrategy): +class CAKE_2(IStrategy): """ This is a strategy template to get you started. More information in https://github.com/freqtrade/freqtrade/blob/develop/docs/bot-optimization.md diff --git a/USDT/VET.md b/USDT/VET.md new file mode 100644 index 0000000..4dac87c --- /dev/null +++ b/USDT/VET.md @@ -0,0 +1,5 @@ +### VET/USDT + +| File | Start date | End date | Tot. Profit | Avg. Profit | Objective | +| ---- | ---------- | -------- | ----------- | ----------- | --------- | +| [VET_1](USDT/VET_1.py) | 2021-02-15 06:00:00 | 2021-04-26 09:55:00 | 230.33% | 1.18% | -14.7 | diff --git a/USDT/VET_Feb2021.py b/USDT/VET_1.py similarity index 97% rename from USDT/VET_Feb2021.py rename to USDT/VET_1.py index aeb9c47..77c7af7 100644 --- a/USDT/VET_Feb2021.py +++ b/USDT/VET_1.py @@ -13,7 +13,7 @@ import talib.abstract as ta import freqtrade.vendor.qtpylib.indicators as qtpylib -class VET_Feb2021(IStrategy): +class VET_1(IStrategy): """ This is a strategy template to get you started. More information in https://github.com/freqtrade/freqtrade/blob/develop/docs/bot-optimization.md @@ -36,15 +36,15 @@ class VET_Feb2021(IStrategy): # Minimal ROI designed for the strategy. # This attribute will be overridden if the config file contains "minimal_roi". minimal_roi = { - "176": 0, - "62": 0.01208, - "21": 0.02821, - "0": 0.07683 + "155": 0, + "90": 0.02968, + "32": 0.09639, + "0": 0.27905 } # Optimal stoploss designed for the strategy. # This attribute will be overridden if the config file contains "stoploss". - stoploss = -0.34245 + stoploss = -0.22321 # Trailing stoploss trailing_stop = False @@ -339,8 +339,7 @@ class VET_Feb2021(IStrategy): """ dataframe.loc[ ( - (dataframe['fastd'] < 23) & - (dataframe['adx'] > 20) & + (dataframe['fastd'] < 44) & (dataframe['close'] < dataframe['bb_lowerband']) #(qtpylib.crossed_above(dataframe['rsi'], 30)) # Signal: RSI crosses above 30 #(dataframe['tema'] <= dataframe['bb_middleband']) & # Guard: tema below BB middle @@ -360,9 +359,8 @@ class VET_Feb2021(IStrategy): """ dataframe.loc[ ( - (dataframe['fastd'] > 96) & - (dataframe['mfi'] > 85) & - (dataframe['close'] > dataframe['bb_upperband']) + (dataframe['fastd'] > 75) & + (qtpylib.crossed_above(dataframe['sar'], dataframe['close'])) #(qtpylib.crossed_above(dataframe['rsi'], 70)) # Signal: RSI crosses above 70 #(dataframe['tema'] > dataframe['bb_middleband']) & # Guard: tema above BB middle #(dataframe['tema'] < dataframe['tema'].shift(1)) & # Guard: tema is falling