Wordcloud
Strategy: ClucHAnix_3
Downloaded: 20220616
Stoploss: -0.99
1mSpotv3UnbiasedLink


Not Enough Data to display!

Average Overall
BuysAvgprofTotProfWin%DD%Time
140.450.96732136.8
SharpeSortinoCalmar
1.221.029.26
Prof.FactorExpectancyCagr
0.1700
Trades/DayRejected Signals
0.6424.5
Ninja Score: 70
The ClucHAnix strategy is a trading strategy implemented as a class that inherits from the IStrategy interface. Here is a brief description of what the strategy does: In the populate_indicators method, various indicators are calculated and added to the input dataframe, including Heikin-Ashi candlestick values, Bollinger Bands, EMA (Exponential Moving Average), ROCR (Rate of Change Ratio), RSI (Relative Strength Index), and Fisher Transform. Additional informative data for a different timeframe is fetched using self.dp.get_pair_dataframe, and Heikin-Ashi values and ROCR indicator are calculated for this informative data.

The informative data is merged with the original dataframe.

The populate_entry_trend method populates the enter_long column in the dataframe based on certain conditions.

These conditions involve comparisons between various columns and user-defined parameters (self.rocr_1h.value, self.bbdelta_close.value, self.closedelta_close.value, self.bbdelta_tail.value, self.close_bblower.value). The populate_exit_trend method populates the exit_long column in the dataframe based on specific conditions, including comparisons between columns and user-defined parameters (self.sell_fisher.value, self.sell_bbmiddle_close.value). The proposed_leverage method returns the value of self.leverage_num.value. Overall, the ClucHAnix strategy calculates various indicators, merges informative data, and determines entry and exit points for trading based on defined conditions. It also provides a leverage value.

