Skip to content

Market with stable BTC USDT price (2022 11 06)

Quant & Fintech Opensource Projects edited this page Nov 6, 2022 · 20 revisions

The 1st best performing scanned assets seem to be given with the following criterias :

  • Price is getting over the cloud
  • Chikou span is validated
  • Price is validated

PROCESSING 202211060817_scan_binance_usdt_gotc_cvup_pvup.txt

MDT 2022-11-06 07:43:43 [0.03097] [0.03198] [3.26 %] [ 1m ]

FOR 2022-11-06 08:05:28 [0.02067] [0.02067] [0.00 %] [ 3m ]

LTO 2022-11-06 07:41:44 [0.0936] [0.1198] [27.99 %] [ 5m ]

ATM 2022-11-06 07:56:45 [3.82] [3.72] [-2.62 %] [ 4h ]

OG 2022-11-06 07:56:37 [4.459] [4.057] [-9.02 %] [ 8h ]

Average evol per group of timeframes (ordered) : [5m]..............................................27.99% LTO [1m]..............................................3.26% MDT [3m]..............................................0.00% FOR [4h]..............................................-2.62% ATM [8h]..............................................-9.02% OG

Average total evol for this file 3.92 %


The 2nd best performing scanned assets seem to be given with the following criterias :

  • Price has got over the cloud
  • Chikou Span is validated (above all its Ichimoku levels and the higher price at its location)

PROCESSING 202211061151_scan_binance_usdt_hgotc_cvup.txt

ALGO 2022-11-06 11:09:25 [0.4407] [0.437] [-0.84 %] [ 1m ]

OGN 2022-11-06 11:14:50 [0.1616] [0.1566] [-3.09 %] [ 1m ]

MASK 2022-11-06 11:35:52 [4.747] [5.29] [11.44 %] [ 1m ]

FARM 2022-11-06 11:38:33 [40.6] [40.8] [0.49 %] [ 3m ]

MOB 2022-11-06 11:49:35 [0.861] [0.87] [1.05 %] [ 3m ]

NULS 2022-11-06 11:06:04 [0.2339] [0.2398] [2.52 %] [ 30m ]

AVA 2022-11-06 11:29:08 [0.813] [0.825] [1.48 %] [ 30m ]

BURGER 2022-11-06 11:34:54 [0.948] [0.998] [5.27 %] [ 30m ]

TORN 2022-11-06 11:36:36 [6.41] [6.39] [-0.31 %] [ 30m ]

CVP 2022-11-06 11:41:30 [0.442] [0.4611] [4.32 %] [ 30m ]

WIN 2022-11-06 11:10:09 [0.0001108] [0.0001098] [-0.90 %] [ 1h ]

DF 2022-11-06 11:41:03 [0.0479] [0.0522] [8.98 %] [ 1h ]

LAZIO 2022-11-06 11:42:10 [7.3305] [6.6547] [-9.22 %] [ 12h ]

CITY 2022-11-06 11:43:10 [6.25] [6.27] [0.32 %] [ 12h ]

HIGH 2022-11-06 11:45:49 [1.745] [1.72] [-1.43 %] [ 12h ]

BTC 2022-11-06 11:03:58 [21258.57] [21251.0] [-0.04 %] [ 1d ]

ONT 2022-11-06 11:05:29 [0.2422] [0.2394] [-1.16 %] [ 1d ]

TRX 2022-11-06 11:05:37 [0.06496] [0.06433] [-0.97 %] [ 1d ]

VET 2022-11-06 11:06:12 [0.02607] [0.02583] [-0.92 %] [ 1d ]

HOT 2022-11-06 11:06:46 [0.002169] [0.002135] [-1.57 %] [ 1d ]

XMR 2022-11-06 11:07:28 [160.0] [157.6] [-1.50 %] [ 1d ]

ATOM 2022-11-06 11:08:53 [15.049] [15.004] [-0.30 %] [ 1d ]

FTM 2022-11-06 11:09:17 [0.2861] [0.2807] [-1.89 %] [ 1d ]

CTSI 2022-11-06 11:16:47 [0.1523] [0.1521] [-0.13 %] [ 1d ]

XVS 2022-11-06 11:27:13 [5.38] [5.5] [2.23 %] [ 1d ]

ROSE 2022-11-06 11:28:58 [0.06798] [0.06797] [-0.01 %] [ 1d ]

DODO 2022-11-06 11:31:56 [0.1599] [0.1592] [-0.44 %] [ 1d ]

OP 2022-11-06 11:50:25 [1.266] [1.326] [4.74 %] [ 1d ]

BNB 2022-11-06 11:04:14 [353.0] [353.1] [0.03 %] [ 3d ]

CHZ 2022-11-06 11:12:01 [0.2742] [0.287] [4.67 %] [ 3d ]

Average evol per group of timeframes (ordered) :

[1m]..............................................4.74% ALGO;OGN;MASK

[1h]..............................................4.04% WIN;DF

[30m].............................................2.99% NULS;AVA;BURGER;TORN;CVP

[1d]..............................................2.35% BTC;ONT;TRX;VET;HOT;XMR;ATOM;FTM;CTSI;XVS;ROSE;DODO;OP

[3d]..............................................2.35% BNB;CHZ

[3m]..............................................0.77% FARM;MOB

[12h].............................................-2.94% LAZIO;CITY;HIGH

Average total evol for this file 2.04 %


Here's the part of the code that implements the "has got over the cloud" criteria :

        elif has_got_over_the_cloud is True:
            condition = ( (ssb > ssa and dframe['open'].iloc[-3] < dframe['ICH_SSB'].iloc[-3] \
                and dframe['close'].iloc[-3] > dframe['ICH_SSB'].iloc[-3] \
                and dframe['open'].iloc[-2] > dframe['ICH_SSB'].iloc[-2] \
                and dframe['close'].iloc[-2] > dframe['ICH_SSB'].iloc[-2] \
                and dframe['open'].iloc[-1] > dframe['ICH_SSB'].iloc[-1] \
                and dframe['close'].iloc[-1] > dframe['ICH_SSB'].iloc[-1]) or \
                (ssa > ssb and dframe['open'].iloc[-3] < dframe['ICH_SSA'].iloc[-3] \
                and dframe['close'].iloc[-3] > dframe['ICH_SSA'].iloc[-3] \
                and dframe['open'].iloc[-2] > dframe['ICH_SSA'].iloc[-2] \
                and dframe['close'].iloc[-2] > dframe['ICH_SSA'].iloc[-2] \
                and dframe['open'].iloc[-1] > dframe['ICH_SSA'].iloc[-1] \
                and dframe['close'].iloc[-1] > dframe['ICH_SSA'].iloc[-1]) ) \
                #and dframe['close'].iloc[-1] > dframe['open'].iloc[-1]

Here's the part of the code that implements the "chikou span is validated" criteria :

        if chikou_validated_up is True:
            condition = condition and (chikou > ssa_chikou and chikou > ssb_chikou and chikou > price_high_chikou and chikou > tenkan_chikou and chikou > kijun_chikou)