daisy613 / autoCoins

This Powershell script allows you to avoid most pumps/dumps by dynamically controlling the coin list in WickHunter bot to blacklist or un-blacklist coins.
7 stars 4 forks source link

Script not banning newly listed coins #16

Open at0mzk1 opened 3 years ago

at0mzk1 commented 3 years ago

My autoCoins script is not banning newly listed coin - NKNUSDT. Below is my config:

System Information: VPS Provider: AWS Version: 1.2.8 Running Time: 2416.5 mins

{
    "max1hrPercent":  5,
    "max24hrPercent":  10,
    "minAthPercent":  5,
    "minAge":  60,
    "refresh":  5,
    "proxy":  "",
    "proxyUser":  "",
    "proxyPass":  "",
    "discord":  "",
    "blackList":  [
                      "BTCUSDT",
                      "ETHUSDT",
                      "BNBUSDT",
                      "DOGEUSDT",
                      "YFIUSDT",
                      "TRBUSDT",
                      "SOLUSDT",
                      "UNIUSDT",
                      "AVAXUSDT",
                      "HNTUSDT",
                      "KSMUSDT",
                      "AAVEUSDT",
                      "RSRUSDT",
                      "MATICUSDT",
                      "AXSUSDT",
                      "SKLUSDT",
                      "BTCBUSDT",
                      "BTSUSDT",
                      "BTCUSDT_210625",
                      "ETHUSDT_210625",
                      "KNCUSDT",
                      "CTKUSDT",
                      "RLCUSDT"
                  ],
    "cooldownHrs":  4,
    "max4hrPercent":  5
}

From binance, this coin is less than 2 months old:

image

Yet I've already had 2 trades for this coin, and the script is not putting it in the quarantined list:

QUARANTINED: AKROUSDT, ALICEUSDT, BTCSTUSDT, BTTUSDT, CELRUSDT, CHRUSDT, COMPUSDT, COTIUSDT, DENTUSDT, DGBUSDT, ETCUSDT, HBARUSDT, HOTUSDT, LINAUSDT, MANAUSDT, MKRUSDT, MTLUSDT, NKNUSDT, OGNUSDT, ONEUSDT, REEFUSDT, RVNUSDT, STMXUSDT, XEMUSDT, XMRUSDT
UNQUARANTINED: DEFIUSDT, SCUSDT, ZRXUSDT
MarketSwing - Last 1hr - 6% Bearish
47% Long | 41 Coins | Ave 0.87% | Max 4.26% ALICEUSDT
53% Short | 46 Coins | Ave -0.49% | Max -2.94% FTMUSDT 
MarketSwing - Last 4hrs - 54% Bullish
77% Long | 67 Coins | Ave 1.75% | Max 10.47% ETCUSDT
23% Short | 20 Coins | Ave -0.88% | Max -2.55% ALPHAUSDT 
MarketSwing - Last 24hrs - 58% Bullish
79% Long | 69 Coins | Ave -1.44% | Max 27.05% ETCUSDT
21% Short | 18 Coins | Ave 0% | Max -4.08% WAVESUSDT
QUARANTINED: AKROUSDT, ALICEUSDT, BTCSTUSDT, BTTUSDT, CELRUSDT, CHRUSDT, COMPUSDT, COTIUSDT, DEFIUSDT, DENTUSDT, DGBUSDT, ETCUSDT, HBARUSDT, HOTUSDT, MANAUSDT, MKRUSDT, MTLUSDT, OGNUSDT, ONEUSDT, REEFUSDT, RVNUSDT, SCUSDT, STMXUSDT, XEMUSDT, XMRUSDT
UNQUARANTINED: LINAUSDT, NKNUSDT

The age value that comes from Binance is accurate as per the logs:

symbol    perc1hrVal                  perc1hr perc4hrVal perc4hr perc24hrVal perc24hr AthVal Ath  AgeVal
------    ----------                  ------- ---------- ------- ----------- -------- ------ ---  ------
NKNUSDT   {-4.97, 0.56, 0.38, -2.41}  PASS         -6.13 FAIL          15.98 FAIL      46.17 PASS     23

Although above logs is missing values from the table, you pull: select symbol,perc1hrVal,perc1hr,perc4hrVal,perc4hr,perc24hrVal,perc24hr,AthVal,Ath,AgeVal,Age,Open yet there is nothing after AgeVal.