BuyAllSellAllStrategy Strategy Performance Results

Description:

This strategy implements a basic Buy-All and Sell-All concept. This means that whenever the indicator generates a buy signal the bot will buy and whenever it generates a sell signal the bot will sell. It also implements a stoploss feature which triggers a sale when the trade reaches the predefined level. Additionally, it will also run a basic custom_sell function which checks the last candle of the timeframe and if it is not None, the bot will sell. This strategy uses a random number generator to generate buy and sell signals, but is completely customizable and can be altered to include different indicators.

Daily Profit

Pairs

Top cryptocurrency trading pairs

Pair Buys Avg Profit % Cum Profit Tot Profit Abs Tot Profit % Avg Duration Win Draw Loss Win %
LUNA/USDT 798 -0.20 -159.44 -2.068717 -2.07 0:00:00 0 0 798 0.00
ALGO/USDT 579 -0.20 -115.68 -2.875939 -2.88 0:00:00 0 0 579 0.00
ETC/USDT 709 -0.20 -141.66 -4.269811 -4.27 0:00:00 0 0 709 0.00
DOT/USDT 1289 -0.20 -257.54 -5.577559 -5.58 0:00:00 0 0 1289 0.00
ADA/USDT 1437 -0.20 -287.11 -6.711803 -6.71 0:00:00 0 0 1437 0.00
XRP/USDT 850 -0.20 -169.83 -7.984919 -7.98 0:00:00 0 0 850 0.00
BNB/USDT 1144 -0.20 -228.57 -8.700997 -8.7 0:00:00 0 0 1144 0.00
SOL/USDT 892 -0.20 -178.22 -9.256286 -9.26 0:00:00 0 0 892 0.00
BTC/USDT 1079 -0.20 -215.58 -9.872478 -9.87 0:00:00 0 0 1079 0.00
BCH/USDT 1367 -0.20 -273.13 -10.150694 -10.15 0:00:00 0 0 1367 0.00
LINK/USDT 1596 -0.20 -318.88 -10.471102 -10.47 0:00:00 0 0 1596 0.00
LTC/USDT 1799 -0.20 -359.44 -10.615830 -10.62 0:00:00 0 0 1799 0.00
ETH/USDT 1381 -0.20 -275.92 -10.953319 -10.95 0:00:00 0 0 1381 0.00
TOTAL 14920 -0.20 -2981.02 -99.509455 -99.51 0:00:00 0 0 14920 0.00
  • Pair: This is the cryptocurrency trading pair that was used for the backtesting.
  • Buys: This is the total number of buy orders placed during the backtesting.
  • Avg Profit %: This is the average percentage of profit that was made on each buy order.
  • Cum Profit: This is the cumulative profit made over all buy orders.
  • Tot Profit Abs: This is the total absolute profit made over all buy orders.
  • Tot Profit %: This is the total percentage of profit made over all buy orders.
  • Avg Duration: This is the average duration of each buy order.
  • Win: This is the total number of buy orders that resulted in a win.
  • Draw: This is the total number of buy orders that resulted in a draw.
  • Loss: This is the total number of buy orders that resulted in a loss.
  • Win %: This is the percentage of buy orders that resulted in a win.

Sell Reason

Sell Reason Sells Win Draws Loss Avg Profit % Cum Profit % Tot Profit ABS Tot Profit %
14920 0 0 14920 -0.2 -2981.02 -99.50945496 -596.2

Summary

A backtesting was performed with a maximum of 5 open trades and an average of 1243.33 trades per day. The starting balance was $100 and the final balance was $0.4905450399997022, resulting in an absolute profit of $-99.50945496 and a total profit percentage of -0.9950945496. The average stake amount was $3.334767259530831 and the total trade volume was $49754.7275122. The best pair was ALGO/USDT and the worst pair was LTC/USDT. The maximum balance reached was $99.96064932 and the minimum balance was $0.4905450399997022. The market change during this period was -0.02114756712873641.

Metric Value
Backtesting from 2024-01-01 00:00:00
Backtesting to 2024-01-13 15:40:00
Max open trades 5
Total/Daily Avg Trades 14920 / 1243.33
Starting balance 100
Final balance 0.4905450399997022
Absolute profit -99.50945496
Total profit % -0.9950945496
Avg. stake amount 3.334767259530831
Total trade volume 49754.7275122
Best Pair ALGO/USDT
Worst Pair LTC/USDT
Max Balance 99.96064932
Min Balance 0.4905450399997022
Market Change -0.02114756712873641

Config

                  
{
    "pairlists": [
      {
        "method": "StaticPairList"
      }
    ],
    "timeframe": "15m",
    "tradable_balance_ratio": 0.99,
    "fiat_display_currency": "USD",
    "stake_amount": "unlimited",
    "stake_currency": "USDT",
    "amend_last_stake_amount": true,
    "exchange": {
      "pair_whitelist": [
        "BTC/USDT",
        "BCH/USDT",
        "ETH/USDT",
        "LINK/USDT",
        "LTC/USDT",
        "SOL/USDT",
        "BNB/USDT",
        "XRP/USDT",
        "ADA/USDT",
        "DOT/USDT",
        "ETC/USDT",
        "ALGO/USDT",
        "LUNA/USDT"
      ],
      "name": "binance"
    },
    "dry_run_wallet": 100,
    "max_open_trades": 5
  }