startup_candle_count : 168
ema_slow: 0.010%
rsi: -0.035%
fisher: -0.148%
Traceback (most recent call last): File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connection.py", line 198, in _new_conn sock = connection.create_connection( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/util/connection.py", line 60, in create_connection for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM): ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/socket.py", line 962, in getaddrinfo for res in _socket.getaddrinfo(host, port, family, type, proto, flags): ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ socket.gaierror: [Errno -2] Name or service not known The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connectionpool.py", line 793, in urlopen response = self._make_request( ^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connectionpool.py", line 491, in _make_request raise new_e File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connectionpool.py", line 467, in _make_request self._validate_conn(conn) File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connectionpool.py", line 1099, in _validate_conn conn.connect() File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connection.py", line 616, in connect self.sock = sock = self._new_conn() ^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connection.py", line 205, in _new_conn raise NameResolutionError(self.host, self, e) from e urllib3.exceptions.NameResolutionError: : Failed to resolve 'dapi.binance.com' ([Errno -2] Name or service not known) The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/home/ftuser/.local/lib/python3.11/site-packages/requests/adapters.py", line 486, in send resp = conn.urlopen( ^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/connectionpool.py", line 847, in urlopen retries = retries.increment( ^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/urllib3/util/retry.py", line 515, in increment raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='dapi.binance.com', port=443): Max retries exceeded with url: /dapi/v1/exchangeInfo (Caused by NameResolutionError(": Failed to resolve 'dapi.binance.com' ([Errno -2] Name or service not known)")) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/ftuser/.local/lib/python3.11/site-packages/ccxt/base/exchange.py", line 598, in fetch response = self.session.request( ^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/requests/sessions.py", line 589, in request resp = self.send(prep, **send_kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/requests/sessions.py", line 703, in send r = adapter.send(request, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/requests/adapters.py", line 519, in send raise ConnectionError(e, request=request) requests.exceptions.ConnectionError: HTTPSConnectionPool(host='dapi.binance.com', port=443): Max retries exceeded with url: /dapi/v1/exchangeInfo (Caused by NameResolutionError(": Failed to resolve 'dapi.binance.com' ([Errno -2] Name or service not known)")) The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/freqtrade/freqtrade/exchange/exchange.py", line 486, in _load_markets self._markets = self._api.load_markets(params={}) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/ccxt/base/exchange.py", line 1474, in load_markets markets = self.fetch_markets(params) ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/ccxt/binance.py", line 2738, in fetch_markets promisesRaw.append(self.dapiPublicGetExchangeInfo(params)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/ccxt/base/types.py", line 34, in unbound_method return _self.request(self.path, self.api, self.method, params, config=self.config) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/ccxt/binance.py", line 10089, in request response = self.fetch2(path, api, method, params, headers, body, config) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/ccxt/base/exchange.py", line 3523, in fetch2 return self.fetch(request['url'], request['method'], request['headers'], request['body']) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ftuser/.local/lib/python3.11/site-packages/ccxt/base/exchange.py", line 651, in fetch raise NetworkError(details) from e ccxt.base.errors.NetworkError: binance GET https://dapi.binance.com/dapi/v1/exchangeInfo
stoploss: -0.99
timeframe: 1m
hash(sha256): 275851be9b775cf144aebef6135269b9d77e1042c45275d712b7c0a9c28222aa
indicators:
rocr_1h ha_low close tail bb_lowerband
bbdelta volume closedelta rocr open
ema_fast volume_mean_slow ha_open fisher high
mid ha_close ha_high lower bb_middleband
rsi ema_slow low

Similar Strategies: (based on used indicators)

Strategy: BC_Redmoon, Similarity Score: 95.83%
Strategy: CDO, Similarity Score: 95.83%
Strategy: CDOv2, Similarity Score: 95.83%
Strategy: CDOv2b, Similarity Score: 95.83%
Strategy: CE01, Similarity Score: 95.83%
Strategy: ClucHAnix13X, Similarity Score: 95.83%
Strategy: ClucHAnixE01VEOffsets, Similarity Score: 95.83%
Strategy: ClucHAnixHV270, Similarity Score: 95.83%
Strategy: ClucHAnixV1, Similarity Score: 95.83%
Strategy: ClucHAnixV1_3, Similarity Score: 95.83%
Strategy: ClucHAnixV2_0, Similarity Score: 95.83%
Strategy: ClucHAnix_0, Similarity Score: 95.83%
Strategy: ClucHAnix_11, Similarity Score: 95.83%
Strategy: ClucHAnix_231, Similarity Score: 95.83%
Strategy: ClucHAnix_5M_E0V1E_DYNAMIC_TB, Similarity Score: 95.83%
Strategy: ClucHAnix_5gh, Similarity Score: 95.83%
Strategy: ClucHAnix_5m, Similarity Score: 95.83%
Strategy: ClucHAnix_5m1, Similarity Score: 95.83%
Strategy: ClucHAnix_5mTB1, Similarity Score: 95.83%
Strategy: ClucHAnix_5mTB1_3, Similarity Score: 95.83%
Strategy: ClucHAnix_5mTB1_711, Similarity Score: 95.83%
Strategy: ClucHAnix_5mTB1_733, Similarity Score: 95.83%
Strategy: ClucHAnix_5m_2, Similarity Score: 95.83%
Strategy: ClucHAnix_5m_268, Similarity Score: 95.83%
Strategy: ClucHAnix_5m_4, Similarity Score: 95.83%
Strategy: ClucHAnix_5m_5, Similarity Score: 95.83%
Strategy: ClucHAnix_5m_736, Similarity Score: 95.83%
Strategy: ClucHAnix_6, Similarity Score: 95.83%
Strategy: ClucHAnix_748, Similarity Score: 95.83%
Strategy: ClucHAnix_8, Similarity Score: 95.83%
Strategy: ClucHAnix_932, Similarity Score: 95.83%
Strategy: Discord_10_ClucHAnix, Similarity Score: 95.83%
Strategy: Discord_1_ClucHAnix, Similarity Score: 95.83%
Strategy: Discord_1_ClucHAnix_5m, Similarity Score: 95.83%
Strategy: Discord_ClucHAnix_5M_E0V1E, Similarity Score: 95.83%
Strategy: Discord_ClucHAnix_5m1c, Similarity Score: 95.83%
Strategy: NoMoreTearsToCryV3_2fixed, Similarity Score: 95.83%
Strategy: SafeCluc, Similarity Score: 95.83%
Strategy: SafeCluc_2, Similarity Score: 95.83%
Strategy: TrailingBuyStratCluc, Similarity Score: 95.83%
Strategy: TrailingBuyStratCluc_172, Similarity Score: 95.83%
Strategy: TrailingBuy_ClucHAnix_5m_E0V1E_by_TraNz, Similarity Score: 95.83%
Strategy: TrailingBuy_ClucHAnix_5m_E0V1E_by_TraNz201, Similarity Score: 95.83%
Strategy: JT_V02, Similarity Score: 91.67%
Strategy: JT_V03, Similarity Score: 91.67%
Strategy: MoonMix_marc, Similarity Score: 91.67%

last change: 2024-05-02 10:21:14