In [1]:
from areixio import BackTestBroker,CryptoDataFeed, create_report_folder, Strategy, BackTest, Indicator, PositionSide, Statistic
from collections import defaultdict
from datetime import datetime, timedelta
from dateutil.parser import parse
In [2]:
class TestStrategy(Strategy):

    boll_window = 18
    boll_dev = 3.4
    cci_window = 10
    atr_window = 30
    sl_multiplier = 5.2
    
    leverage = 5

    def initialize(self):

        self.boll_up = defaultdict(float)
        self.boll_down = defaultdict(float)
        self.cci_value = defaultdict(float)
        self.atr_value = defaultdict(float)

        self.intra_trade_high = defaultdict(float)
        self.intra_trade_low = defaultdict(float)
        self.long_stop = defaultdict(float)
        self.short_stop = defaultdict(float)

        self.indicators = {}

        for code, exchange in self.ctx.symbols:
            self.indicators[code] = Indicator(size=50)
            self.ctx.set_leverage(symbol=code, exchange=exchange, leverage=self.leverage)
            self.ctx.set_margin_mode(symbol=code, exchange=exchange, is_isolated=False)

    def on_trade_fail(self, order):
        self.error(f"Order [number {order['order_id']}] [{order['status'].name}]. Msg: {order['msg']}")

    def on_order_fill(self, trade):
        self.info(f"({trade.aio_position_id}) - {'OPEN' if trade.is_open else 'CLOSE'} {trade['side'].name} order [number {trade['order_id']}] executed [quantity {trade['quantity']}] [price ${trade['price']:2f}] [Cost ${trade['gross_amount']:2f}] [Commission: ${trade['commission']}] [Available balance: ${self.available_balance}] [Position: #{self.ctx.get_quantity(aio_position_id=trade['aio_position_id'])}] [Gross P&L: ${trade['pnl']}] [Net P&L: ${trade['pnl_net']}] ")

        if not trade['is_open']:
            self.info(f"========> Trade closed, pnl: {trade['pnl']}")


    def on_bar(self, tick):

        self.cancel_all()

        for code, exchange in self.ctx.symbols:

            indicator = self.indicators[code]
            bar = self.ctx.get_bar_data(symbol=code, exchange=exchange)
            if bar is None:
                continue

            indicator.update_bar(bar=bar)
            if not indicator.inited:
                continue

            close_px = bar.close
            self.boll_up[code], self.boll_down[code] = indicator.boll(self.boll_window, self.boll_dev)
            self.cci_value[code] = indicator.cci(self.cci_window)
            self.atr_value[code] = indicator.atr(self.atr_window)

            self.pos = self.ctx.get_quantity(symbol=code, exchange=exchange)
            self.debug(f"pos:{self.pos}; cci_value:{self.cci_value[code]}; atr_value:{self.atr_value[code]}; boll_up:{self.boll_up[code]}; boll_down:{self.boll_down[code]}; intra_trade_high:{self.intra_trade_high[code]}; long_stop:{self.long_stop[code]}; intra_trade_low:{self.intra_trade_low[code]}; short_stop:{self.short_stop[code]}; close:{close_px}")
            order = None
            close_order = None
            if not self.pos:
                self.intra_trade_high[code] = bar.high
                self.intra_trade_low[code] = bar.low

                if self.cci_value[code] > 0:
                    order = self.buy(symbol=code, exchange=exchange, stop_price=self.boll_up[code], quantity= self.fixed_size[code],position_side=PositionSide.NET)
                elif self.cci_value[code] < 0:
                    order = self.sell(symbol=code, exchange=exchange, stop_price=self.boll_down[code],quantity= self.fixed_size[code],position_side=PositionSide.NET)

            elif self.pos > 0:
                self.intra_trade_high[code] = max(self.intra_trade_high[code], bar.high)
                self.intra_trade_low[code] = bar.low

                self.long_stop[code] = self.intra_trade_high[code] - self.atr_value[code] * self.sl_multiplier
                close_order = self.close(symbol=code, exchange=exchange, stop_price=self.long_stop[code],position_side=PositionSide.NET)

            elif self.pos < 0:
                self.intra_trade_high[code] = bar.high
                self.intra_trade_low[code] = min(self.intra_trade_low[code], bar.low)

                self.short_stop[code] = self.intra_trade_low[code] + self.atr_value[code] * self.sl_multiplier
                close_order = self.close(symbol=code, exchange=exchange, stop_price=self.short_stop[code],position_side=PositionSide.NET)

            if order:
                self.info(f"Order for {code} [number {order['order_id']}] ({order['order_type'].name} & {order['side'].name})  created, [quantity {order['quantity']}] [price {order['price']}]")
            if close_order:
                self.info(f"Stop Order for {code} [number {close_order['order_id']}] ({close_order['order_type']} & {close_order['side'].name})  created, [quantity {close_order['quantity']}] [price {close_order['price']}]")

    def finish(self):
        pass                
In [3]:
benchmark_code = 'BTCUSDT'
interval = '1h'
now = datetime.now()
start_date = (now - timedelta(days=10)).strftime("%Y-%m-%d %H:%M:%S")
end_date = now.strftime("%Y-%m-%d %H:%M:%S")


fixed_size = {
    'BTCUSDT': 0.5,
    'ETHUSDT': 1,
    'SOLUSDT': 5,
}
codes = list(fixed_size.keys())

asset_type = 'perpetual'
exchange = 'bybit'

base = create_report_folder()
ipython is already existed.
In [4]:
feeds = []
for code in codes:
    df = CryptoDataFeed(
        code=code,
        exchange=exchange,
        asset_type = asset_type,
        start_date=start_date,
        end_date=end_date,
        interval=interval,
        order_ascending=True,
        store_path=base
    )
    df.fetch_info()
    feeds.append(df)


benchmark = CryptoDataFeed(
    code=benchmark_code,
    exchange=exchange,
    asset_type = asset_type,
    start_date=start_date,
    end_date=end_date,
    interval=interval,
    order_ascending=True,
    store_path=base
)

feeds[0].dataframe.tail(4)
BTCUSDT[1h - BYBIT] data is up-to-date now. Current date range:2024-01-24 20:00:00+08:00 <=> 2024-02-03 19:00:00+08:00
ETHUSDT[1h - BYBIT] data is up-to-date now. Current date range:2024-01-24 20:00:00+08:00 <=> 2024-02-03 19:00:00+08:00
SOLUSDT[1h - BYBIT] data is up-to-date now. Current date range:2024-01-24 20:00:00+08:00 <=> 2024-02-03 19:00:00+08:00
BTCUSDT[1h - BYBIT] data is up-to-date now. Current date range:2024-01-24 20:00:00+08:00 <=> 2024-02-03 19:00:00+08:00
Out[4]:
asset_type symbol exchange name interval turnover volume close open high low
datetime
2024-02-03 16:00:00+08:00 PERPETUAL BTCUSDT BYBIT BTCUSDT 1h 39404350.367600 915.775000 43005.600000 43037.400000 43076.100000 42985.600000
2024-02-03 17:00:00+08:00 PERPETUAL BTCUSDT BYBIT BTCUSDT 1h 44144881.691700 1025.118000 43076.100000 43005.600000 43109.900000 42996.500000
2024-02-03 18:00:00+08:00 PERPETUAL BTCUSDT BYBIT BTCUSDT 1h 26579602.978100 617.241000 43053.600000 43076.100000 43104.900000 43023.600000
2024-02-03 19:00:00+08:00 PERPETUAL BTCUSDT BYBIT BTCUSDT 1h 1048856.749600 24.366000 43039.700000 43053.600000 43053.600000 43039.700000
In [5]:
broker = BackTestBroker(
    balance=100_000,
    slippage=0.0
    )
broker
Out[5]:
<itrade.brokers.backtest_broker.BackTestBroker at 0x126e56490>
In [6]:
mytest = BackTest(
    feeds,
    TestStrategy,
    statistic=Statistic(),
    benchmark=benchmark,
    store_path=base,
    broker=broker,
    exchange=exchange,
    fixed_size = fixed_size,
)
mytest
Out[6]:
<itrade.orchestrators.backtest.BackTest at 0x106715590>
In [7]:
mytest.start()
2024-01-26 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:94.90919766278266; atr_value:273.5478552854555; boll_up:41728.08397548177; boll_down:38722.78269118491; intra_trade_high:0.0; long_stop:0.0; intra_trade_low:0.0; short_stop:0.0; close:41000.9
2024-01-26 21:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2o4vggao7b-00001] (STOP & BUY)  created, [quantity 0.5] [price 41728.083976]
2024-01-26 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:77.7806051923919; atr_value:17.75677852728348; boll_up:2269.903317566923; boll_down:2175.7189046552994; intra_trade_high:0.0; long_stop:0.0; intra_trade_low:0.0; short_stop:0.0; close:2239.89
2024-01-26 21:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2rpkfrhj4p-00002] (STOP & BUY)  created, [quantity 1.0] [price 2269.903318]
2024-01-26 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:79.58719163496205; atr_value:1.4171089343639385; boll_up:93.397004648446; boll_down:82.79488424044294; intra_trade_high:0.0; long_stop:0.0; intra_trade_low:0.0; short_stop:0.0; close:90.376
2024-01-26 21:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1a88fm5s7b-00003] (STOP & BUY)  created, [quantity 5.0] [price 93.397005]
2024-01-26 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:109.48565146699728; atr_value:283.44437637332754; boll_up:42113.16388286203; boll_down:38530.569450471325; intra_trade_high:41220.4; long_stop:0.0; intra_trade_low:40880.6; short_stop:0.0; close:41568.0
2024-01-26 22:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1twx9c3gsw-00004] (STOP & BUY)  created, [quantity 0.5] [price 42113.163883]
2024-01-26 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:94.71944049576014; atr_value:17.824292826679425; boll_up:2279.109389790233; boll_down:2170.470610209766; intra_trade_high:2251.32; long_stop:0.0; intra_trade_low:2233.31; short_stop:0.0; close:2257.63
2024-01-26 22:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2jv8evx8s5-00005] (STOP & BUY)  created, [quantity 1.0] [price 2279.10939]
2024-01-26 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:90.97515847410618; atr_value:1.4280188064636028; boll_up:94.39364496097934; boll_down:82.35246615013179; intra_trade_high:91.361; long_stop:0.0; intra_trade_low:90.1; short_stop:0.0; close:92.0
2024-01-26 22:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1k888axigh-00006] (STOP & BUY)  created, [quantity 5.0] [price 94.393645]
2024-01-26 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:86.324881513655; atr_value:283.18387227597464; boll_up:42343.38744797771; boll_down:38463.64588535565; intra_trade_high:41568.0; long_stop:0.0; intra_trade_low:41000.8; short_stop:0.0; close:41391.2
2024-01-26 23:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2kd2gubmm2-00007] (STOP & BUY)  created, [quantity 0.5] [price 42343.387448]
2024-01-26 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:84.84698565269413; atr_value:17.421413771187133; boll_up:2286.403516516247; boll_down:2167.42426126153; intra_trade_high:2257.99; long_stop:0.0; intra_trade_low:2239.01; short_stop:0.0; close:2256.95
2024-01-26 23:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2iz44nw6mv-00008] (STOP & BUY)  created, [quantity 1.0] [price 2286.403517]
2024-01-26 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:95.35810200211326; atr_value:1.4182982563923465; boll_up:95.32632409717644; boll_down:82.00578701393465; intra_trade_high:92.042; long_stop:0.0; intra_trade_low:90.32; short_stop:0.0; close:92.354
2024-01-26 23:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1wsnvnrwd5-00009] (STOP & BUY)  created, [quantity 5.0] [price 95.326324]
2024-01-27 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:111.88622829678596; atr_value:294.77164329444713; boll_up:42753.757978333466; boll_down:38275.31979944433; intra_trade_high:41568.9; long_stop:0.0; intra_trade_low:41183.4; short_stop:0.0; close:41945.6
2024-01-27 00:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2ixrshqhe7-00010] (STOP & BUY)  created, [quantity 0.5] [price 42753.757978]
2024-01-27 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:116.73979830141657; atr_value:17.72414826938606; boll_up:2301.6999179724285; boll_down:2158.5611931386798; intra_trade_high:2259.37; long_stop:0.0; intra_trade_low:2249.0; short_stop:0.0; close:2278.76
2024-01-27 00:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1ytu9vhovj-00011] (STOP & BUY)  created, [quantity 1.0] [price 2301.699918]
2024-01-27 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:105.12718853486015; atr_value:1.405425502384746; boll_up:96.38757465790702; boll_down:81.59998089764856; intra_trade_high:92.706; long_stop:0.0; intra_trade_low:91.316; short_stop:0.0; close:93.14
2024-01-27 00:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2khaaknb26-00012] (STOP & BUY)  created, [quantity 5.0] [price 96.387575]
2024-01-27 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:113.92128173372352; atr_value:293.36910883933444; boll_up:43053.68829064761; boll_down:38191.61170935239; intra_trade_high:42012.7; long_stop:0.0; intra_trade_low:41377.5; short_stop:0.0; close:41900.0
2024-01-27 01:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2raj4v8gsu-00013] (STOP & BUY)  created, [quantity 0.5] [price 43053.688291]
2024-01-27 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:105.27073053957632; atr_value:17.630159642549327; boll_up:2309.6060481157037; boll_down:2156.272840773184; intra_trade_high:2281.86; long_stop:0.0; intra_trade_low:2256.23; short_stop:0.0; close:2268.45
2024-01-27 01:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1vgnv7i7rd-00014] (STOP & BUY)  created, [quantity 1.0] [price 2309.606048]
2024-01-27 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:97.69784384862751; atr_value:1.387895663218584; boll_up:97.19177793264387; boll_down:81.49722206735618; intra_trade_high:93.5; long_stop:0.0; intra_trade_low:92.163; short_stop:0.0; close:93.178
2024-01-27 01:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1fxxyki4aj-00015] (STOP & BUY)  created, [quantity 5.0] [price 97.191778]
2024-01-27 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:118.08533777347743; atr_value:297.27358964993994; boll_up:43345.31866876343; boll_down:38144.27022012546; intra_trade_high:42006.4; long_stop:0.0; intra_trade_low:41741.0; short_stop:0.0; close:42085.0
2024-01-27 02:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-27g7zjbs2v-00016] (STOP & BUY)  created, [quantity 0.5] [price 43345.318669]
2024-01-27 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:87.00125415161818; atr_value:17.587814873086487; boll_up:2315.086423491901; boll_down:2156.4346876192076; intra_trade_high:2281.86; long_stop:0.0; intra_trade_low:2266.14; short_stop:0.0; close:2266.1
2024-01-27 02:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2b5zr3pg1f-00017] (STOP & BUY)  created, [quantity 1.0] [price 2315.086424]
2024-01-27 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:95.18192865823178; atr_value:1.3907998481062307; boll_up:97.78005004762198; boll_down:81.59461661904473; intra_trade_high:93.366; long_stop:0.0; intra_trade_low:92.4; short_stop:0.0; close:93.095
2024-01-27 02:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2fbcjaiqd6-00018] (STOP & BUY)  created, [quantity 5.0] [price 97.78005]
2024-01-27 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:98.94012866355335; atr_value:288.3817263717955; boll_up:43556.219031970126; boll_down:38169.14763469656; intra_trade_high:42193.0; long_stop:0.0; intra_trade_low:41823.3; short_stop:0.0; close:42045.4
2024-01-27 03:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1ooaj4tvyb-00019] (STOP & BUY)  created, [quantity 0.5] [price 43556.219032]
2024-01-27 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:18.44702950622253; atr_value:17.26255650005486; boll_up:2317.9570101862546; boll_down:2157.3452120359652; intra_trade_high:2276.45; long_stop:0.0; intra_trade_low:2263.02; short_stop:0.0; close:2257.3
2024-01-27 03:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1ah4exwd53-00020] (STOP & BUY)  created, [quantity 1.0] [price 2317.95701]
2024-01-27 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:67.65611937563813; atr_value:1.3679361691996332; boll_up:97.98700989972502; boll_down:82.10443454471948; intra_trade_high:93.689; long_stop:0.0; intra_trade_low:92.505; short_stop:0.0; close:92.799
2024-01-27 03:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2oixiyfidk-00021] (STOP & BUY)  created, [quantity 5.0] [price 97.98701]
2024-01-27 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:77.24593881027728; atr_value:293.18949852377426; boll_up:43712.59761827547; boll_down:38215.70238172455; intra_trade_high:42111.0; long_stop:0.0; intra_trade_low:41911.0; short_stop:0.0; close:41954.0
2024-01-27 04:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1ji39rs44x-00022] (STOP & BUY)  created, [quantity 0.5] [price 43712.597618]
2024-01-27 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:-7.857394159728722; atr_value:17.05508127395253; boll_up:2320.5755161475636; boll_down:2158.110039407992; intra_trade_high:2266.51; long_stop:0.0; intra_trade_low:2249.18; short_stop:0.0; close:2257.55
2024-01-27 04:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-13xwr88sxj-00023] (STOP & SELL)  created, [quantity 1.0] [price 2158.11004]
2024-01-27 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:42.31244483671531; atr_value:1.390627364994296; boll_up:98.20486739559938; boll_down:82.34613260440067; intra_trade_high:93.24; long_stop:0.0; intra_trade_low:92.368; short_stop:0.0; close:92.193
2024-01-27 04:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-24roieiag8-00024] (STOP & BUY)  created, [quantity 5.0] [price 98.204867]
2024-01-27 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:57.12643122985797; atr_value:284.9249183278104; boll_up:43817.701073764336; boll_down:38323.932259569025; intra_trade_high:42238.1; long_stop:0.0; intra_trade_low:41810.5; short_stop:0.0; close:41974.0
2024-01-27 05:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2j21adk9eg-00025] (STOP & BUY)  created, [quantity 0.5] [price 43817.701074]
2024-01-27 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:-15.119450714820106; atr_value:16.505322161038237; boll_up:2322.6616502142615; boll_down:2160.0561275635146; intra_trade_high:2261.7; long_stop:0.0; intra_trade_low:2251.1; short_stop:0.0; close:2258.74
2024-01-27 05:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1xuysx2nad-00026] (STOP & SELL)  created, [quantity 1.0] [price 2160.056128]
2024-01-27 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:0.022504709913665676; atr_value:1.3693290934458155; boll_up:98.33424775827183; boll_down:82.70086335283935; intra_trade_high:93.688; long_stop:0.0; intra_trade_low:91.945; short_stop:0.0; close:92.258
2024-01-27 05:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1yth7bd5bd-00027] (STOP & BUY)  created, [quantity 5.0] [price 98.334248]
2024-01-27 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:37.49715156801371; atr_value:280.116753937636; boll_up:43869.722289705394; boll_down:38465.999932516854; intra_trade_high:42034.7; long_stop:0.0; intra_trade_low:41850.3; short_stop:0.0; close:41883.4
2024-01-27 06:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2qijx89viq-00028] (STOP & BUY)  created, [quantity 0.5] [price 43869.72229]
2024-01-27 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:45.423543854862594; atr_value:16.39430622291229; boll_up:2325.997978328543; boll_down:2161.560910560344; intra_trade_high:2259.58; long_stop:0.0; intra_trade_low:2251.69; short_stop:0.0; close:2267.03
2024-01-27 06:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1aozzr78ru-00029] (STOP & BUY)  created, [quantity 1.0] [price 2325.997978]
2024-01-27 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:-16.050012276427072; atr_value:1.363702439905911; boll_up:98.3565883069442; boll_down:83.17341169305585; intra_trade_high:92.594; long_stop:0.0; intra_trade_low:91.729; short_stop:0.0; close:92.262
2024-01-27 06:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1z3pxzposu-00030] (STOP & SELL)  created, [quantity 5.0] [price 83.173412]
2024-01-27 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:11.800109140980595; atr_value:277.3252955191851; boll_up:43854.19993744601; boll_down:38671.822284776244; intra_trade_high:41990.0; long_stop:0.0; intra_trade_low:41811.9; short_stop:0.0; close:41805.5
2024-01-27 07:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-11yh4a7yc1-00031] (STOP & BUY)  created, [quantity 0.5] [price 43854.199938]
2024-01-27 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:39.871511744627334; atr_value:16.191642282036074; boll_up:2328.1100958950797; boll_down:2164.629904104919; intra_trade_high:2271.22; long_stop:0.0; intra_trade_low:2256.92; short_stop:0.0; close:2267.08
2024-01-27 07:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-17nr26cik5-00032] (STOP & BUY)  created, [quantity 1.0] [price 2328.110096]
2024-01-27 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:-40.109577712305125; atr_value:1.3356545113030192; boll_up:98.23045864904907; boll_down:83.81220801761765; intra_trade_high:92.598; long_stop:0.0; intra_trade_low:91.604; short_stop:0.0; close:92.245
2024-01-27 07:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-26uq7nzpo4-00033] (STOP & SELL)  created, [quantity 5.0] [price 83.812208]
2024-01-27 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:-42.739905520494254; atr_value:271.1832015142665; boll_up:43756.11366274319; boll_down:38968.27522614573; intra_trade_high:41954.5; long_stop:0.0; intra_trade_low:41790.0; short_stop:0.0; close:41776.4
2024-01-27 08:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-13xs2mpxwe-00034] (STOP & SELL)  created, [quantity 0.5] [price 38968.275226]
2024-01-27 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:108.09445153017205; atr_value:16.078420815671187; boll_up:2330.7130776070608; boll_down:2169.520255726272; intra_trade_high:2269.52; long_stop:0.0; intra_trade_low:2261.9; short_stop:0.0; close:2279.82
2024-01-27 08:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-25m9676upo-00035] (STOP & BUY)  created, [quantity 1.0] [price 2330.713078]
2024-01-27 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:3.0273993528555874; atr_value:1.3083123612020617; boll_up:97.9409940389261; boll_down:84.72122818329618; intra_trade_high:92.483; long_stop:0.0; intra_trade_low:91.86; short_stop:0.0; close:92.808
2024-01-27 08:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-18zzrbsdf4-00036] (STOP & BUY)  created, [quantity 5.0] [price 97.940994]
2024-01-27 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:-60.194475309157184; atr_value:268.25568404076887; boll_up:43575.69539820213; boll_down:39355.126824020124; intra_trade_high:41854.3; long_stop:0.0; intra_trade_low:41693.0; short_stop:0.0; close:41807.4
2024-01-27 09:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-221bsoh3iy-00037] (STOP & SELL)  created, [quantity 0.5] [price 39355.126824]
2024-01-27 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:79.06888863696278; atr_value:16.13217431269811; boll_up:2322.6875144342457; boll_down:2185.7224855657532; intra_trade_high:2280.0; long_stop:0.0; intra_trade_low:2264.78; short_stop:0.0; close:2269.85
2024-01-27 09:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-26pgad2jqv-00038] (STOP & BUY)  created, [quantity 1.0] [price 2322.687515]
2024-01-27 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:61.114195817137414; atr_value:1.3223283190887372; boll_up:97.2676257756171; boll_down:86.0219297799385; intra_trade_high:92.897; long_stop:0.0; intra_trade_low:92.041; short_stop:0.0; close:92.646
2024-01-27 09:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2kdc5ypjrn-00039] (STOP & BUY)  created, [quantity 5.0] [price 97.267626]
2024-01-27 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:-61.75798483219293; atr_value:261.05273727442426; boll_up:43368.062783743866; boll_down:39751.848327367275; intra_trade_high:41921.3; long_stop:0.0; intra_trade_low:41759.6; short_stop:0.0; close:41821.9
2024-01-27 10:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1zrj7yate8-00040] (STOP & SELL)  created, [quantity 0.5] [price 39751.848327]
2024-01-27 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:72.68884774355705; atr_value:15.603149830664666; boll_up:2316.526150867116; boll_down:2199.1860713551046; intra_trade_high:2282.86; long_stop:0.0; intra_trade_low:2267.26; short_stop:0.0; close:2274.11
2024-01-27 10:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2qn5xh7spd-00041] (STOP & BUY)  created, [quantity 1.0] [price 2316.526151]
2024-01-27 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:87.56588489157566; atr_value:1.3019932388030535; boll_up:96.64560785031658; boll_down:87.23339214968347; intra_trade_high:93.906; long_stop:0.0; intra_trade_low:92.215; short_stop:0.0; close:93.055
2024-01-27 10:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1iv9grpbx5-00042] (STOP & BUY)  created, [quantity 5.0] [price 96.645608]
2024-01-27 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:-77.14666014722872; atr_value:256.4769013700391; boll_up:42985.90649596178; boll_down:40327.715726260474; intra_trade_high:41886.7; long_stop:0.0; intra_trade_low:41805.0; short_stop:0.0; close:41809.0
2024-01-27 11:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1b6mtnybzr-00043] (STOP & SELL)  created, [quantity 0.5] [price 40327.715726]
2024-01-27 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:78.09732094040763; atr_value:15.290132666557158; boll_up:2302.1957648063317; boll_down:2221.1375685270004; intra_trade_high:2275.34; long_stop:0.0; intra_trade_low:2269.21; short_stop:0.0; close:2273.63
2024-01-27 11:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2qvvibkf8f-00044] (STOP & BUY)  created, [quantity 1.0] [price 2302.195765]
2024-01-27 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:32.49566070485298; atr_value:1.283179833278212; boll_up:95.15297982883591; boll_down:89.30768683783081; intra_trade_high:93.569; long_stop:0.0; intra_trade_low:92.597; short_stop:0.0; close:92.679
2024-01-27 11:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1berqid8e3-00045] (STOP & BUY)  created, [quantity 5.0] [price 95.15298]
2024-01-27 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:-49.62329349119527; atr_value:251.32007200896652; boll_up:42775.99178857884; boll_down:40666.697100310084; intra_trade_high:41852.8; long_stop:0.0; intra_trade_low:41755.0; short_stop:0.0; close:41831.4
2024-01-27 12:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2nn365fsdw-00046] (STOP & SELL)  created, [quantity 0.5] [price 40666.6971]
2024-01-27 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:72.96844132343831; atr_value:14.979333155722506; boll_up:2300.016495515266; boll_down:2227.4246155958435; intra_trade_high:2276.39; long_stop:0.0; intra_trade_low:2271.1; short_stop:0.0; close:2274.33
2024-01-27 12:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2ioyjv139y-00047] (STOP & BUY)  created, [quantity 1.0] [price 2300.016496]
2024-01-27 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:7.696546330359071; atr_value:1.2561401732179942; boll_up:94.88492619141827; boll_down:89.81874047524845; intra_trade_high:93.144; long_stop:0.0; intra_trade_low:92.532; short_stop:0.0; close:92.628
2024-01-27 12:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2qid3ftwrf-00048] (STOP & BUY)  created, [quantity 5.0] [price 94.884926]
2024-01-27 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:-85.53839848029585; atr_value:249.71212668454365; boll_up:42733.00086856648; boll_down:40763.62135365576; intra_trade_high:41866.9; long_stop:0.0; intra_trade_low:41782.8; short_stop:0.0; close:41748.7
2024-01-27 13:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1ugsrdwpwu-00049] (STOP & SELL)  created, [quantity 0.5] [price 40763.621354]
2024-01-27 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:-21.477300800034723; atr_value:15.048527417239033; boll_up:2299.5238310440136; boll_down:2229.050613400429; intra_trade_high:2276.51; long_stop:0.0; intra_trade_low:2272.62; short_stop:0.0; close:2263.32
2024-01-27 13:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2h9x3ibnth-00050] (STOP & SELL)  created, [quantity 1.0] [price 2229.050614]
2024-01-27 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:-135.03497668221274; atr_value:1.2559063650541626; boll_up:94.91518031011609; boll_down:89.75315302321732; intra_trade_high:92.785; long_stop:0.0; intra_trade_low:92.456; short_stop:0.0; close:91.584
2024-01-27 13:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-15akw4asex-00051] (STOP & SELL)  created, [quantity 5.0] [price 89.753153]
2024-01-27 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:-152.07915893629647; atr_value:246.61511736617499; boll_up:42621.3824615475; boll_down:40938.739760674755; intra_trade_high:41877.0; long_stop:0.0; intra_trade_low:41724.3; short_stop:0.0; close:41693.3
2024-01-27 14:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-24tesfaqtu-00052] (STOP & SELL)  created, [quantity 0.5] [price 40938.739761]
2024-01-27 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:-57.5559049615642; atr_value:14.822008143345785; boll_up:2297.3445507872; boll_down:2233.1098936572434; intra_trade_high:2274.49; long_stop:0.0; intra_trade_low:2260.56; short_stop:0.0; close:2263.55
2024-01-27 14:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1b4cc1ttp8-00053] (STOP & SELL)  created, [quantity 1.0] [price 2233.109894]
2024-01-27 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:-150.42102440332275; atr_value:1.2473862931685944; boll_up:94.73040431645109; boll_down:90.0097067946601; intra_trade_high:92.628; long_stop:0.0; intra_trade_low:91.339; short_stop:0.0; close:91.361
2024-01-27 14:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1zhe4vkk7v-00054] (STOP & SELL)  created, [quantity 5.0] [price 90.009707]
2024-01-27 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-177.51442017837687; atr_value:244.3233649721419; boll_up:42370.726526598344; boll_down:41267.1956956239; intra_trade_high:41808.0; long_stop:0.0; intra_trade_low:41675.8; short_stop:0.0; close:41701.1
2024-01-27 15:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1jbpzyxvxp-00055] (STOP & SELL)  created, [quantity 0.5] [price 41267.195696]
2024-01-27 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-140.14329580347598; atr_value:14.788676825881433; boll_up:2291.5589530946672; boll_down:2240.9032691275534; intra_trade_high:2267.21; long_stop:0.0; intra_trade_low:2262.36; short_stop:0.0; close:2257.96
2024-01-27 15:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2boqhfftn4-00056] (STOP & SELL)  created, [quantity 1.0] [price 2240.903269]
2024-01-27 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-142.33628547417067; atr_value:1.2290284432912522; boll_up:94.3823629141838; boll_down:90.44974819692743; intra_trade_high:91.889; long_stop:0.0; intra_trade_low:91.094; short_stop:0.0; close:91.204
2024-01-27 15:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2bsr7cfu9e-00057] (STOP & SELL)  created, [quantity 5.0] [price 90.449748]
2024-01-27 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:-214.6275395033956; atr_value:249.33544709920076; boll_up:42405.202131084785; boll_down:41219.47564669302; intra_trade_high:41722.4; long_stop:0.0; intra_trade_low:41581.0; short_stop:0.0; close:41448.8
2024-01-27 16:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1byqka49yp-00058] (STOP & SELL)  created, [quantity 0.5] [price 41219.475647]
2024-01-27 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:-152.78398094387376; atr_value:14.759146516401426; boll_up:2292.6031336580386; boll_down:2239.3168663419606; intra_trade_high:2266.05; long_stop:0.0; intra_trade_low:2252.09; short_stop:0.0; close:2252.75
2024-01-27 16:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1z572dnxkh-00059] (STOP & SELL)  created, [quantity 1.0] [price 2239.316866]
2024-01-27 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:-123.58531857687551; atr_value:1.2294493441837622; boll_up:94.63624576248085; boll_down:90.07253201529701; intra_trade_high:91.587; long_stop:0.0; intra_trade_low:90.751; short_stop:0.0; close:90.89
2024-01-27 16:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2kct8o9hwm-00060] (STOP & SELL)  created, [quantity 5.0] [price 90.072532]
2024-01-27 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:-118.80028896694463; atr_value:254.5244084193242; boll_up:42328.985046740134; boll_down:41324.34828659324; intra_trade_high:41731.1; long_stop:0.0; intra_trade_low:41395.0; short_stop:0.0; close:41649.1
2024-01-27 17:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1vxesxrivm-00061] (STOP & SELL)  created, [quantity 0.5] [price 41324.348287]
2024-01-27 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:-63.80113040938666; atr_value:14.923997975474013; boll_up:2292.0364976126593; boll_down:2240.845724609563; intra_trade_high:2259.75; long_stop:0.0; intra_trade_low:2250.1; short_stop:0.0; close:2265.61
2024-01-27 17:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-271soxi935-00062] (STOP & SELL)  created, [quantity 1.0] [price 2240.845725]
2024-01-27 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:-51.607347876004624; atr_value:1.2484944881426212; boll_up:94.64019107691492; boll_down:90.01503114530739; intra_trade_high:91.444; long_stop:0.0; intra_trade_low:90.6; short_stop:0.0; close:91.872
2024-01-27 17:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2nz58jyt6e-00063] (STOP & SELL)  created, [quantity 5.0] [price 90.015031]
2024-01-27 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:-12.208719062311658; atr_value:254.36213913397003; boll_up:42312.34714977858; boll_down:41316.86396133258; intra_trade_high:41714.9; long_stop:0.0; intra_trade_low:41365.0; short_stop:0.0; close:41728.5
2024-01-27 18:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2r5unpj7g7-00064] (STOP & SELL)  created, [quantity 0.5] [price 41316.863961]
2024-01-27 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:-12.098432130088252; atr_value:14.824944223680102; boll_up:2289.1558935202365; boll_down:2241.9607731464303; intra_trade_high:2267.6; long_stop:0.0; intra_trade_low:2250.38; short_stop:0.0; close:2262.87
2024-01-27 18:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2ctvaunq1w-00065] (STOP & SELL)  created, [quantity 1.0] [price 2241.960773]
2024-01-27 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:-8.017552493437853; atr_value:1.2330576763870527; boll_up:94.49331732587837; boll_down:90.0209048963439; intra_trade_high:92.155; long_stop:0.0; intra_trade_low:90.656; short_stop:0.0; close:91.871
2024-01-27 18:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1c1tt6g45h-00066] (STOP & SELL)  created, [quantity 5.0] [price 90.020905]
2024-01-27 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:9.420461332161967; atr_value:251.10916435986795; boll_up:42301.382690155246; boll_down:41310.206198733686; intra_trade_high:41784.5; long_stop:0.0; intra_trade_low:41626.4; short_stop:0.0; close:41741.4
2024-01-27 19:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2pt4sn5g8q-00067] (STOP & BUY)  created, [quantity 0.5] [price 42301.38269]
2024-01-27 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:1.40688968808943; atr_value:14.53005899626476; boll_up:2288.8673509971304; boll_down:2241.913760113981; intra_trade_high:2270.97; long_stop:0.0; intra_trade_low:2262.36; short_stop:0.0; close:2265.43
2024-01-27 19:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1h4poqv2gm-00068] (STOP & BUY)  created, [quantity 1.0] [price 2288.867351]
2024-01-27 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:-0.03314358630108979; atr_value:1.2011622167009681; boll_up:94.30090304317585; boll_down:90.08331917904641; intra_trade_high:92.298; long_stop:0.0; intra_trade_low:91.711; short_stop:0.0; close:92.008
2024-01-27 19:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2bski471kx-00069] (STOP & SELL)  created, [quantity 5.0] [price 90.083319]
2024-01-27 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:25.123536738002837; atr_value:247.05636686386288; boll_up:42227.63520581728; boll_down:41343.553683071645; intra_trade_high:41770.0; long_stop:0.0; intra_trade_low:41679.8; short_stop:0.0; close:41721.4
2024-01-27 20:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2jrw5f3pmu-00070] (STOP & BUY)  created, [quantity 0.5] [price 42227.635206]
2024-01-27 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:-2.404956941821815; atr_value:14.383758489773156; boll_up:2288.7610612370468; boll_down:2241.647827651844; intra_trade_high:2270.8; long_stop:0.0; intra_trade_low:2261.14; short_stop:0.0; close:2262.75
2024-01-27 20:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2joht8xhgf-00071] (STOP & SELL)  created, [quantity 1.0] [price 2241.647828]
2024-01-27 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:21.269555686530744; atr_value:1.1777589452575468; boll_up:94.10819987928487; boll_down:90.1596890096041; intra_trade_high:92.09; long_stop:0.0; intra_trade_low:91.721; short_stop:0.0; close:92.048
2024-01-27 20:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2af3w3gio5-00072] (STOP & BUY)  created, [quantity 5.0] [price 94.1082]
2024-01-27 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:37.477949799452645; atr_value:238.76518895251084; boll_up:42156.0171342878; boll_down:41379.893976823325; intra_trade_high:41794.4; long_stop:0.0; intra_trade_low:41692.3; short_stop:0.0; close:41727.9
2024-01-27 21:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-28q1w4dmec-00073] (STOP & BUY)  created, [quantity 0.5] [price 42156.017134]
2024-01-27 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:31.09754602730763; atr_value:13.902688545779741; boll_up:2288.4029943079363; boll_down:2243.0825612476215; intra_trade_high:2269.96; long_stop:0.0; intra_trade_low:2261.44; short_stop:0.0; close:2266.99
2024-01-27 21:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-16mictdcyb-00074] (STOP & BUY)  created, [quantity 1.0] [price 2288.402994]
2024-01-27 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:73.11839212812973; atr_value:1.1404951937255803; boll_up:93.99407540525438; boll_down:90.20036903919008; intra_trade_high:92.243; long_stop:0.0; intra_trade_low:91.608; short_stop:0.0; close:92.138
2024-01-27 21:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2ehise49r9-00075] (STOP & BUY)  created, [quantity 5.0] [price 93.994076]
2024-01-27 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:58.2875840499832; atr_value:234.90337311021526; boll_up:42112.89453693991; boll_down:41399.72768528235; intra_trade_high:41790.0; long_stop:0.0; intra_trade_low:41703.9; short_stop:0.0; close:41744.4
2024-01-27 22:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1hi3izgu26-00076] (STOP & BUY)  created, [quantity 0.5] [price 42112.894537]
2024-01-27 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:120.60736948755691; atr_value:13.734120950908665; boll_up:2288.016544370016; boll_down:2244.6501222966517; intra_trade_high:2268.46; long_stop:0.0; intra_trade_low:2261.85; short_stop:0.0; close:2268.18
2024-01-27 22:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-18kffzvno6-00077] (STOP & BUY)  created, [quantity 1.0] [price 2288.016544]
2024-01-27 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:132.2982776961056; atr_value:1.1343981474913742; boll_up:94.06209478464484; boll_down:90.18068299313302; intra_trade_high:92.576; long_stop:0.0; intra_trade_low:91.852; short_stop:0.0; close:92.628
2024-01-27 22:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2mtstpr8rt-00078] (STOP & BUY)  created, [quantity 5.0] [price 94.062095]
2024-01-27 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:104.83154870723315; atr_value:233.44421337267048; boll_up:42057.4170018058; boll_down:41435.56077597201; intra_trade_high:41800.0; long_stop:0.0; intra_trade_low:41705.5; short_stop:0.0; close:41797.2
2024-01-27 23:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1og57wkztd-00079] (STOP & BUY)  created, [quantity 0.5] [price 42057.417002]
2024-01-27 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:109.70250486031259; atr_value:13.560845910669697; boll_up:2287.78108116837; boll_down:2246.06669660941; intra_trade_high:2274.08; long_stop:0.0; intra_trade_low:2266.6; short_stop:0.0; close:2269.37
2024-01-27 23:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1cwt2jc5xw-00080] (STOP & BUY)  created, [quantity 1.0] [price 2287.781081]
2024-01-27 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:133.90678195896498; atr_value:1.110366756820579; boll_up:94.16164458531122; boll_down:90.14146652579996; intra_trade_high:92.827; long_stop:0.0; intra_trade_low:92.029; short_stop:0.0; close:92.801
2024-01-27 23:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-16q8vzmifw-00081] (STOP & BUY)  created, [quantity 5.0] [price 94.161645]
2024-01-28 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:99.60272784917439; atr_value:226.76842891558672; boll_up:42032.33956915229; boll_down:41449.21598640329; intra_trade_high:41878.4; long_stop:0.0; intra_trade_low:41714.0; short_stop:0.0; close:41780.6
2024-01-28 00:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2peozmvk82-00082] (STOP & BUY)  created, [quantity 0.5] [price 42032.339569]
2024-01-28 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:35.37720081923612; atr_value:13.210975338027119; boll_up:2287.7807224889066; boll_down:2245.615944177762; intra_trade_high:2273.81; long_stop:0.0; intra_trade_low:2266.24; short_stop:0.0; close:2262.97
2024-01-28 00:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1id3dap4u7-00083] (STOP & BUY)  created, [quantity 1.0] [price 2287.780723]
2024-01-28 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:100.88038858530932; atr_value:1.1021166939476748; boll_up:94.17247359065796; boll_down:90.1419708537865; intra_trade_high:92.992; long_stop:0.0; intra_trade_low:92.409; short_stop:0.0; close:92.364
2024-01-28 00:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-15uu5x519j-00084] (STOP & BUY)  created, [quantity 5.0] [price 94.172474]
2024-01-28 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:64.25464809103931; atr_value:223.55355081822017; boll_up:42025.251695710365; boll_down:41451.03719317855; intra_trade_high:41875.3; long_stop:0.0; intra_trade_low:41764.9; short_stop:0.0; close:41758.1
2024-01-28 01:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1foptvie9s-00085] (STOP & BUY)  created, [quantity 0.5] [price 42025.251696]
2024-01-28 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:-17.645142471833534; atr_value:13.060006721920411; boll_up:2287.702500744428; boll_down:2245.4186103666852; intra_trade_high:2273.15; long_stop:0.0; intra_trade_low:2262.08; short_stop:0.0; close:2264.6
2024-01-28 01:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-29et2d19f6-00086] (STOP & SELL)  created, [quantity 1.0] [price 2245.41861]
2024-01-28 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:65.73359073358904; atr_value:1.0865481080291401; boll_up:94.20607651337443; boll_down:90.13847904218113; intra_trade_high:93.4; long_stop:0.0; intra_trade_low:92.119; short_stop:0.0; close:92.516
2024-01-28 01:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1edh47owr9-00087] (STOP & BUY)  created, [quantity 5.0] [price 94.206077]
2024-01-28 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:40.16077560980825; atr_value:218.50202566552306; boll_up:42024.78393476237; boll_down:41451.127176348746; intra_trade_high:41828.1; long_stop:0.0; intra_trade_low:41752.0; short_stop:0.0; close:41773.0
2024-01-28 02:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1q3r1xyhwi-00088] (STOP & BUY)  created, [quantity 0.5] [price 42024.783935]
2024-01-28 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:18.007632373985675; atr_value:12.575100084021479; boll_up:2283.8722857313332; boll_down:2247.6821587131135; intra_trade_high:2266.76; long_stop:0.0; intra_trade_low:2260.24; short_stop:0.0; close:2265.72
2024-01-28 02:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-25ps9a37iy-00089] (STOP & BUY)  created, [quantity 1.0] [price 2283.872286]
2024-01-28 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:109.46032913487532; atr_value:1.078178484988321; boll_up:94.21789067023487; boll_down:90.13166488532072; intra_trade_high:92.79; long_stop:0.0; intra_trade_low:92.206; short_stop:0.0; close:92.853
2024-01-28 02:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-18181azn9p-00090] (STOP & BUY)  created, [quantity 5.0] [price 94.217891]
2024-01-28 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:194.79166666666495; atr_value:217.25091905744057; boll_up:42046.43827629097; boll_down:41437.92839037571; intra_trade_high:41796.9; long_stop:0.0; intra_trade_low:41720.7; short_stop:0.0; close:41883.5
2024-01-28 03:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1zgt2qk255-00091] (STOP & BUY)  created, [quantity 0.5] [price 42046.438276]
2024-01-28 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:150.82571179263954; atr_value:12.447312722483238; boll_up:2284.3177556445885; boll_down:2247.451133244303; intra_trade_high:2270.4; long_stop:0.0; intra_trade_low:2262.8; short_stop:0.0; close:2271.78
2024-01-28 03:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1civd6yvqm-00092] (STOP & BUY)  created, [quantity 1.0] [price 2284.317756]
2024-01-28 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:129.15786178289218; atr_value:1.0547898258698318; boll_up:94.34166070417183; boll_down:90.05933929582818; intra_trade_high:93.325; long_stop:0.0; intra_trade_low:92.465; short_stop:0.0; close:93.109
2024-01-28 03:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2bq5oe3jc5-00093] (STOP & BUY)  created, [quantity 5.0] [price 94.341661]
2024-01-28 04:00:00+08:00 [INFO] (BTCUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958945-1zgt2qk255-00091] executed [quantity 0.5] [price $42046.438276] [Cost $4204.643828] [Commission: $11.56277053] [Available balance: $99988.43722947] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-11.56277] 
2024-01-28 04:00:00+08:00 [DEBUG] pos:0.5; cci_value:231.04708631254368; atr_value:216.17537093999042; boll_up:42133.3957568738; boll_down:41375.19313201509; intra_trade_high:41975.0; long_stop:0.0; intra_trade_low:41766.9; short_stop:0.0; close:42039.9
2024-01-28 04:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-12nj12k1vp-00094] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 40936.788071]
2024-01-28 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:102.79785665480055; atr_value:12.119672708823156; boll_up:2283.2278422968648; boll_down:2248.1154910364694; intra_trade_high:2277.18; long_stop:0.0; intra_trade_low:2265.71; short_stop:0.0; close:2270.28
2024-01-28 04:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2gdutq54hj-00095] (STOP & BUY)  created, [quantity 1.0] [price 2283.227842]
2024-01-28 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:116.42824482330853; atr_value:1.025691418764289; boll_up:94.42988569443581; boll_down:89.99966986111976; intra_trade_high:93.374; long_stop:0.0; intra_trade_low:92.816; short_stop:0.0; close:93.312
2024-01-28 04:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1p3boaa7qw-00096] (STOP & BUY)  created, [quantity 5.0] [price 94.429886]
2024-01-28 05:00:00+08:00 [DEBUG] pos:0.5; cci_value:188.57806518217333; atr_value:213.23225661020484; boll_up:42247.758518388946; boll_down:41295.941481611066; intra_trade_high:42060.9; long_stop:40936.78807111205; intra_trade_low:41883.5; short_stop:0.0; close:42125.0
2024-01-28 05:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-2o9wn494o7-00097] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41058.092266]
2024-01-28 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:59.94658395795457; atr_value:12.031555268106533; boll_up:2282.5507722521984; boll_down:2248.552561081137; intra_trade_high:2275.0; long_stop:0.0; intra_trade_low:2268.59; short_stop:0.0; close:2271.47
2024-01-28 05:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1kzn74pujp-00098] (STOP & BUY)  created, [quantity 1.0] [price 2282.550772]
2024-01-28 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:132.02414024331625; atr_value:1.0163276648638369; boll_up:94.6582749637; boll_down:89.85916948074444; intra_trade_high:93.329; long_stop:0.0; intra_trade_low:92.818; short_stop:0.0; close:93.47
2024-01-28 05:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-18unft183o-00099] (STOP & BUY)  created, [quantity 5.0] [price 94.658275]
2024-01-28 06:00:00+08:00 [DEBUG] pos:0.5; cci_value:137.47414323252175; atr_value:213.307083949623; boll_up:42336.826080377716; boll_down:41239.45169740005; intra_trade_high:42166.9; long_stop:41058.09226562694; intra_trade_low:41999.2; short_stop:0.0; close:42124.6
2024-01-28 06:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-144idvrir3-00100] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41084.103164]
2024-01-28 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:-44.876063633005; atr_value:11.979739389554776; boll_up:2280.408950704153; boll_down:2249.6466048514053; intra_trade_high:2273.6; long_stop:0.0; intra_trade_low:2265.66; short_stop:0.0; close:2264.9
2024-01-28 06:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2f8n1qgqaa-00101] (STOP & SELL)  created, [quantity 1.0] [price 2249.646605]
2024-01-28 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:119.86876387146633; atr_value:1.0076308001964327; boll_up:94.94503733974835; boll_down:89.68807377136278; intra_trade_high:93.752; long_stop:0.0; intra_trade_low:92.958; short_stop:0.0; close:93.669
2024-01-28 06:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-229emdyeoa-00102] (STOP & BUY)  created, [quantity 5.0] [price 94.945037]
2024-01-28 07:00:00+08:00 [DEBUG] pos:0.5; cci_value:92.44478730874337; atr_value:212.4743077822408; boll_up:42404.54024195782; boll_down:41210.30420248663; intra_trade_high:42193.3; long_stop:41084.103163461965; intra_trade_low:42036.4; short_stop:0.0; close:42095.8
2024-01-28 07:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-26kytr3654-00103] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41088.4336]
2024-01-28 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:-85.46279007734347; atr_value:11.894827882789683; boll_up:2280.602764146535; boll_down:2249.8483469645785; intra_trade_high:2272.45; long_stop:0.0; intra_trade_low:2262.1; short_stop:0.0; close:2266.88
2024-01-28 07:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1yrcovurb9-00104] (STOP & SELL)  created, [quantity 1.0] [price 2249.848347]
2024-01-28 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:176.15975422427366; atr_value:1.014208350073736; boll_up:95.42018489878738; boll_down:89.51014843454597; intra_trade_high:93.677; long_stop:0.0; intra_trade_low:93.083; short_stop:0.0; close:94.259
2024-01-28 07:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2ger2wjq4g-00105] (STOP & BUY)  created, [quantity 5.0] [price 95.420185]
2024-01-28 08:00:00+08:00 [DEBUG] pos:0.5; cci_value:34.04129793509977; atr_value:215.34242787497405; boll_up:42424.793898622396; boll_down:41220.78387915536; intra_trade_high:42193.3; long_stop:41088.43359953235; intra_trade_low:42043.8; short_stop:0.0; close:41969.9
2024-01-28 08:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-21ij53oyb8-00106] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41073.519375]
2024-01-28 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:-58.89518563636683; atr_value:11.798998646475525; boll_up:2280.730789564655; boll_down:2250.046988213124; intra_trade_high:2267.5; long_stop:0.0; intra_trade_low:2260.02; short_stop:0.0; close:2266.49
2024-01-28 08:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1ci9qo8n2h-00107] (STOP & SELL)  created, [quantity 1.0] [price 2250.046988]
2024-01-28 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:96.49811386580893; atr_value:1.0290073996300757; boll_up:95.57053733926261; boll_down:89.62712932740405; intra_trade_high:94.548; long_stop:0.0; intra_trade_low:93.485; short_stop:0.0; close:93.767
2024-01-28 08:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2qo2jv3gv5-00108] (STOP & BUY)  created, [quantity 5.0] [price 95.570537]
2024-01-28 09:00:00+08:00 [DEBUG] pos:0.5; cci_value:68.13060646379988; atr_value:219.58274880833923; boll_up:42466.747698976134; boll_down:41220.25230102385; intra_trade_high:42193.3; long_stop:41073.519375050135; intra_trade_low:41905.1; short_stop:0.0; close:42073.9
2024-01-28 09:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-24hiu6395x-00109] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41080.169706]
2024-01-28 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:176.49077815770383; atr_value:12.234624989129275; boll_up:2283.357762123743; boll_down:2249.622237876258; intra_trade_high:2267.59; long_stop:0.0; intra_trade_low:2261.98; short_stop:0.0; close:2277.78
2024-01-28 09:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1kqff2xmdf-00110] (STOP & BUY)  created, [quantity 1.0] [price 2283.357762]
2024-01-28 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:131.16182670340817; atr_value:1.0362430844491206; boll_up:95.66428753542735; boll_down:89.83849024235045; intra_trade_high:94.441; long_stop:0.0; intra_trade_low:93.081; short_stop:0.0; close:93.95
2024-01-28 09:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1kd1evyr6c-00111] (STOP & BUY)  created, [quantity 5.0] [price 95.664288]
2024-01-28 10:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958945-1kqff2xmdf-00110] executed [quantity 1.0] [price $2283.357762] [Cost $456.671553] [Commission: $1.25584677] [Available balance: $95782.5375547] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-1.255847] 
2024-01-28 10:00:00+08:00 [DEBUG] pos:0.5; cci_value:67.41770744602037; atr_value:217.67120727083275; boll_up:42434.39678260575; boll_down:41322.336550727574; intra_trade_high:42222.0; long_stop:41080.16970619663; intra_trade_low:41969.8; short_stop:0.0; close:42076.4
2024-01-28 10:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-14gq36kbct-00112] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41090.109722]
2024-01-28 10:00:00+08:00 [DEBUG] pos:1.0; cci_value:144.394806280529; atr_value:12.074395646263145; boll_up:2282.93269024973; boll_down:2252.8573097502726; intra_trade_high:2288.0; long_stop:0.0; intra_trade_low:2266.49; short_stop:0.0; close:2278.04
2024-01-28 10:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-1teva32qk9-00113] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2225.213143]
2024-01-28 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:103.06664445801273; atr_value:1.0283012396438704; boll_up:95.67322540460607; boll_down:90.21277459539392; intra_trade_high:95.087; long_stop:0.0; intra_trade_low:93.722; short_stop:0.0; close:94.339
2024-01-28 10:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-261fdw8wiu-00114] (STOP & BUY)  created, [quantity 5.0] [price 95.673226]
2024-01-28 11:00:00+08:00 [INFO] (SOLUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958945-261fdw8wiu-00114] executed [quantity 5.0] [price $95.673225] [Cost $95.673226] [Commission: $0.26310137] [Available balance: $95325.60290033] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-0.263101] 
2024-01-28 11:00:00+08:00 [DEBUG] pos:0.5; cci_value:87.99937663861297; atr_value:215.50704302533788; boll_up:42485.88309980955; boll_down:41332.51690019044; intra_trade_high:42222.0; long_stop:41090.10972219167; intra_trade_low:42072.4; short_stop:0.0; close:42204.1
2024-01-28 11:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-17v2hxrcak-00115] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41101.363376]
2024-01-28 11:00:00+08:00 [DEBUG] pos:1.0; cci_value:159.08647103727048; atr_value:12.012560783861284; boll_up:2289.273281718299; boll_down:2248.7422738372584; intra_trade_high:2288.0; long_stop:2225.2131426394317; intra_trade_low:2275.0; short_stop:0.0; close:2285.64
2024-01-28 11:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-1omzt52gud-00116] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2225.534684]
2024-01-28 11:00:00+08:00 [DEBUG] pos:5.0; cci_value:215.3797401499903; atr_value:1.0688905438191911; boll_up:97.02287187435316; boll_down:89.3899059034246; intra_trade_high:94.537; long_stop:0.0; intra_trade_low:93.806; short_stop:0.0; close:96.613
2024-01-28 11:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-2akj4mjiio-00117] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 91.227769]
2024-01-28 12:00:00+08:00 [DEBUG] pos:0.5; cci_value:295.1107784365525; atr_value:229.42091281337773; boll_up:42794.651343138234; boll_down:41132.94865686177; intra_trade_high:42222.0; long_stop:41101.363376268244; intra_trade_low:42050.0; short_stop:0.0; close:42711.3
2024-01-28 12:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-21qhnf112e-00118] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41567.011253]
2024-01-28 12:00:00+08:00 [DEBUG] pos:1.0; cci_value:192.3966922733531; atr_value:12.397982682251627; boll_up:2303.4375670775266; boll_down:2238.9502107002522; intra_trade_high:2288.0; long_stop:2225.5346839239214; intra_trade_low:2277.2; short_stop:0.0; close:2302.22
2024-01-28 12:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2qiswikow6-00119] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2239.50049]
2024-01-28 12:00:00+08:00 [DEBUG] pos:5.0; cci_value:205.80740514231636; atr_value:1.073496550709533; boll_up:98.14579660160048; boll_down:88.83553673173283; intra_trade_high:96.786; long_stop:91.22776917214021; intra_trade_low:94.179; short_stop:0.0; close:96.988
2024-01-28 12:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-16gjwgs15n-00120] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 91.789818]
2024-01-28 13:00:00+08:00 [DEBUG] pos:0.5; cci_value:173.95908929806362; atr_value:238.37051551390812; boll_up:42927.038905089255; boll_down:41088.62776157743; intra_trade_high:42760.0; long_stop:41567.01125337044; intra_trade_low:42202.4; short_stop:0.0; close:42534.0
2024-01-28 13:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-27mfgib1od-00121] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41600.373319]
2024-01-28 13:00:00+08:00 [DEBUG] pos:1.0; cci_value:124.43913447498042; atr_value:12.856134445696187; boll_up:2307.3095430197764; boll_down:2237.7382347580033; intra_trade_high:2303.97; long_stop:2239.5004900522913; intra_trade_low:2283.11; short_stop:0.0; close:2289.37
2024-01-28 13:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-1eyty1y99d-00122] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2240.628101]
2024-01-28 13:00:00+08:00 [DEBUG] pos:5.0; cci_value:102.5151483114524; atr_value:1.0982878585352471; boll_up:98.62483223981164; boll_down:88.81250109352169; intra_trade_high:97.372; long_stop:91.78981793631043; intra_trade_low:96.388; short_stop:0.0; close:96.112
2024-01-28 13:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1mpky2pfb7-00123] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 91.660903]
2024-01-28 14:00:00+08:00 [DEBUG] pos:0.5; cci_value:66.83799797858828; atr_value:242.90911519859625; boll_up:42975.182133552065; boll_down:41113.784533114595; intra_trade_high:42839.9; long_stop:41600.37331932768; intra_trade_low:42403.5; short_stop:0.0; close:42381.1
2024-01-28 14:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-2154724tce-00124] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41576.772601]
2024-01-28 14:00:00+08:00 [DEBUG] pos:1.0; cci_value:56.14676319673731; atr_value:12.829076391952587; boll_up:2309.2043035325432; boll_down:2238.4623631341246; intra_trade_high:2307.48; long_stop:2240.62810088238; intra_trade_low:2285.23; short_stop:0.0; close:2286.32
2024-01-28 14:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-1icff312qx-00125] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2240.768803]
2024-01-28 14:00:00+08:00 [DEBUG] pos:5.0; cci_value:54.48815079701882; atr_value:1.1069368091542355; boll_up:98.82086523045805; boll_down:89.00935699176418; intra_trade_high:97.372; long_stop:91.66090313561672; intra_trade_low:95.412; short_stop:0.0; close:95.584
2024-01-28 14:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1nwxgkc3rb-00126] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 91.615929]
2024-01-28 15:00:00+08:00 [DEBUG] pos:0.5; cci_value:53.67505856036498; atr_value:242.3849844124653; boll_up:43003.965557931915; boll_down:41155.93444206809; intra_trade_high:42839.9; long_stop:41576.7726009673; intra_trade_low:42267.1; short_stop:0.0; close:42366.3
2024-01-28 15:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-2qxopnj1q3-00127] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41579.498081]
2024-01-28 15:00:00+08:00 [DEBUG] pos:1.0; cci_value:34.10706513854813; atr_value:12.839384975653163; boll_up:2309.9983276474813; boll_down:2239.271672352519; intra_trade_high:2307.48; long_stop:2240.7688027618465; intra_trade_low:2282.28; short_stop:0.0; close:2281.42
2024-01-28 15:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2pzs5be4xk-00128] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2240.715198]
2024-01-28 15:00:00+08:00 [DEBUG] pos:5.0; cci_value:46.28538417099993; atr_value:1.0985562840867138; boll_up:98.98250404231398; boll_down:89.24694040213048; intra_trade_high:97.372; long_stop:91.61592859239798; intra_trade_low:95.201; short_stop:0.0; close:95.731
2024-01-28 15:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-28sf9eb6ba-00129] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 91.659507]
2024-01-28 16:00:00+08:00 [DEBUG] pos:0.5; cci_value:57.99375342403829; atr_value:246.63967736514712; boll_up:43047.817848411876; boll_down:41192.69326269923; intra_trade_high:42839.9; long_stop:41579.49808105518; intra_trade_low:42336.9; short_stop:0.0; close:42469.9
2024-01-28 16:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-25hm5sbgft-00130] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41557.373678]
2024-01-28 16:00:00+08:00 [DEBUG] pos:1.0; cci_value:16.276933308533128; atr_value:12.771551700618485; boll_up:2311.271875750511; boll_down:2239.8103464717115; intra_trade_high:2307.48; long_stop:2240.7151981266034; intra_trade_low:2279.83; short_stop:0.0; close:2284.49
2024-01-28 16:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2cr1waaedz-00131] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2241.067931]
2024-01-28 16:00:00+08:00 [DEBUG] pos:5.0; cci_value:71.91342910000982; atr_value:1.1202347195757276; boll_up:99.3688276549525; boll_down:89.29072790060309; intra_trade_high:97.372; long_stop:91.65950732274909; intra_trade_low:95.403; short_stop:0.0; close:96.499
2024-01-28 16:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1xhyvef2yp-00132] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 91.54678]
2024-01-28 17:00:00+08:00 [DEBUG] pos:0.5; cci_value:74.8888539480484; atr_value:248.47604234269176; boll_up:43109.291078523405; boll_down:41215.86447703215; intra_trade_high:42839.9; long_stop:41557.37367770124; intra_trade_low:42300.6; short_stop:0.0; close:42559.0
2024-01-28 17:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-13gfnkpp6r-00133] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41547.82458]
2024-01-28 17:00:00+08:00 [DEBUG] pos:1.0; cci_value:83.59690874661418; atr_value:12.837927321026735; boll_up:2314.8475145024786; boll_down:2238.9280410530773; intra_trade_high:2307.48; long_stop:2241.0679311567837; intra_trade_low:2276.08; short_stop:0.0; close:2293.61
2024-01-28 17:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-29unwnsfpy-00134] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2240.722778]
2024-01-28 17:00:00+08:00 [DEBUG] pos:5.0; cci_value:106.07053569261456; atr_value:1.1218303963863323; boll_up:99.90411567393225; boll_down:89.24188432606779; intra_trade_high:97.372; long_stop:91.54677945820622; intra_trade_low:95.536; short_stop:0.0; close:97.179
2024-01-28 17:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1myqscm9np-00135] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 91.756482]
2024-01-28 18:00:00+08:00 [DEBUG] pos:0.5; cci_value:72.7611889269094; atr_value:242.87734349077402; boll_up:43152.13593854097; boll_down:41262.15295034793; intra_trade_high:42839.9; long_stop:41547.82457981801; intra_trade_low:42407.0; short_stop:0.0; close:42582.8
2024-01-28 18:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-1uwffzx6o9-00136] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41576.937814]
2024-01-28 18:00:00+08:00 [DEBUG] pos:1.0; cci_value:58.41788986307693; atr_value:12.531348655110337; boll_up:2316.5102912868147; boll_down:2240.549708713185; intra_trade_high:2307.48; long_stop:2240.722777930661; intra_trade_low:2282.73; short_stop:0.0; close:2292.53
2024-01-28 18:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2ggr7xm16v-00137] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2242.316987]
2024-01-28 18:00:00+08:00 [DEBUG] pos:5.0; cci_value:175.6037952846463; atr_value:1.1559428002512442; boll_up:100.9419981820653; boll_down:88.9356684846014; intra_trade_high:97.59; long_stop:91.75648193879107; intra_trade_low:96.422; short_stop:0.0; close:98.949
2024-01-28 18:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-2rd8z3bgn8-00138] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.448098]
2024-01-28 19:00:00+08:00 [DEBUG] pos:0.5; cci_value:18.181881901883276; atr_value:236.04656096733595; boll_up:43132.139244323815; boll_down:41359.538533453975; intra_trade_high:42839.9; long_stop:41576.93781384797; intra_trade_low:42478.0; short_stop:0.0; close:42454.6
2024-01-28 19:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-17u2ahtj2m-00139] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41612.457883]
2024-01-28 19:00:00+08:00 [DEBUG] pos:1.0; cci_value:-61.41007809992196; atr_value:12.316951554649354; boll_up:2315.582794073768; boll_down:2243.174983704009; intra_trade_high:2307.48; long_stop:2242.3169869934263; intra_trade_low:2287.24; short_stop:0.0; close:2279.88
2024-01-28 19:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2h35ac6smk-00140] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2243.431852]
2024-01-28 19:00:00+08:00 [DEBUG] pos:5.0; cci_value:127.86926147704517; atr_value:1.1264985425420853; boll_up:101.49181241853353; boll_down:89.04052091479983; intra_trade_high:99.459; long_stop:93.44809743869354; intra_trade_low:97.171; short_stop:0.0; close:98.408
2024-01-28 19:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1hwbv7yidw-00141] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.601208]
2024-01-28 20:00:00+08:00 [DEBUG] pos:0.5; cci_value:-47.98432384639346; atr_value:227.33851775803765; boll_up:43083.56104362317; boll_down:41478.43895637686; intra_trade_high:42839.9; long_stop:41612.45788296985; intra_trade_low:42328.5; short_stop:0.0; close:42405.9
2024-01-28 20:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-1ikcrsajug-00142] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41657.739708]
2024-01-28 20:00:00+08:00 [DEBUG] pos:1.0; cci_value:-155.86304018132725; atr_value:12.181792309393419; boll_up:2314.5372484341897; boll_down:2245.2527515658094; intra_trade_high:2307.48; long_stop:2243.4318519158232; intra_trade_low:2275.11; short_stop:0.0; close:2275.01
2024-01-28 20:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2q2b337wcb-00143] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2244.13468]
2024-01-28 20:00:00+08:00 [DEBUG] pos:5.0; cci_value:63.900584347647275; atr_value:1.1312327581386683; boll_up:101.75454465889536; boll_down:89.33778867443803; intra_trade_high:99.459; long_stop:93.60120757878116; intra_trade_low:97.59; short_stop:0.0; close:97.893
2024-01-28 20:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1oeqgexcdk-00144] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.57659]
2024-01-28 21:00:00+08:00 [DEBUG] pos:0.5; cci_value:-107.45284961896952; atr_value:223.3955886602586; boll_up:43044.27691798886; boll_down:41573.58974867784; intra_trade_high:42839.9; long_stop:41657.739707658206; intra_trade_low:42272.0; short_stop:0.0; close:42386.3
2024-01-28 21:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-25afj4o41w-00145] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41678.242939]
2024-01-28 21:00:00+08:00 [DEBUG] pos:1.0; cci_value:-113.27179487179664; atr_value:11.961074799602697; boll_up:2314.280921580792; boll_down:2246.2035228636523; intra_trade_high:2307.48; long_stop:2244.1346799911544; intra_trade_low:2267.32; short_stop:0.0; close:2278.03
2024-01-28 21:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-1dtf1mcbm1-00146] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2245.282411]
2024-01-28 21:00:00+08:00 [DEBUG] pos:5.0; cci_value:60.8517161638989; atr_value:1.1229873587614172; boll_up:101.85575833020017; boll_down:89.73579722535543; intra_trade_high:99.459; long_stop:93.57658965767892; intra_trade_low:96.701; short_stop:0.0; close:97.602
2024-01-28 21:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-12pb4azu14-00147] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.619466]
2024-01-28 22:00:00+08:00 [DEBUG] pos:0.5; cci_value:-90.53883856087386; atr_value:223.88379534416563; boll_up:43024.17832014255; boll_down:41620.08834652414; intra_trade_high:42839.9; long_stop:41678.24293896666; intra_trade_low:42222.7; short_stop:0.0; close:42277.5
2024-01-28 22:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-2kk49bh965-00148] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41675.704264]
2024-01-28 22:00:00+08:00 [DEBUG] pos:1.0; cci_value:-137.21803141284934; atr_value:12.211405619511199; boll_up:2314.929847294514; boll_down:2245.1168193721523; intra_trade_high:2307.48; long_stop:2245.282411042066; intra_trade_low:2269.71; short_stop:0.0; close:2266.34
2024-01-28 22:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-235yogbjao-00149] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2243.980691]
2024-01-28 22:00:00+08:00 [DEBUG] pos:5.0; cci_value:13.080480317101605; atr_value:1.13549470475057; boll_up:101.73193995896433; boll_down:90.2471711521468; intra_trade_high:99.459; long_stop:93.61946573444064; intra_trade_low:97.264; short_stop:0.0; close:96.8
2024-01-28 22:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1nc3drnfx6-00150] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.554428]
2024-01-28 23:00:00+08:00 [DEBUG] pos:0.5; cci_value:-148.39091574001145; atr_value:219.19181374617224; boll_up:43015.32208706539; boll_down:41641.95569071242; intra_trade_high:42839.9; long_stop:41675.70426421034; intra_trade_low:42236.3; short_stop:0.0; close:42242.1
2024-01-28 23:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-1dczpvv7fv-00151] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41700.102569]
2024-01-28 23:00:00+08:00 [DEBUG] pos:1.0; cci_value:-128.67482941139056; atr_value:12.11726401444122; boll_up:2315.2749618397347; boll_down:2244.4639270491534; intra_trade_high:2307.48; long_stop:2243.980690778542; intra_trade_low:2262.0; short_stop:0.0; close:2268.7
2024-01-28 23:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-225cypabcq-00152] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2244.470227]
2024-01-28 23:00:00+08:00 [DEBUG] pos:5.0; cci_value:4.08755043932349; atr_value:1.126838960044153; boll_up:101.58824669653049; boll_down:90.78830885902511; intra_trade_high:99.459; long_stop:93.55442753529704; intra_trade_low:96.629; short_stop:0.0; close:97.047
2024-01-28 23:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-1hvee7zf8b-00153] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.599438]
2024-01-29 00:00:00+08:00 [DEBUG] pos:0.5; cci_value:-123.99577724992926; atr_value:216.64593670997084; boll_up:43004.78843572754; boll_down:41671.28934205027; intra_trade_high:42839.9; long_stop:41700.102568519906; intra_trade_low:42130.2; short_stop:0.0; close:42293.8
2024-01-29 00:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-2gu5nqfppq-00154] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41713.341129]
2024-01-29 00:00:00+08:00 [DEBUG] pos:1.0; cci_value:-75.18774496603649; atr_value:12.03530224862268; boll_up:2314.046990800796; boll_down:2246.5930091992036; intra_trade_high:2307.48; long_stop:2244.4702271249057; intra_trade_low:2260.23; short_stop:0.0; close:2273.01
2024-01-29 00:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2cvxrnrwfp-00155] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2244.896428]
2024-01-29 00:00:00+08:00 [DEBUG] pos:5.0; cci_value:10.50442017680712; atr_value:1.1137098182016214; boll_up:101.44973971320663; boll_down:91.3422602867934; intra_trade_high:99.459; long_stop:93.59943740777041; intra_trade_low:96.663; short_stop:0.0; close:97.408
2024-01-29 00:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-2a7eukqq3y-00156] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.667709]
2024-01-29 01:00:00+08:00 [DEBUG] pos:0.5; cci_value:-134.32082932563634; atr_value:209.43709894785417; boll_up:42996.92542534008; boll_down:41684.7301302155; intra_trade_high:42839.9; long_stop:41713.34112910815; intra_trade_low:42100.4; short_stop:0.0; close:42146.0
2024-01-29 01:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-1f6az29k6p-00157] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41750.827086]
2024-01-29 01:00:00+08:00 [DEBUG] pos:1.0; cci_value:-87.57608981167571; atr_value:11.772543949082186; boll_up:2313.710961010253; boll_down:2247.130150100858; intra_trade_high:2307.48; long_stop:2244.8964283071623; intra_trade_low:2265.42; short_stop:0.0; close:2268.69
2024-01-29 01:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-1wocexzvjf-00158] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2246.262772]
2024-01-29 01:00:00+08:00 [DEBUG] pos:5.0; cci_value:-118.39316652564315; atr_value:1.125431613034303; boll_up:101.24664906257341; boll_down:91.75790649298217; intra_trade_high:99.459; long_stop:93.66770894535158; intra_trade_low:96.971; short_stop:0.0; close:96.172
2024-01-29 01:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-2am6m85gpn-00159] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.606756]
2024-01-29 02:00:00+08:00 [DEBUG] pos:0.5; cci_value:-166.39574655423598; atr_value:209.09578994393956; boll_up:43003.18691545772; boll_down:41676.257528986745; intra_trade_high:42839.9; long_stop:41750.82708547116; intra_trade_low:42063.6; short_stop:0.0; close:41950.0
2024-01-29 02:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958945-1qyq4q4ipt-00160] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41752.601892]
2024-01-29 02:00:00+08:00 [DEBUG] pos:1.0; cci_value:-115.88330632091021; atr_value:11.749426695873707; boll_up:2315.4452221586653; boll_down:2244.6636667302237; intra_trade_high:2307.48; long_stop:2246.262771464773; intra_trade_low:2261.0; short_stop:0.0; close:2259.9
2024-01-29 02:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958945-2dxkecz4k7-00161] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2246.382981]
2024-01-29 02:00:00+08:00 [DEBUG] pos:5.0; cci_value:-188.8766384907514; atr_value:1.1232231435135687; boll_up:100.89868411568644; boll_down:92.2726492176469; intra_trade_high:99.459; long_stop:93.60675561222163; intra_trade_low:95.718; short_stop:0.0; close:95.268
2024-01-29 02:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-21e7dikdqa-00162] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.61824]
2024-01-29 03:00:00+08:00 [INFO] (BTCUSDT|BYBIT|NET) - CLOSE SELL order [number aio-1706958945-1qyq4q4ipt-00160] executed [quantity 0.5] [price $41752.601892] [Cost $4175.260189] [Commission: $11.48196552] [Available balance: $95071.52951681] [Position: #0.5] [Gross P&L: $-146.918192] [Net P&L: $-158.400157] 
2024-01-29 03:00:00+08:00 [INFO] ========> Trade closed, pnl: -146.918192
2024-01-29 03:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - CLOSE SELL order [number aio-1706958945-2dxkecz4k7-00161] executed [quantity 1.0] [price $2246.382981] [Cost $449.276596] [Commission: $1.23551064] [Available balance: $99237.96305317] [Position: #1.0] [Gross P&L: $-36.974781] [Net P&L: $-38.210292] 
2024-01-29 03:00:00+08:00 [INFO] ========> Trade closed, pnl: -36.974781
2024-01-29 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:-179.68399486057865; atr_value:209.0404706228869; boll_up:43097.412694137405; boll_down:41548.2650836404; intra_trade_high:42839.9; long_stop:41752.60189229152; intra_trade_low:41910.5; short_stop:0.0; close:41770.0
2024-01-29 03:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2kaycrra7s-00163] (STOP & SELL)  created, [quantity 0.5] [price 41548.265084]
2024-01-29 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:-155.0150629098014; atr_value:11.96668971011632; boll_up:2319.9562113887923; boll_down:2237.373788611206; intra_trade_high:2307.48; long_stop:2246.3829811814567; intra_trade_low:2255.45; short_stop:0.0; close:2252.77
2024-01-29 03:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2778bivrzh-00164] (STOP & SELL)  created, [quantity 1.0] [price 2237.373789]
2024-01-29 03:00:00+08:00 [DEBUG] pos:5.0; cci_value:-166.09973543209068; atr_value:1.1418623510432397; boll_up:100.72813750576202; boll_down:92.50508471646023; intra_trade_high:99.459; long_stop:93.61823965372945; intra_trade_low:95.11; short_stop:0.0; close:94.507
2024-01-29 03:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958945-2oztznhkxx-00165] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 93.521316]
2024-01-29 04:00:00+08:00 [INFO] (SOLUSDT|BYBIT|NET) - CLOSE SELL order [number aio-1706958945-2oztznhkxx-00165] executed [quantity 5.0] [price $93.521316] [Cost $93.521316] [Commission: $0.25718362] [Available balance: $99683.61787455001] [Position: #5.0] [Gross P&L: $-10.759548] [Net P&L: $-11.016732] 
2024-01-29 04:00:00+08:00 [INFO] ========> Trade closed, pnl: -10.759548
2024-01-29 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:-126.58391897377574; atr_value:211.00944196911567; boll_up:43127.50614940294; boll_down:41501.5382950415; intra_trade_high:42018.5; long_stop:41752.60189229152; intra_trade_low:41704.3; short_stop:0.0; close:41926.7
2024-01-29 04:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2noo39qkwn-00166] (STOP & SELL)  created, [quantity 0.5] [price 41501.538295]
2024-01-29 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:-112.55082053561203; atr_value:11.900549054829238; boll_up:2321.2817800507155; boll_down:2234.1348866159497; intra_trade_high:2265.19; long_stop:2246.3829811814567; intra_trade_low:2245.02; short_stop:0.0; close:2260.82
2024-01-29 04:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1xkeev2wcr-00167] (STOP & SELL)  created, [quantity 1.0] [price 2234.134887]
2024-01-29 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:-122.85532329362383; atr_value:1.1766775174981317; boll_up:100.49728425844036; boll_down:92.84316018600417; intra_trade_high:99.459; long_stop:93.52131577457516; intra_trade_low:94.13; short_stop:0.0; close:95.304
2024-01-29 04:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1pr9tpvrbg-00168] (STOP & SELL)  created, [quantity 5.0] [price 92.84316]
2024-01-29 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:-75.85607788148563; atr_value:206.69599815978432; boll_up:43156.29835919785; boll_down:41445.65719635772; intra_trade_high:41948.5; long_stop:41752.60189229152; intra_trade_low:41660.0; short_stop:0.0; close:41960.3
2024-01-29 05:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-27ypc85qnk-00169] (STOP & SELL)  created, [quantity 0.5] [price 41445.657196]
2024-01-29 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:-49.960899530060914; atr_value:11.77285377718414; boll_up:2321.0577021880163; boll_down:2231.748964478649; intra_trade_high:2262.07; long_stop:2246.3829811814567; intra_trade_low:2248.0; short_stop:0.0; close:2262.15
2024-01-29 05:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1ijzs3sp3t-00170] (STOP & SELL)  created, [quantity 1.0] [price 2231.748965]
2024-01-29 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:-53.624714762155655; atr_value:1.1665738585904362; boll_up:100.50262003929616; boll_down:92.76193551625944; intra_trade_high:95.597; long_stop:93.52131577457516; intra_trade_low:93.41; short_stop:0.0; close:95.93
2024-01-29 05:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1nc25g8658-00171] (STOP & SELL)  created, [quantity 5.0] [price 92.761936]
2024-01-29 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:-96.3985809870207; atr_value:211.80615112060622; boll_up:43113.693344043844; boll_down:41389.284433733934; intra_trade_high:42013.6; long_stop:41752.60189229152; intra_trade_low:41793.0; short_stop:0.0; close:41820.5
2024-01-29 06:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1soeu8sc11-00172] (STOP & SELL)  created, [quantity 0.5] [price 41389.284434]
2024-01-29 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:-139.57994709499667; atr_value:12.293257180788286; boll_up:2317.80800190225; boll_down:2228.999775875528; intra_trade_high:2265.74; long_stop:2246.3829811814567; intra_trade_low:2257.19; short_stop:0.0; close:2248.23
2024-01-29 06:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1t6dxs3ucf-00173] (STOP & SELL)  created, [quantity 1.0] [price 2228.999776]
2024-01-29 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:-67.78427892095606; atr_value:1.1756183504426518; boll_up:100.617783352123; boll_down:92.40466109232146; intra_trade_high:96.173; long_stop:93.52131577457516; intra_trade_low:94.85; short_stop:0.0; close:94.809
2024-01-29 06:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1sy54xzhy9-00174] (STOP & SELL)  created, [quantity 5.0] [price 92.404661]
2024-01-29 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:-37.58302039335841; atr_value:215.14936341492674; boll_up:43070.15604941889; boll_down:41375.277283914445; intra_trade_high:41964.6; long_stop:41752.60189229152; intra_trade_low:41587.4; short_stop:0.0; close:42016.1
2024-01-29 07:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1ng2p6nhte-00175] (STOP & SELL)  created, [quantity 0.5] [price 41375.277284]
2024-01-29 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:-88.14651319498016; atr_value:12.311665297444497; boll_up:2315.929532736526; boll_down:2227.121578374583; intra_trade_high:2262.8; long_stop:2246.3829811814567; intra_trade_low:2236.32; short_stop:0.0; close:2255.56
2024-01-29 07:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2o8x3o4jdg-00176] (STOP & SELL)  created, [quantity 1.0] [price 2227.121578]
2024-01-29 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:-29.73930262943059; atr_value:1.197019743421435; boll_up:100.6206078598797; boll_down:92.38461436234252; intra_trade_high:96.096; long_stop:93.52131577457516; intra_trade_low:94.652; short_stop:0.0; close:95.957
2024-01-29 07:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-29pda7rgx6-00177] (STOP & SELL)  created, [quantity 5.0] [price 92.384614]
2024-01-29 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:-18.83685385210847; atr_value:214.490614835014; boll_up:43060.00194174064; boll_down:41338.264724926026; intra_trade_high:42059.4; long_stop:41752.60189229152; intra_trade_low:41733.1; short_stop:0.0; close:41956.6
2024-01-29 08:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2hz8m83qdd-00178] (STOP & SELL)  created, [quantity 0.5] [price 41338.264725]
2024-01-29 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:-47.30781883978328; atr_value:12.340547282825613; boll_up:2313.988221679072; boll_down:2225.7306672098166; intra_trade_high:2259.12; long_stop:2246.3829811814567; intra_trade_low:2243.86; short_stop:0.0; close:2256.33
2024-01-29 08:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1igeehm93d-00179] (STOP & SELL)  created, [quantity 1.0] [price 2225.730667]
2024-01-29 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:-17.21666496388564; atr_value:1.2154958994096474; boll_up:100.6496756160675; boll_down:92.32532438393244; intra_trade_high:96.363; long_stop:93.52131577457516; intra_trade_low:94.502; short_stop:0.0; close:95.312
2024-01-29 08:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2o39dktgto-00180] (STOP & SELL)  created, [quantity 5.0] [price 92.325324]
2024-01-29 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:80.56161542346423; atr_value:219.0484817107983; boll_up:43037.36646863929; boll_down:41336.611309138476; intra_trade_high:42055.0; long_stop:41752.60189229152; intra_trade_low:41859.2; short_stop:0.0; close:42147.7
2024-01-29 09:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2675kt6rfj-00181] (STOP & BUY)  created, [quantity 0.5] [price 43037.366469]
2024-01-29 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:53.3488462284333; atr_value:12.41563904519416; boll_up:2312.181371967148; boll_down:2225.527516921741; intra_trade_high:2261.1; long_stop:2246.3829811814567; intra_trade_low:2249.13; short_stop:0.0; close:2263.33
2024-01-29 09:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2g9ayeo6qp-00182] (STOP & BUY)  created, [quantity 1.0] [price 2312.181372]
2024-01-29 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:78.9974482072534; atr_value:1.24335071934143; boll_up:100.67934661064281; boll_down:92.42732005602379; intra_trade_high:96.622; long_stop:93.52131577457516; intra_trade_low:95.022; short_stop:0.0; close:96.916
2024-01-29 09:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2ikimxmsj6-00183] (STOP & BUY)  created, [quantity 5.0] [price 100.679347]
2024-01-29 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:129.0891739535694; atr_value:219.12000885446426; boll_up:42991.037417808315; boll_down:41354.26258219167; intra_trade_high:42299.3; long_stop:41752.60189229152; intra_trade_low:41954.1; short_stop:0.0; close:42211.8
2024-01-29 10:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2pjtu6si5q-00184] (STOP & BUY)  created, [quantity 0.5] [price 42991.037418]
2024-01-29 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:96.20939766635006; atr_value:12.18210029306067; boll_up:2309.282996047162; boll_down:2226.553670619505; intra_trade_high:2273.0; long_stop:2246.3829811814567; intra_trade_low:2255.88; short_stop:0.0; close:2267.64
2024-01-29 10:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1qjnawjtr7-00185] (STOP & BUY)  created, [quantity 1.0] [price 2309.282996]
2024-01-29 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:157.46348414677254; atr_value:1.231883747924703; boll_up:100.72924915683323; boll_down:92.4400841765001; intra_trade_high:97.288; long_stop:93.52131577457516; intra_trade_low:95.283; short_stop:0.0; close:97.063
2024-01-29 10:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-19tfv9zbv8-00186] (STOP & BUY)  created, [quantity 5.0] [price 100.729249]
2024-01-29 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:160.4040500373515; atr_value:222.58846329890426; boll_up:42921.64248458207; boll_down:41395.22418208458; intra_trade_high:42320.5; long_stop:41752.60189229152; intra_trade_low:42107.2; short_stop:0.0; close:42303.1
2024-01-29 11:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-2a55n1gf7c-00187] (STOP & BUY)  created, [quantity 0.5] [price 42921.642485]
2024-01-29 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:143.97117538221943; atr_value:12.155534277714104; boll_up:2302.335041796662; boll_down:2230.9605137588924; intra_trade_high:2270.31; long_stop:2246.3829811814567; intra_trade_low:2262.05; short_stop:0.0; close:2270.74
2024-01-29 11:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1asp3nmcbz-00188] (STOP & BUY)  created, [quantity 1.0] [price 2302.335042]
2024-01-29 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:176.60867523931105; atr_value:1.2596903279345202; boll_up:100.8561207895704; boll_down:92.3858792104296; intra_trade_high:97.69; long_stop:93.52131577457516; intra_trade_low:96.402; short_stop:0.0; close:97.833
2024-01-29 11:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-1e9e3kgpjy-00189] (STOP & BUY)  created, [quantity 5.0] [price 100.856121]
2024-01-29 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:84.09056337915108; atr_value:221.962008779501; boll_up:42817.13538669779; boll_down:41456.94239107998; intra_trade_high:42484.9; long_stop:41752.60189229152; intra_trade_low:42211.8; short_stop:0.0; close:42197.7
2024-01-29 12:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-26i69sofov-00190] (STOP & BUY)  created, [quantity 0.5] [price 42817.135387]
2024-01-29 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:86.60091495764942; atr_value:12.099523953004475; boll_up:2293.906087055183; boll_down:2236.5950240559287; intra_trade_high:2276.96; long_stop:2246.3829811814567; intra_trade_low:2267.64; short_stop:0.0; close:2267.38
2024-01-29 12:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-2m3z3k8997-00191] (STOP & BUY)  created, [quantity 1.0] [price 2293.906087]
2024-01-29 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:90.2882785012048; atr_value:1.261298196577861; boll_up:100.31372711509539; boll_down:92.7153839960157; intra_trade_high:98.986; long_stop:93.52131577457516; intra_trade_low:96.892; short_stop:0.0; close:97.033
2024-01-29 12:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2md8sbv6jj-00192] (STOP & BUY)  created, [quantity 5.0] [price 100.313727]
2024-01-29 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:45.34945904809138; atr_value:221.8668226099938; boll_up:42746.17436764199; boll_down:41490.84785458025; intra_trade_high:42324.2; long_stop:41752.60189229152; intra_trade_low:42165.8; short_stop:0.0; close:42121.1
2024-01-29 13:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1gtorngv8z-00193] (STOP & BUY)  created, [quantity 0.5] [price 42746.174368]
2024-01-29 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:43.215009994019184; atr_value:12.05901541213982; boll_up:2290.352863636742; boll_down:2238.3593585854787; intra_trade_high:2272.89; long_stop:2246.3829811814567; intra_trade_low:2265.05; short_stop:0.0; close:2263.78
2024-01-29 13:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958945-1xv9md2p8b-00194] (STOP & BUY)  created, [quantity 1.0] [price 2290.352864]
2024-01-29 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:31.331551642824856; atr_value:1.272463837064943; boll_up:99.86312027826708; boll_down:92.93521305506627; intra_trade_high:97.967; long_stop:93.52131577457516; intra_trade_low:96.83; short_stop:0.0; close:96.331
2024-01-29 13:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958945-2m7tw1f9y5-00195] (STOP & BUY)  created, [quantity 5.0] [price 99.86312]
2024-01-29 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:37.737481557039324; atr_value:219.22867885807426; boll_up:42686.540811251856; boll_down:41521.85918874815; intra_trade_high:42265.0; long_stop:41752.60189229152; intra_trade_low:42101.6; short_stop:0.0; close:42148.3
2024-01-29 14:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958945-1hvi4xgg1t-00196] (STOP & BUY)  created, [quantity 0.5] [price 42686.540811]
2024-01-29 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:47.13823748897851; atr_value:11.812363517997415; boll_up:2288.422456805433; boll_down:2239.3230987501224; intra_trade_high:2269.52; long_stop:2246.3829811814567; intra_trade_low:2262.23; short_stop:0.0; close:2266.31
2024-01-29 14:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-16botfvvpv-00197] (STOP & BUY)  created, [quantity 1.0] [price 2288.422457]
2024-01-29 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:53.6130536130524; atr_value:1.265796476565081; boll_up:99.69358045841527; boll_down:93.03864176380698; intra_trade_high:97.398; long_stop:93.52131577457516; intra_trade_low:96.131; short_stop:0.0; close:97.298
2024-01-29 14:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2hynt5drub-00198] (STOP & BUY)  created, [quantity 5.0] [price 99.693581]
2024-01-29 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-10.511154587904798; atr_value:221.4527697623575; boll_up:42620.106235205254; boll_down:41549.78265368362; intra_trade_high:42237.9; long_stop:41752.60189229152; intra_trade_low:42116.1; short_stop:0.0; close:42039.7
2024-01-29 15:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-162xzz36ri-00199] (STOP & SELL)  created, [quantity 0.5] [price 41549.782654]
2024-01-29 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-4.586117087529628; atr_value:11.975723419799404; boll_up:2284.7001718126044; boll_down:2240.8331615207294; intra_trade_high:2269.48; long_stop:2246.3829811814567; intra_trade_low:2263.21; short_stop:0.0; close:2258.12
2024-01-29 15:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2g2hdmm4rx-00200] (STOP & SELL)  created, [quantity 1.0] [price 2240.833162]
2024-01-29 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:43.06034257663759; atr_value:1.2681091114628908; boll_up:99.50481528661444; boll_down:93.13162915783002; intra_trade_high:97.523; long_stop:93.52131577457516; intra_trade_low:96.31; short_stop:0.0; close:96.74
2024-01-29 15:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1x557hrp3x-00201] (STOP & BUY)  created, [quantity 5.0] [price 99.504815]
2024-01-29 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:-45.8048707352897; atr_value:221.75509754205675; boll_up:42587.23418453161; boll_down:41563.75470435727; intra_trade_high:42226.7; long_stop:41752.60189229152; intra_trade_low:41974.4; short_stop:0.0; close:42107.4
2024-01-29 16:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1y581cr48w-00202] (STOP & SELL)  created, [quantity 0.5] [price 41563.754704]
2024-01-29 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:-52.788243076123635; atr_value:11.911042062130159; boll_up:2284.2797693053035; boll_down:2240.809119583584; intra_trade_high:2270.33; long_stop:2246.3829811814567; intra_trade_low:2256.85; short_stop:0.0; close:2262.34
2024-01-29 16:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2m32vnpysx-00203] (STOP & SELL)  created, [quantity 1.0] [price 2240.80912]
2024-01-29 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:13.055380080015805; atr_value:1.26437253603808; boll_up:99.5405924307599; boll_down:93.11896312479568; intra_trade_high:97.775; long_stop:93.52131577457516; intra_trade_low:96.563; short_stop:0.0; close:97.008
2024-01-29 16:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1b4zpfiq37-00204] (STOP & BUY)  created, [quantity 5.0] [price 99.540593]
2024-01-29 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:26.706231454003653; atr_value:224.70085758177066; boll_up:42597.919345634175; boll_down:41557.236209921364; intra_trade_high:42140.0; long_stop:41752.60189229152; intra_trade_low:41939.6; short_stop:0.0; close:42279.6
2024-01-29 17:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2r5c285pn9-00205] (STOP & BUY)  created, [quantity 0.5] [price 42597.919346]
2024-01-29 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:38.32836884848901; atr_value:12.160425155349946; boll_up:2285.463253676778; boll_down:2240.080079656554; intra_trade_high:2263.86; long_stop:2246.3829811814567; intra_trade_low:2252.43; short_stop:0.0; close:2272.79
2024-01-29 17:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1iq8pxiznx-00206] (STOP & BUY)  created, [quantity 1.0] [price 2285.463254]
2024-01-29 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:29.113924050632903; atr_value:1.267602878850199; boll_up:99.5880310498238; boll_down:93.09563561684283; intra_trade_high:97.3; long_stop:93.52131577457516; intra_trade_low:96.262; short_stop:0.0; close:97.264
2024-01-29 17:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2ev2v3j974-00207] (STOP & BUY)  created, [quantity 5.0] [price 99.588031]
2024-01-29 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:103.43369652610943; atr_value:220.68199985604767; boll_up:42599.249912610554; boll_down:41556.36119850054; intra_trade_high:42323.9; long_stop:41752.60189229152; intra_trade_low:41943.0; short_stop:0.0; close:42297.9
2024-01-29 18:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1f4ryt9uf3-00208] (STOP & BUY)  created, [quantity 0.5] [price 42599.249913]
2024-01-29 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:152.7637815847356; atr_value:11.916773770192556; boll_up:2286.021817561381; boll_down:2239.692626883065; intra_trade_high:2272.79; long_stop:2246.3829811814567; intra_trade_low:2254.21; short_stop:0.0; close:2274.55
2024-01-29 18:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2bs79c813n-00209] (STOP & BUY)  created, [quantity 1.0] [price 2286.021818]
2024-01-29 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:90.59576563269776; atr_value:1.2555646256144415; boll_up:99.65720061811366; boll_down:93.05324382633081; intra_trade_high:97.596; long_stop:93.52131577457516; intra_trade_low:96.357; short_stop:0.0; close:97.649
2024-01-29 18:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-29gxtvnpav-00210] (STOP & BUY)  created, [quantity 5.0] [price 99.657201]
2024-01-29 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:51.94800770004043; atr_value:219.37207414725196; boll_up:42615.52204523298; boll_down:41549.68906587812; intra_trade_high:42368.9; long_stop:41752.60189229152; intra_trade_low:42186.2; short_stop:0.0; close:42232.4
2024-01-29 19:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2oms8226bz-00211] (STOP & BUY)  created, [quantity 0.5] [price 42615.522045]
2024-01-29 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:-6.442237829985009; atr_value:12.06580039571926; boll_up:2285.243281534654; boll_down:2239.896718465346; intra_trade_high:2276.38; long_stop:2246.3829811814567; intra_trade_low:2268.6; short_stop:0.0; close:2263.52
2024-01-29 19:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-18uwnmdo96-00212] (STOP & SELL)  created, [quantity 1.0] [price 2239.896719]
2024-01-29 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:75.55889771427707; atr_value:1.2549319173452267; boll_up:99.83007189505285; boll_down:93.02192810494715; intra_trade_high:97.924; long_stop:93.52131577457516; intra_trade_low:96.81; short_stop:0.0; close:97.446
2024-01-29 19:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-28pq25gu1p-00213] (STOP & BUY)  created, [quantity 5.0] [price 99.830072]
2024-01-29 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:-52.08925108233042; atr_value:227.48375260415833; boll_up:42611.76979743893; boll_down:41568.596869227724; intra_trade_high:42334.6; long_stop:41752.60189229152; intra_trade_low:42174.0; short_stop:0.0; close:42086.4
2024-01-29 20:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1y1rtzogpb-00214] (STOP & SELL)  created, [quantity 0.5] [price 41568.596869]
2024-01-29 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:-124.53935080015727; atr_value:12.186999570447094; boll_up:2285.6510956844654; boll_down:2238.945570982202; intra_trade_high:2275.14; long_stop:2246.3829811814567; intra_trade_low:2260.28; short_stop:0.0; close:2255.01
2024-01-29 20:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1885gbvvqc-00215] (STOP & SELL)  created, [quantity 1.0] [price 2238.945571]
2024-01-29 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:-5.736788370849768; atr_value:1.2703028872588331; boll_up:99.80413217131712; boll_down:93.2332011620162; intra_trade_high:98.016; long_stop:93.52131577457516; intra_trade_low:97.047; short_stop:0.0; close:96.936
2024-01-29 20:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1krk4f8b25-00216] (STOP & SELL)  created, [quantity 5.0] [price 93.233201]
2024-01-29 21:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - OPEN SELL order [number aio-1706958946-1885gbvvqc-00215] executed [quantity 1.0] [price $2238.945571] [Cost $447.789114] [Commission: $1.23142007] [Available balance: $99778.05968048] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-1.23142] 
2024-01-29 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:-148.43647867806715; atr_value:229.14140531746762; boll_up:42562.09599410391; boll_down:41642.27067256274; intra_trade_high:42362.0; long_stop:41752.60189229152; intra_trade_low:41957.2; short_stop:0.0; close:41986.0
2024-01-29 21:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-11suhsohpd-00217] (STOP & SELL)  created, [quantity 0.5] [price 41642.270673]
2024-01-29 21:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-219.9838672121874; atr_value:12.418174463105311; boll_up:2288.5470947439676; boll_down:2234.990683033811; intra_trade_high:2268.74; long_stop:2246.3829811814567; intra_trade_low:2254.03; short_stop:0.0; close:2243.24
2024-01-29 21:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1boeypi3x7-00218] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2302.584507]
2024-01-29 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:-179.88114587566162; atr_value:1.2814831924953431; boll_up:99.46781887119757; boll_down:93.76151446213576; intra_trade_high:97.95; long_stop:93.52131577457516; intra_trade_low:96.623; short_stop:0.0; close:96.235
2024-01-29 21:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1cq969ncxf-00219] (STOP & SELL)  created, [quantity 5.0] [price 93.761515]
2024-01-29 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:-153.00966206294123; atr_value:234.54583606436947; boll_up:42561.625988751446; boll_down:41643.01845569299; intra_trade_high:42124.6; long_stop:41752.60189229152; intra_trade_low:41901.6; short_stop:0.0; close:41929.2
2024-01-29 22:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1ewa8g1bz4-00220] (STOP & SELL)  created, [quantity 0.5] [price 41643.018456]
2024-01-29 22:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-173.7864616067099; atr_value:12.741963531627272; boll_up:2291.3296772534013; boll_down:2230.2169894132658; intra_trade_high:2255.5; long_stop:2246.3829811814567; intra_trade_low:2238.01; short_stop:2302.584507208148; close:2242.9
2024-01-29 22:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-184enap2u5-00221] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2297.72821]
2024-01-29 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:-143.74983811226187; atr_value:1.2961457800494294; boll_up:99.34342839916398; boll_down:93.96890493416932; intra_trade_high:97.04; long_stop:93.52131577457516; intra_trade_low:95.707; short_stop:0.0; close:96.051
2024-01-29 22:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1hz6qmq7ga-00222] (STOP & SELL)  created, [quantity 5.0] [price 93.968905]
2024-01-29 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:147.14129546492097; atr_value:255.1661742804693; boll_up:42744.63991504467; boll_down:41535.26008495531; intra_trade_high:42094.0; long_stop:41752.60189229152; intra_trade_low:41767.9; short_stop:0.0; close:42637.6
2024-01-29 23:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-17ct74b3md-00223] (STOP & BUY)  created, [quantity 0.5] [price 42744.639915]
2024-01-29 23:00:00+08:00 [DEBUG] pos:-1.0; cci_value:22.180794399633527; atr_value:13.627309633260547; boll_up:2293.886547004453; boll_down:2229.051230773325; intra_trade_high:2250.87; long_stop:2246.3829811814567; intra_trade_low:2231.47; short_stop:2297.7282103644616; close:2274.67
2024-01-29 23:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2dhqs4xwfb-00224] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2302.33201]
2024-01-29 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:225.02148269666012; atr_value:1.4145813027968912; boll_up:100.49131653197503; boll_down:93.26179457913602; intra_trade_high:96.998; long_stop:93.52131577457516; intra_trade_low:95.511; short_stop:0.0; close:99.897
2024-01-29 23:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2o922rghvo-00225] (STOP & BUY)  created, [quantity 5.0] [price 100.491317]
2024-01-30 00:00:00+08:00 [INFO] (BTCUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958946-17ct74b3md-00223] executed [quantity 0.5] [price $42744.639915] [Cost $4274.463992] [Commission: $11.75477598] [Available balance: $99318.5157905] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-11.754776] 
2024-01-30 00:00:00+08:00 [INFO] (SOLUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958946-2o922rghvo-00225] executed [quantity 5.0] [price $100.491317] [Cost $100.491317] [Commission: $0.27635112] [Available balance: $95043.77544737999] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-0.276351] 
2024-01-30 00:00:00+08:00 [DEBUG] pos:0.5; cci_value:258.8613108375879; atr_value:274.325498611647; boll_up:43180.720073636454; boll_down:41250.46881525241; intra_trade_high:42642.7; long_stop:41752.60189229152; intra_trade_low:41854.3; short_stop:0.0; close:43182.1
2024-01-30 00:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2fpjpzzfpq-00226] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41873.507407]
2024-01-30 00:00:00+08:00 [DEBUG] pos:-1.0; cci_value:192.72709121086035; atr_value:14.532413881211932; boll_up:2306.116770617795; boll_down:2222.4587849377604; intra_trade_high:2275.0; long_stop:2246.3829811814567; intra_trade_low:2231.47; short_stop:2302.3320100929545; close:2298.97
2024-01-30 00:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-21jcbrexsg-00227] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2307.038552]
2024-01-30 00:00:00+08:00 [DEBUG] pos:5.0; cci_value:239.7572590282543; atr_value:1.4738427653631092; boll_up:101.69526328279962; boll_down:92.74884782831144; intra_trade_high:100.37; long_stop:93.52131577457516; intra_trade_low:95.736; short_stop:0.0; close:101.028
2024-01-30 00:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1scsaqovjd-00228] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.092018]
2024-01-30 01:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - CLOSE BUY order [number aio-1706958946-21jcbrexsg-00227] executed [quantity 1.0] [price $2307.038552] [Cost $461.407711] [Commission: $1.2688712] [Available balance: $94873.92227817999] [Position: #-1.0] [Gross P&L: $-68.092981] [Net P&L: $-69.361852] 
2024-01-30 01:00:00+08:00 [INFO] ========> Trade closed, pnl: -68.092981
2024-01-30 01:00:00+08:00 [DEBUG] pos:0.5; cci_value:167.89801402030744; atr_value:280.0208513032581; boll_up:43383.237153953036; boll_down:41154.31840160251; intra_trade_high:43300.0; long_stop:41873.50740721943; intra_trade_low:42501.5; short_stop:0.0; close:42973.4
2024-01-30 01:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-21cit7ykt8-00229] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41843.891573]
2024-01-30 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:190.23283386823636; atr_value:14.703989179576672; boll_up:2317.3642495297104; boll_down:2216.399083803623; intra_trade_high:2301.95; long_stop:2246.3829811814567; intra_trade_low:2231.47; short_stop:2307.038552182302; close:2302.25
2024-01-30 01:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-22ogw93xzo-00230] (STOP & BUY)  created, [quantity 1.0] [price 2317.36425]
2024-01-30 01:00:00+08:00 [DEBUG] pos:5.0; cci_value:151.14435798874885; atr_value:1.4723094977565954; boll_up:102.48460227430076; boll_down:92.46317550347692; intra_trade_high:101.756; long_stop:94.09201762011183; intra_trade_low:98.916; short_stop:0.0; close:100.49
2024-01-30 01:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1vrs2uqfno-00231] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.099991]
2024-01-30 02:00:00+08:00 [DEBUG] pos:0.5; cci_value:106.87268178400826; atr_value:281.7290809142934; boll_up:43547.441311897885; boll_down:41106.72535476876; intra_trade_high:43300.0; long_stop:41843.89157322306; intra_trade_low:42905.1; short_stop:0.0; close:43006.1
2024-01-30 02:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-283syzgkkx-00232] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41835.008779]
2024-01-30 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:124.63562656302143; atr_value:14.954146299741394; boll_up:2325.0480296091587; boll_down:2213.5519703908417; intra_trade_high:2314.22; long_stop:2246.3829811814567; intra_trade_low:2295.3; short_stop:2307.038552182302; close:2299.86
2024-01-30 02:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1pggarss27-00233] (STOP & BUY)  created, [quantity 1.0] [price 2325.04803]
2024-01-30 02:00:00+08:00 [DEBUG] pos:5.0; cci_value:91.29834089636887; atr_value:1.4811560530426429; boll_up:102.82388570637532; boll_down:92.65989207140235; intra_trade_high:101.756; long_stop:94.0999906116657; intra_trade_low:100.205; short_stop:0.0; close:100.136
2024-01-30 02:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2ewbbzagoi-00234] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.053989]
2024-01-30 03:00:00+08:00 [DEBUG] pos:0.5; cci_value:84.83258289521413; atr_value:281.5112690191762; boll_up:43684.593076283716; boll_down:41062.26247927182; intra_trade_high:43300.0; long_stop:41835.008779245676; intra_trade_low:42860.0; short_stop:0.0; close:42981.9
2024-01-30 03:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-128b7n5pv4-00235] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41836.141401]
2024-01-30 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:77.27155364645856; atr_value:15.037493375187285; boll_up:2329.238206646384; boll_down:2212.6051266869495; intra_trade_high:2312.87; long_stop:2246.3829811814567; intra_trade_low:2294.08; short_stop:2307.038552182302; close:2292.52
2024-01-30 03:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1gww2xgmhw-00236] (STOP & BUY)  created, [quantity 1.0] [price 2329.238207]
2024-01-30 03:00:00+08:00 [DEBUG] pos:5.0; cci_value:83.34192103437157; atr_value:1.4739217102157938; boll_up:103.41752724803376; boll_down:92.46947275196621; intra_trade_high:101.756; long_stop:94.05398852417825; intra_trade_low:99.609; short_stop:0.0; close:100.545
2024-01-30 03:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1xaz1bfjnd-00237] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.091607]
2024-01-30 04:00:00+08:00 [DEBUG] pos:0.5; cci_value:74.9407622792136; atr_value:280.1117247969758; boll_up:43849.757373681; boll_down:40998.242626318955; intra_trade_high:43300.0; long_stop:41836.141401100285; intra_trade_low:42954.7; short_stop:0.0; close:43122.1
2024-01-30 04:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1pr6utkipy-00238] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41843.419031]
2024-01-30 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:70.0243400112325; atr_value:14.984204883343658; boll_up:2335.8338273602894; boll_down:2209.820617084155; intra_trade_high:2304.73; long_stop:2246.3829811814567; intra_trade_low:2290.28; short_stop:2307.038552182302; close:2301.94
2024-01-30 04:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-266iwze4eb-00239] (STOP & BUY)  created, [quantity 1.0] [price 2335.833827]
2024-01-30 04:00:00+08:00 [DEBUG] pos:5.0; cci_value:81.61204867191346; atr_value:1.4705131463703578; boll_up:104.14095818248366; boll_down:92.20437515084966; intra_trade_high:101.756; long_stop:94.09160710687787; intra_trade_low:100.071; short_stop:0.0; close:101.188
2024-01-30 04:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-15j3o1ar2f-00240] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.109332]
2024-01-30 05:00:00+08:00 [DEBUG] pos:0.5; cci_value:69.47616635413691; atr_value:279.3128641715087; boll_up:43998.49316404402; boll_down:40943.2623915115; intra_trade_high:43300.0; long_stop:41843.419031055724; intra_trade_low:42958.8; short_stop:0.0; close:43146.9
2024-01-30 05:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1t61tkh5wt-00241] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41847.573106]
2024-01-30 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:74.0619772954457; atr_value:14.96789274170641; boll_up:2342.544662351571; boll_down:2206.937559870652; intra_trade_high:2303.59; long_stop:2246.3829811814567; intra_trade_low:2291.2; short_stop:2307.038552182302; close:2305.19
2024-01-30 05:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-28qw5jh6sw-00242] (STOP & BUY)  created, [quantity 1.0] [price 2342.544662]
2024-01-30 05:00:00+08:00 [DEBUG] pos:5.0; cci_value:73.54354491785361; atr_value:1.4516184972348734; boll_up:104.72575677626902; boll_down:91.98068766817535; intra_trade_high:101.756; long_stop:94.10933163887414; intra_trade_low:100.464; short_stop:0.0; close:101.083
2024-01-30 05:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2jrfh1j8k5-00243] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.207584]
2024-01-30 06:00:00+08:00 [DEBUG] pos:0.5; cci_value:55.68799010958007; atr_value:275.87136729410355; boll_up:44099.88509003383; boll_down:40939.92602107726; intra_trade_high:43300.0; long_stop:41847.573106308155; intra_trade_low:43033.5; short_stop:0.0; close:43080.2
2024-01-30 06:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1vuwdm4sew-00244] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41865.46889]
2024-01-30 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:83.98299629637599; atr_value:15.173422657435276; boll_up:2350.130640979994; boll_down:2204.166025686673; intra_trade_high:2310.72; long_stop:2246.3829811814567; intra_trade_low:2300.03; short_stop:2307.038552182302; close:2310.71
2024-01-30 06:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2c8n2zbjq2-00245] (STOP & BUY)  created, [quantity 1.0] [price 2350.130641]
2024-01-30 06:00:00+08:00 [DEBUG] pos:5.0; cci_value:57.78089739364631; atr_value:1.4423200625525938; boll_up:105.12433727369621; boll_down:92.00766272630374; intra_trade_high:101.756; long_stop:94.20758381437867; intra_trade_low:101.042; short_stop:0.0; close:100.863
2024-01-30 06:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-12sr6xek18-00246] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.255936]
2024-01-30 07:00:00+08:00 [DEBUG] pos:0.5; cci_value:81.0248862043634; atr_value:281.2684606460426; boll_up:44234.74765443005; boll_down:40934.51901223658; intra_trade_high:43300.0; long_stop:41865.46889007066; intra_trade_low:43053.6; short_stop:0.0; close:43286.2
2024-01-30 07:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1odfiipg3a-00247] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41974.304005]
2024-01-30 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:85.51468402359339; atr_value:14.992055495131089; boll_up:2358.295586535404; boll_down:2201.8810801312634; intra_trade_high:2322.78; long_stop:2246.3829811814567; intra_trade_low:2304.68; short_stop:2307.038552182302; close:2316.7
2024-01-30 07:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1xywrrzngz-00248] (STOP & BUY)  created, [quantity 1.0] [price 2358.295587]
2024-01-30 07:00:00+08:00 [DEBUG] pos:5.0; cci_value:75.1047605125955; atr_value:1.457524211387931; boll_up:105.55567388263502; boll_down:92.16499278403158; intra_trade_high:101.756; long_stop:94.25593567472652; intra_trade_low:100.658; short_stop:0.0; close:101.629
2024-01-30 07:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2crmphh6mt-00249] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.420874]
2024-01-30 08:00:00+08:00 [DEBUG] pos:0.5; cci_value:79.62795882795007; atr_value:280.6690018822132; boll_up:44304.969005282925; boll_down:40975.74210582815; intra_trade_high:43436.9; long_stop:41974.30400464058; intra_trade_low:43051.5; short_stop:0.0; close:43151.3
2024-01-30 08:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-14nbc82w3x-00250] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41977.42119]
2024-01-30 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:59.692801407883685; atr_value:15.065839167607088; boll_up:2361.603004198852; boll_down:2202.7514402455913; intra_trade_high:2317.32; long_stop:2246.3829811814567; intra_trade_low:2309.38; short_stop:2307.038552182302; close:2303.91
2024-01-30 08:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2j8cvs6v67-00251] (STOP & BUY)  created, [quantity 1.0] [price 2361.603004]
2024-01-30 08:00:00+08:00 [DEBUG] pos:5.0; cci_value:83.19413627184544; atr_value:1.4496623429728788; boll_up:105.83713144263635; boll_down:92.29953522403025; intra_trade_high:102.0; long_stop:94.42087410078275; intra_trade_low:100.561; short_stop:0.0; close:101.042
2024-01-30 08:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1qrp1dcb6y-00252] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 94.461756]
2024-01-30 09:00:00+08:00 [DEBUG] pos:0.5; cci_value:176.24743247585909; atr_value:286.1751167991349; boll_up:44411.1655936128; boll_down:41023.76773972049; intra_trade_high:43436.9; long_stop:41977.421190212495; intra_trade_low:43121.5; short_stop:0.0; close:43427.7
2024-01-30 09:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-23pobnivzg-00253] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42071.789393]
2024-01-30 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:94.38648277266127; atr_value:15.43211830602801; boll_up:2365.6882767886327; boll_down:2204.849500989145; intra_trade_high:2317.78; long_stop:2246.3829811814567; intra_trade_low:2303.83; short_stop:2307.038552182302; close:2313.77
2024-01-30 09:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2f2zfpw2o7-00254] (STOP & BUY)  created, [quantity 1.0] [price 2365.688277]
2024-01-30 09:00:00+08:00 [DEBUG] pos:5.0; cci_value:194.02804376059; atr_value:1.4698162145059652; boll_up:106.4712550944545; boll_down:92.33796712776766; intra_trade_high:102.0; long_stop:94.46175581654103; intra_trade_low:101.0; short_stop:0.0; close:102.793
2024-01-30 09:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1smdb8u56f-00255] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 95.265956]
2024-01-30 10:00:00+08:00 [DEBUG] pos:0.5; cci_value:202.64911877100778; atr_value:288.7750437760616; boll_up:44548.05773786437; boll_down:41053.08670658005; intra_trade_high:43559.9; long_stop:42071.7893926445; intra_trade_low:43138.0; short_stop:0.0; close:43603.3
2024-01-30 10:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1moc6tew9q-00256] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42288.369772]
2024-01-30 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:125.5153719951468; atr_value:15.23159324208643; boll_up:2369.856106165442; boll_down:2206.7083382790024; intra_trade_high:2324.51; long_stop:2246.3829811814567; intra_trade_low:2302.69; short_stop:2307.038552182302; close:2316.58
2024-01-30 10:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-27vjja3vua-00257] (STOP & BUY)  created, [quantity 1.0] [price 2369.856106]
2024-01-30 10:00:00+08:00 [DEBUG] pos:5.0; cci_value:205.41001706313548; atr_value:1.472025000896435; boll_up:107.06722695471751; boll_down:92.41777304528242; intra_trade_high:102.909; long_stop:95.26595568456898; intra_trade_low:100.925; short_stop:0.0; close:103.09
2024-01-30 10:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2f7i7v33q5-00258] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 96.12047]
2024-01-30 11:00:00+08:00 [DEBUG] pos:0.5; cci_value:120.43777488403174; atr_value:290.36609532536716; boll_up:44641.610933438045; boll_down:41095.5668443397; intra_trade_high:43790.0; long_stop:42288.36977236448; intra_trade_low:43427.7; short_stop:0.0; close:43503.9
2024-01-30 11:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-28grjr2x6o-00259] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42280.096304]
2024-01-30 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:47.04845123109236; atr_value:15.1391774964403; boll_up:2372.5553090555863; boll_down:2208.156913166636; intra_trade_high:2327.29; long_stop:2246.3829811814567; intra_trade_low:2313.77; short_stop:2307.038552182302; close:2310.12
2024-01-30 11:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2otd8in6y5-00260] (STOP & BUY)  created, [quantity 1.0] [price 2372.555309]
2024-01-30 11:00:00+08:00 [DEBUG] pos:5.0; cci_value:104.13253231385308; atr_value:1.4993684155472076; boll_up:107.24920721260736; boll_down:92.77145945405925; intra_trade_high:103.775; long_stop:96.12046999533854; intra_trade_low:102.304; short_stop:0.0; close:102.085
2024-01-30 11:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1i2ou6ikpw-00261] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 95.978284]
2024-01-30 12:00:00+08:00 [DEBUG] pos:0.5; cci_value:66.0640570871448; atr_value:287.8340607502566; boll_up:44683.11924065801; boll_down:41176.73631489751; intra_trade_high:43790.0; long_stop:42280.09630430809; intra_trade_low:43432.8; short_stop:0.0; close:43402.0
2024-01-30 12:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2qpywrsdqu-00262] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42293.262884]
2024-01-30 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:13.585195022852872; atr_value:14.891986769883099; boll_up:2374.8277119364375; boll_down:2209.8489547302297; intra_trade_high:2319.0; long_stop:2246.3829811814567; intra_trade_low:2309.16; short_stop:2307.038552182302; close:2310.23
2024-01-30 12:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1cq1rnr28i-00263] (STOP & BUY)  created, [quantity 1.0] [price 2374.827712]
2024-01-30 12:00:00+08:00 [DEBUG] pos:5.0; cci_value:44.617782615123915; atr_value:1.4542420363193076; boll_up:107.41034573126461; boll_down:93.11332093540199; intra_trade_high:103.775; long_stop:95.97828423915453; intra_trade_low:101.797; short_stop:0.0; close:102.176
2024-01-30 12:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1nvrawgsgk-00264] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 96.212942]
2024-01-30 13:00:00+08:00 [DEBUG] pos:0.5; cci_value:26.82025089222455; atr_value:277.97914984715607; boll_up:44674.15378933826; boll_down:41309.81287732837; intra_trade_high:43790.0; long_stop:42293.262884098665; intra_trade_low:43388.2; short_stop:0.0; close:43349.4
2024-01-30 13:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-29r4gxtorf-00265] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42344.508421]
2024-01-30 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:-53.696710824970616; atr_value:14.582588242549713; boll_up:2373.9929796647; boll_down:2215.209242557521; intra_trade_high:2313.44; long_stop:2246.3829811814567; intra_trade_low:2307.28; short_stop:2307.038552182302; close:2304.25
2024-01-30 13:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1ztoo299ds-00266] (STOP & SELL)  created, [quantity 1.0] [price 2215.209243]
2024-01-30 13:00:00+08:00 [DEBUG] pos:5.0; cci_value:69.89890582462021; atr_value:1.4590306514245177; boll_up:107.53965104249961; boll_down:93.56657117972254; intra_trade_high:103.775; long_stop:96.21294141113961; intra_trade_low:101.674; short_stop:0.0; close:102.689
2024-01-30 13:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1kwrg3cx7w-00267] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 96.188041]
2024-01-30 14:00:00+08:00 [DEBUG] pos:0.5; cci_value:-6.267921259974428; atr_value:271.5988105309476; boll_up:44584.577046875194; boll_down:41537.534064235886; intra_trade_high:43790.0; long_stop:42344.50842079479; intra_trade_low:43316.7; short_stop:0.0; close:43329.7
2024-01-30 14:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1mad3x1v6r-00268] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42377.686185]
2024-01-30 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:-126.22391769262137; atr_value:14.236207394433556; boll_up:2369.809227246063; boll_down:2224.745217198382; intra_trade_high:2312.73; long_stop:2246.3829811814567; intra_trade_low:2303.41; short_stop:2307.038552182302; close:2303.18
2024-01-30 14:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1354pwb4qq-00269] (STOP & SELL)  created, [quantity 1.0] [price 2224.745217]
2024-01-30 14:00:00+08:00 [DEBUG] pos:5.0; cci_value:93.06872582504303; atr_value:1.4453655236031342; boll_up:107.49890069708451; boll_down:94.30398819180431; intra_trade_high:103.775; long_stop:96.18804061259252; intra_trade_low:101.74; short_stop:0.0; close:103.206
2024-01-30 14:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-26839zwmpj-00270] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 96.259099]
2024-01-30 15:00:00+08:00 [DEBUG] pos:0.5; cci_value:2.5878425438898702; atr_value:266.2511854141899; boll_up:44388.957076482526; boll_down:41885.16514573966; intra_trade_high:43790.0; long_stop:42377.68618523907; intra_trade_low:43230.9; short_stop:0.0; close:43354.1
2024-01-30 15:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1twsr9ytt4-00271] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42405.493836]
2024-01-30 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-61.179293162315886; atr_value:14.237725363620727; boll_up:2358.396411553951; boll_down:2243.345810668272; intra_trade_high:2308.0; long_stop:2246.3829811814567; intra_trade_low:2299.14; short_stop:2307.038552182302; close:2307.93
2024-01-30 15:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1nrdmykbck-00272] (STOP & SELL)  created, [quantity 1.0] [price 2243.345811]
2024-01-30 15:00:00+08:00 [DEBUG] pos:5.0; cci_value:87.27041484307718; atr_value:1.4246861287480617; boll_up:106.78570577898695; boll_down:95.75284977656854; intra_trade_high:103.775; long_stop:96.25909927726372; intra_trade_low:102.184; short_stop:0.0; close:102.856
2024-01-30 15:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-259t3rcexg-00273] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 96.366632]
2024-01-30 16:00:00+08:00 [DEBUG] pos:0.5; cci_value:-27.64587555243178; atr_value:268.11556351300777; boll_up:43994.37106385915; boll_down:42444.551158363036; intra_trade_high:43790.0; long_stop:42405.49383584621; intra_trade_low:43303.1; short_stop:0.0; close:43412.4
2024-01-30 16:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-19sfpoumvn-00274] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42395.79907]
2024-01-30 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:-60.72782501584379; atr_value:14.137012676433137; boll_up:2336.5417993459787; boll_down:2272.3637562095782; intra_trade_high:2313.32; long_stop:2246.3829811814567; intra_trade_low:2301.66; short_stop:2307.038552182302; close:2307.37
2024-01-30 16:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2ov9ksoiw5-00275] (STOP & SELL)  created, [quantity 1.0] [price 2272.363756]
2024-01-30 16:00:00+08:00 [DEBUG] pos:5.0; cci_value:103.09321327330282; atr_value:1.4435630030896258; boll_up:105.40027887725412; boll_down:97.95172112274585; intra_trade_high:103.775; long_stop:96.36663213051008; intra_trade_low:102.724; short_stop:0.0; close:103.372
2024-01-30 16:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2ez6jq5v6k-00276] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 96.491472]
2024-01-30 17:00:00+08:00 [DEBUG] pos:0.5; cci_value:-33.54880877417871; atr_value:263.5224007539967; boll_up:43866.44922481972; boll_down:42646.739664069144; intra_trade_high:43790.0; long_stop:42395.79906973236; intra_trade_low:43172.1; short_stop:0.0; close:43306.0
2024-01-30 17:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-19ksbxehjt-00277] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42419.683516]
2024-01-30 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:-82.21304887850013; atr_value:13.863188104475368; boll_up:2326.814570081008; boll_down:2285.2932076967713; intra_trade_high:2312.15; long_stop:2246.3829811814567; intra_trade_low:2301.46; short_stop:2307.038552182302; close:2303.49
2024-01-30 17:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2bc855zy2c-00278] (STOP & SELL)  created, [quantity 1.0] [price 2285.293208]
2024-01-30 17:00:00+08:00 [DEBUG] pos:5.0; cci_value:111.07238605898058; atr_value:1.424557617853406; boll_up:105.50361745450847; boll_down:98.23238254549152; intra_trade_high:103.998; long_stop:96.49147238393395; intra_trade_low:102.38; short_stop:0.0; close:103.353
2024-01-30 17:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2ot8vc9oyv-00279] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 96.5903]
2024-01-30 18:00:00+08:00 [DEBUG] pos:0.5; cci_value:1.9401452589377557; atr_value:261.98209118297575; boll_up:43900.82608027219; boll_down:42644.36280861667; intra_trade_high:43790.0; long_stop:42419.68351607922; intra_trade_low:43294.7; short_stop:0.0; close:43470.1
2024-01-30 18:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2a55jmdy19-00280] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42427.693126]
2024-01-30 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:12.464934748141818; atr_value:13.790765229134056; boll_up:2327.558477551994; boll_down:2286.179300225784; intra_trade_high:2308.6; long_stop:2246.3829811814567; intra_trade_low:2302.68; short_stop:2307.038552182302; close:2313.64
2024-01-30 18:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2qbq6tm7vi-00281] (STOP & BUY)  created, [quantity 1.0] [price 2327.558478]
2024-01-30 18:00:00+08:00 [DEBUG] pos:5.0; cci_value:152.2499300643414; atr_value:1.4360309390449386; boll_up:106.04645348602895; boll_down:98.0461020695266; intra_trade_high:103.998; long_stop:96.59030038716229; intra_trade_low:103.059; short_stop:0.0; close:104.237
2024-01-30 18:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1rmaavigej-00282] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 97.077639]
2024-01-30 19:00:00+08:00 [DEBUG] pos:0.5; cci_value:55.21005352353504; atr_value:260.3468001546452; boll_up:43907.71847980551; boll_down:42698.17040908335; intra_trade_high:43790.0; long_stop:42427.69312584853; intra_trade_low:43275.0; short_stop:0.0; close:43519.7
2024-01-30 19:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2atug27nts-00283] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42436.196639]
2024-01-30 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:67.85163241374862; atr_value:13.673330943665075; boll_up:2328.271985954206; boll_down:2286.6424584902397; intra_trade_high:2315.6; long_stop:2246.3829811814567; intra_trade_low:2301.61; short_stop:2307.038552182302; close:2312.84
2024-01-30 19:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-18s8t1pwzd-00284] (STOP & BUY)  created, [quantity 1.0] [price 2328.271986]
2024-01-30 19:00:00+08:00 [DEBUG] pos:5.0; cci_value:234.37093616962994; atr_value:1.4527063161014033; boll_up:107.2061675989911; boll_down:97.50194351212; intra_trade_high:104.545; long_stop:97.07763911696632; intra_trade_low:102.929; short_stop:0.0; close:106.03
2024-01-30 19:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1t1qt5y8zr-00285] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.835927]
2024-01-30 20:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958946-18s8t1pwzd-00284] executed [quantity 1.0] [price $2328.271986] [Cost $465.654397] [Commission: $1.28054959] [Available balance: $95320.43084259] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-1.280549] 
2024-01-30 20:00:00+08:00 [DEBUG] pos:0.5; cci_value:87.74189008514769; atr_value:274.2427662071857; boll_up:43878.33649836752; boll_down:42768.774612743575; intra_trade_high:43790.0; long_stop:42436.19663919584; intra_trade_low:43396.9; short_stop:0.0; close:43377.1
2024-01-30 20:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2bzurmc4y2-00286] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42464.737616]
2024-01-30 20:00:00+08:00 [DEBUG] pos:1.0; cci_value:55.18837803319979; atr_value:14.355283323694149; boll_up:2327.7148881633434; boll_down:2287.7928896144354; intra_trade_high:2316.82; long_stop:2246.3829811814567; intra_trade_low:2310.01; short_stop:2307.038552182302; close:2305.2
2024-01-30 20:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-11kc4a716x-00287] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2257.152527]
2024-01-30 20:00:00+08:00 [DEBUG] pos:5.0; cci_value:121.1745838927578; atr_value:1.4858442485591776; boll_up:107.38257080651731; boll_down:97.81942919348266; intra_trade_high:106.39; long_stop:98.8359271562727; intra_trade_low:104.079; short_stop:0.0; close:104.581
2024-01-30 20:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1w1qs6ui75-00288] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.66361]
2024-01-30 21:00:00+08:00 [DEBUG] pos:0.5; cci_value:-113.86717406753752; atr_value:278.1724064227065; boll_up:43820.85561871246; boll_down:42858.43327017641; intra_trade_high:43890.8; long_stop:42464.73761572264; intra_trade_low:43226.9; short_stop:0.0; close:43271.5
2024-01-30 21:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1551vou24m-00289] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42444.303487]
2024-01-30 21:00:00+08:00 [DEBUG] pos:1.0; cci_value:-108.06522482058409; atr_value:14.568154427222058; boll_up:2324.255773373918; boll_down:2292.5931155149706; intra_trade_high:2331.8; long_stop:2257.152526716791; intra_trade_low:2296.14; short_stop:2307.038552182302; close:2304.59
2024-01-30 21:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2ne3w62src-00290] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2256.045597]
2024-01-30 21:00:00+08:00 [DEBUG] pos:5.0; cci_value:63.299755660200205; atr_value:1.4960193798304333; boll_up:107.47645942396527; boll_down:98.15520724270137; intra_trade_high:106.39; long_stop:98.66360990749227; intra_trade_low:103.88; short_stop:0.0; close:104.412
2024-01-30 21:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1yghsu2duz-00291] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.610699]
2024-01-30 22:00:00+08:00 [DEBUG] pos:0.5; cci_value:-40.92692796707948; atr_value:283.9969675070791; boll_up:43813.576963288295; boll_down:42903.72303671169; intra_trade_high:43890.8; long_stop:42444.30348660193; intra_trade_low:43127.6; short_stop:0.0; close:43464.2
2024-01-30 22:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-132imkxz1p-00292] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42414.015769]
2024-01-30 22:00:00+08:00 [DEBUG] pos:1.0; cci_value:25.699208443263778; atr_value:14.76570994192244; boll_up:2324.2958769882953; boll_down:2293.783011900595; intra_trade_high:2331.8; long_stop:2256.0455969784452; intra_trade_low:2292.82; short_stop:2307.038552182302; close:2313.01
2024-01-30 22:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2cbro8o7hz-00293] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2255.018308]
2024-01-30 22:00:00+08:00 [DEBUG] pos:5.0; cci_value:81.9016537809027; atr_value:1.5223552583511155; boll_up:107.89597111614343; boll_down:98.19769555052319; intra_trade_high:106.39; long_stop:98.61069922488174; intra_trade_low:103.497; short_stop:0.0; close:105.346
2024-01-30 22:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1v3th47m4k-00294] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.473753]
2024-01-30 23:00:00+08:00 [DEBUG] pos:0.5; cci_value:34.806525037926214; atr_value:286.3801692523484; boll_up:43790.41832963801; boll_down:42949.781670361976; intra_trade_high:43890.8; long_stop:42414.01576896319; intra_trade_low:43083.7; short_stop:0.0; close:43353.0
2024-01-30 23:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-138aqoacma-00295] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42401.62312]
2024-01-30 23:00:00+08:00 [DEBUG] pos:1.0; cci_value:270.1992997576092; atr_value:15.679759559000034; boll_up:2339.3520936904865; boll_down:2282.621239642846; intra_trade_high:2331.8; long_stop:2255.0183083020033; intra_trade_low:2297.41; short_stop:2307.038552182302; close:2340.24
2024-01-30 23:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1a5d2mwevn-00296] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2266.39525]
2024-01-30 23:00:00+08:00 [DEBUG] pos:5.0; cci_value:89.8917060815171; atr_value:1.5366104994881034; boll_up:107.99709150324261; boll_down:98.50890849675736; intra_trade_high:106.39; long_stop:98.4737526565742; intra_trade_low:103.649; short_stop:0.0; close:104.794
2024-01-30 23:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1jd98bscfk-00297] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.586626]
2024-01-31 00:00:00+08:00 [DEBUG] pos:0.5; cci_value:5.513784461144216; atr_value:287.82155173610863; boll_up:43746.314241023676; boll_down:43038.719092309635; intra_trade_high:43890.8; long_stop:42401.623119887794; intra_trade_low:43263.1; short_stop:0.0; close:43483.7
2024-01-31 00:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2ptzvz2y4q-00298] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42394.127931]
2024-01-31 00:00:00+08:00 [DEBUG] pos:1.0; cci_value:247.97720930774986; atr_value:16.342743787723897; boll_up:2367.5540453354934; boll_down:2260.8948435533966; intra_trade_high:2347.93; long_stop:2266.3952502931998; intra_trade_low:2301.89; short_stop:2307.038552182302; close:2368.99
2024-01-31 00:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2axgdihd5m-00299] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2284.657732]
2024-01-31 00:00:00+08:00 [DEBUG] pos:5.0; cci_value:-7.9001065935752255; atr_value:1.548259272353554; boll_up:107.84737059945712; boll_down:99.05829606720951; intra_trade_high:106.577; long_stop:98.58662540266187; intra_trade_low:104.583; short_stop:0.0; close:104.46
2024-01-31 00:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2n4eno7qpu-00300] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.526052]
2024-01-31 01:00:00+08:00 [DEBUG] pos:0.5; cci_value:23.75723697345478; atr_value:289.41883763136235; boll_up:43740.67006108396; boll_down:43053.741050027136; intra_trade_high:43890.8; long_stop:42394.12793097224; intra_trade_low:43191.6; short_stop:0.0; close:43370.6
2024-01-31 01:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1txej45sdz-00301] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42385.822044]
2024-01-31 01:00:00+08:00 [DEBUG] pos:1.0; cci_value:175.00828047481852; atr_value:16.433512547198564; boll_up:2385.6426319613824; boll_down:2248.6540347052855; intra_trade_high:2369.64; long_stop:2284.6577323038355; intra_trade_low:2335.0; short_stop:2307.038552182302; close:2369.33
2024-01-31 01:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2eo2ygvuw3-00302] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2294.205735]
2024-01-31 01:00:00+08:00 [DEBUG] pos:5.0; cci_value:35.76966262097039; atr_value:1.5475739859188296; boll_up:107.87144195726549; boll_down:99.38744693162337; intra_trade_high:106.577; long_stop:98.52605178376152; intra_trade_low:103.199; short_stop:0.0; close:104.808
2024-01-31 01:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2e743iqvo7-00303] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.529615]
2024-01-31 02:00:00+08:00 [DEBUG] pos:0.5; cci_value:-52.725037563161045; atr_value:287.8557123832304; boll_up:43689.582445914595; boll_down:43126.91755408539; intra_trade_high:43890.8; long_stop:42385.82204431692; intra_trade_low:43280.2; short_stop:0.0; close:43350.1
2024-01-31 02:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-28r6z1fzk4-00304] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42393.950296]
2024-01-31 02:00:00+08:00 [DEBUG] pos:1.0; cci_value:126.41563834547507; atr_value:16.539305001400983; boll_up:2402.6208597788886; boll_down:2239.7124735544453; intra_trade_high:2379.66; long_stop:2294.2057347545674; intra_trade_low:2363.59; short_stop:2307.038552182302; close:2376.24
2024-01-31 02:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-17yg4qzsaq-00305] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2294.835614]
2024-01-31 02:00:00+08:00 [DEBUG] pos:5.0; cci_value:18.92071952031736; atr_value:1.5417776756346864; boll_up:107.66467752364225; boll_down:100.04610025413548; intra_trade_high:106.577; long_stop:98.52961527322208; intra_trade_low:104.18; short_stop:0.0; close:105.109
2024-01-31 02:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1oejzcyeze-00306] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.559756]
2024-01-31 03:00:00+08:00 [DEBUG] pos:0.5; cci_value:80.6003461783668; atr_value:287.1647177981825; boll_up:43708.360327599876; boll_down:43118.65078351123; intra_trade_high:43890.8; long_stop:42393.9502956072; intra_trade_low:43255.3; short_stop:0.0; close:43522.3
2024-01-31 03:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-21h92y4q5i-00307] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42397.543468]
2024-01-31 03:00:00+08:00 [DEBUG] pos:1.0; cci_value:94.33348685263871; atr_value:16.324673403428147; boll_up:2415.4821890463945; boll_down:2233.562255398051; intra_trade_high:2380.84; long_stop:2294.835613992715; intra_trade_low:2363.04; short_stop:2307.038552182302; close:2374.17
2024-01-31 03:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-281jx2qz1p-00308] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2295.951698]
2024-01-31 03:00:00+08:00 [DEBUG] pos:5.0; cci_value:75.91012911947068; atr_value:1.5253467990453828; boll_up:107.83964705150541; boll_down:100.14335294849457; intra_trade_high:106.577; long_stop:98.55975608669962; intra_trade_low:103.856; short_stop:0.0; close:105.243
2024-01-31 03:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-276st824a8-00309] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.645197]
2024-01-31 04:00:00+08:00 [DEBUG] pos:0.5; cci_value:152.7386509980763; atr_value:286.7207016781886; boll_up:43679.76344364121; boll_down:43139.547667469895; intra_trade_high:43890.8; long_stop:42397.54346744945; intra_trade_low:43318.9; short_stop:0.0; close:43534.0
2024-01-31 04:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-14k3d3rgtj-00310] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42399.852351]
2024-01-31 04:00:00+08:00 [DEBUG] pos:1.0; cci_value:80.5795612027214; atr_value:16.100844268561236; boll_up:2425.611695992398; boll_down:2229.6471928964916; intra_trade_high:2380.84; long_stop:2295.951698302174; intra_trade_low:2368.15; short_stop:2307.038552182302; close:2372.51
2024-01-31 04:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1ahh9uu3k3-00311] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2300.53561]
2024-01-31 04:00:00+08:00 [DEBUG] pos:5.0; cci_value:28.710684639404125; atr_value:1.5014135887650695; boll_up:107.92738625783822; boll_down:100.25750263105063; intra_trade_high:106.577; long_stop:98.645196644964; intra_trade_low:104.808; short_stop:0.0; close:104.907
2024-01-31 04:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1o1rm4mcw5-00312] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.769649]
2024-01-31 05:00:00+08:00 [DEBUG] pos:0.5; cci_value:106.76587121556308; atr_value:284.3275110706545; boll_up:43684.497678257314; boll_down:43136.59121063157; intra_trade_high:43890.8; long_stop:42399.852351273425; intra_trade_low:43455.1; short_stop:0.0; close:43519.9
2024-01-31 05:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1owsa12rxa-00313] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42412.296943]
2024-01-31 05:00:00+08:00 [DEBUG] pos:1.0; cci_value:74.97717499798945; atr_value:16.35421311596049; boll_up:2436.1310637227957; boll_down:2226.823380721649; intra_trade_high:2384.26; long_stop:2300.5356098034817; intra_trade_low:2372.12; short_stop:2307.038552182302; close:2379.38
2024-01-31 05:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1mrrdhd7qx-00314] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2307.058092]
2024-01-31 05:00:00+08:00 [DEBUG] pos:5.0; cci_value:-74.50884883909208; atr_value:1.4709574945773758; boll_up:107.67407376094323; boll_down:100.75470401683455; intra_trade_high:106.577; long_stop:98.76964933842163; intra_trade_low:104.61; short_stop:0.0; close:104.28
2024-01-31 05:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2afc7o1moy-00315] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.928021]
2024-01-31 06:00:00+08:00 [DEBUG] pos:0.5; cci_value:-36.90882383173404; atr_value:284.21234034520825; boll_up:43691.699991217974; boll_down:43118.28889767091; intra_trade_high:43890.8; long_stop:42412.2969424326; intra_trade_low:43457.1; short_stop:0.0; close:43302.1
2024-01-31 06:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-12uxwf3aa2-00316] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42412.89583]
2024-01-31 06:00:00+08:00 [DEBUG] pos:1.0; cci_value:41.9406837851642; atr_value:16.517104077776036; boll_up:2440.542771571093; boll_down:2228.417228428907; intra_trade_high:2392.1; long_stop:2307.0580917970055; intra_trade_low:2369.1; short_stop:2307.038552182302; close:2364.28
2024-01-31 06:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-13jsb6z5sa-00317] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2306.211059]
2024-01-31 06:00:00+08:00 [DEBUG] pos:5.0; cci_value:-172.6068200493023; atr_value:1.4691222825320551; boll_up:107.39273337261969; boll_down:101.17193329404702; intra_trade_high:106.577; long_stop:98.92802102819765; intra_trade_low:104.15; short_stop:0.0; close:103.399
2024-01-31 06:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2jhefp77ys-00318] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.937564]
2024-01-31 07:00:00+08:00 [DEBUG] pos:0.5; cci_value:-284.77506160847736; atr_value:296.01329715763103; boll_up:43855.73336287842; boll_down:42906.43330378824; intra_trade_high:43890.8; long_stop:42412.89583020492; intra_trade_low:43302.0; short_stop:0.0; close:42919.0
2024-01-31 07:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1wfezupi5r-00319] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42351.530855]
2024-01-31 07:00:00+08:00 [DEBUG] pos:1.0; cci_value:-39.13231125366609; atr_value:16.830804942659732; boll_up:2439.7358013349854; boll_down:2233.3808653316814; intra_trade_high:2392.1; long_stop:2306.2110587955644; intra_trade_low:2363.4; short_stop:2307.038552182302; close:2341.66
2024-01-31 07:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2g2tvh3epj-00320] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2304.579814]
2024-01-31 07:00:00+08:00 [DEBUG] pos:5.0; cci_value:-232.10669074799523; atr_value:1.518198505223834; boll_up:107.86043087470115; boll_down:100.56101356974334; intra_trade_high:106.577; long_stop:98.93756413083331; intra_trade_low:103.158; short_stop:0.0; close:101.4
2024-01-31 07:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2dkoo46t58-00321] (OrderType.STOP & SELL)  created, [quantity 5.0] [price 98.682368]
2024-01-31 08:00:00+08:00 [INFO] (SOLUSDT|BYBIT|NET) - CLOSE SELL order [number aio-1706958946-2dkoo46t58-00321] executed [quantity 5.0] [price $98.682368] [Cost $98.682368] [Commission: $0.27137651] [Available balance: $94845.46032507998] [Position: #5.0] [Gross P&L: $-9.044744] [Net P&L: $-9.31612] 
2024-01-31 08:00:00+08:00 [INFO] ========> Trade closed, pnl: -9.044744
2024-01-31 08:00:00+08:00 [DEBUG] pos:0.5; cci_value:-172.77066931899685; atr_value:294.6351633804401; boll_up:43958.349631994424; boll_down:42756.99481245002; intra_trade_high:43890.8; long_stop:42351.53085478032; intra_trade_low:42647.5; short_stop:0.0; close:42908.3
2024-01-31 08:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1v3dmp25ab-00322] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42358.697151]
2024-01-31 08:00:00+08:00 [DEBUG] pos:1.0; cci_value:-101.65269282965649; atr_value:16.962587762856696; boll_up:2438.00222743494; boll_down:2239.1222170095048; intra_trade_high:2392.1; long_stop:2304.5798142981694; intra_trade_low:2335.59; short_stop:2307.038552182302; close:2339.25
2024-01-31 08:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2kpsjxk9nt-00323] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2303.894544]
2024-01-31 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:-208.42995318991433; atr_value:1.5793897650913151; boll_up:108.65565146544941; boll_down:99.46890409010621; intra_trade_high:106.577; long_stop:98.68236777283606; intra_trade_low:100.984; short_stop:0.0; close:100.534
2024-01-31 08:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1jofjyd8zj-00324] (STOP & SELL)  created, [quantity 5.0] [price 99.468904]
2024-01-31 09:00:00+08:00 [INFO] (SOLUSDT|BYBIT|NET) - OPEN SELL order [number aio-1706958946-1jofjyd8zj-00324] executed [quantity 5.0] [price $99.468904] [Cost $99.468904] [Commission: $0.27353949] [Available balance: $94945.67810259] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-0.273539] 
2024-01-31 09:00:00+08:00 [DEBUG] pos:0.5; cci_value:-137.34179124374617; atr_value:295.5114546872318; boll_up:44082.1184658318; boll_down:42567.8926452793; intra_trade_high:43890.8; long_stop:42358.697150421714; intra_trade_low:42812.7; short_stop:0.0; close:42766.1
2024-01-31 09:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-271tg5rv3n-00325] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42354.140436]
2024-01-31 09:00:00+08:00 [DEBUG] pos:1.0; cci_value:-135.49047394111096; atr_value:17.11543346900921; boll_up:2436.297315933716; boll_down:2243.4460173996176; intra_trade_high:2392.1; long_stop:2303.894543633145; intra_trade_low:2330.01; short_stop:2307.038552182302; close:2331.5
2024-01-31 09:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1kqk46mx4c-00326] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2303.099746]
2024-01-31 09:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-138.59181931363443; atr_value:1.5920140383778585; boll_up:109.2969838950433; boll_down:98.54668277162344; intra_trade_high:101.963; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:0.0; close:100.328
2024-01-31 09:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2mkh44i146-00327] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.684473]
2024-01-31 10:00:00+08:00 [DEBUG] pos:0.5; cci_value:-103.81305987741871; atr_value:292.9522312016536; boll_up:44128.731918034326; boll_down:42459.91252641011; intra_trade_high:43890.8; long_stop:42354.140435626396; intra_trade_low:42702.9; short_stop:0.0; close:42860.1
2024-01-31 10:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1uvhx3ytmf-00328] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42367.448398]
2024-01-31 10:00:00+08:00 [DEBUG] pos:1.0; cci_value:-103.72876571516693; atr_value:16.895557563239365; boll_up:2434.2347133827902; boll_down:2248.8686199505432; intra_trade_high:2392.1; long_stop:2303.099745961152; intra_trade_low:2325.6; short_stop:2307.038552182302; close:2337.61
2024-01-31 10:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2qp99zcveg-00329] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2304.243101]
2024-01-31 10:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-98.73000223012616; atr_value:1.5733869105313305; boll_up:109.78479866513644; boll_down:97.72897911264138; intra_trade_high:101.195; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.68447299956487; close:100.403
2024-01-31 10:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2r49d33vq3-00330] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.587612]
2024-01-31 11:00:00+08:00 [DEBUG] pos:0.5; cci_value:-61.0627247303256; atr_value:288.71796181246367; boll_up:44158.06382709964; boll_down:42386.84728401147; intra_trade_high:43890.8; long_stop:42367.4483977514; intra_trade_low:42631.0; short_stop:0.0; close:42912.4
2024-01-31 11:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2ndifpurmr-00331] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42389.466599]
2024-01-31 11:00:00+08:00 [DEBUG] pos:1.0; cci_value:-61.14114571435566; atr_value:16.62791041279482; boll_up:2430.918778171146; boll_down:2256.4878884955206; intra_trade_high:2392.1; long_stop:2304.2431006711554; intra_trade_low:2326.32; short_stop:2307.038552182302; close:2342.22
2024-01-31 11:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2pty2vykps-00332] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2305.634866]
2024-01-31 11:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-62.39207748693525; atr_value:1.560197193470109; boll_up:109.99943828783135; boll_down:97.26556171216869; intra_trade_high:100.9; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.58761193476292; close:101.114
2024-01-31 11:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1botadidup-00333] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.519026]
2024-01-31 12:00:00+08:00 [DEBUG] pos:0.5; cci_value:-47.99692447189089; atr_value:283.6778306340844; boll_up:44148.25810013751; boll_down:42338.01967764029; intra_trade_high:43890.8; long_stop:42389.46659857519; intra_trade_low:42838.6; short_stop:0.0; close:42942.4
2024-01-31 12:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-15bu7bckdv-00334] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42415.675281]
2024-01-31 12:00:00+08:00 [DEBUG] pos:1.0; cci_value:-52.875251360769575; atr_value:16.444048435352503; boll_up:2428.925901385663; boll_down:2261.5752097254485; intra_trade_high:2392.1; long_stop:2305.6348658534666; intra_trade_low:2337.5; short_stop:2307.038552182302; close:2341.49
2024-01-31 12:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2pkfpfjs5q-00335] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2306.590948]
2024-01-31 12:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-60.523286162735204; atr_value:1.534731467709632; boll_up:110.17080525819307; boll_down:96.70208363069591; intra_trade_high:101.33; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.51902540604458; close:100.708
2024-01-31 12:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1656i4in8o-00336] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.386604]
2024-01-31 13:00:00+08:00 [DEBUG] pos:0.5; cci_value:-30.667088207396667; atr_value:280.52438656211166; boll_up:44112.44438194378; boll_down:42311.50006250066; intra_trade_high:43890.8; long_stop:42415.675280702766; intra_trade_low:42845.1; short_stop:0.0; close:42958.7
2024-01-31 13:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2dvso24xfu-00337] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42432.07319]
2024-01-31 13:00:00+08:00 [DEBUG] pos:1.0; cci_value:-51.58352338566284; atr_value:16.34290396631216; boll_up:2426.2560259619067; boll_down:2267.0806407047594; intra_trade_high:2392.1; long_stop:2306.590948136167; intra_trade_low:2335.53; short_stop:2307.038552182302; close:2338.36
2024-01-31 13:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1z59rtn3xb-00338] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2307.116899]
2024-01-31 13:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-29.95034140285489; atr_value:1.5227756701739819; boll_up:109.77412123052093; boll_down:96.54854543614584; intra_trade_high:101.114; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.38660363209009; close:101.078
2024-01-31 13:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-21b4d13r41-00339] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.324434]
2024-01-31 14:00:00+08:00 [DEBUG] pos:0.5; cci_value:-20.510903426789756; atr_value:278.3669802187742; boll_up:44099.18747644982; boll_down:42277.90141243907; intra_trade_high:43890.8; long_stop:42432.073189877025; intra_trade_low:42903.5; short_stop:0.0; close:42955.4
2024-01-31 14:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1vi83833sj-00340] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42443.291703]
2024-01-31 14:00:00+08:00 [DEBUG] pos:1.0; cci_value:-66.58940557245919; atr_value:16.29201315288213; boll_up:2421.3186139433924; boll_down:2274.9091638343857; intra_trade_high:2392.1; long_stop:2307.1168993751767; intra_trade_low:2333.72; short_stop:2307.038552182302; close:2331.22
2024-01-31 14:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-23k36braq7-00341] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2307.381532]
2024-01-31 14:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-49.32717137618838; atr_value:1.515589028440364; boll_up:109.7742511273715; boll_down:96.07730442818415; intra_trade_high:101.757; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.32443348490472; close:100.341
2024-01-31 14:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-28yniu88r7-00342] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.287063]
2024-01-31 15:00:00+08:00 [DEBUG] pos:0.5; cci_value:31.10221371167677; atr_value:276.5903100502894; boll_up:44091.00407679052; boll_down:42259.36258987613; intra_trade_high:43890.8; long_stop:42443.29170286238; intra_trade_low:42891.6; short_stop:0.0; close:43031.0
2024-01-31 15:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1dp89515gi-00343] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42452.530388]
2024-01-31 15:00:00+08:00 [DEBUG] pos:1.0; cci_value:-49.197857507448404; atr_value:16.319059364803376; boll_up:2414.422682160565; boll_down:2285.740651172769; intra_trade_high:2392.1; long_stop:2307.3815316050127; intra_trade_low:2330.0; short_stop:2307.038552182302; close:2340.01
2024-01-31 15:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1rwdez92it-00344] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2307.240891]
2024-01-31 15:00:00+08:00 [DEBUG] pos:-5.0; cci_value:7.769793556497687; atr_value:1.523829628393458; boll_up:109.57549740631205; boll_down:95.9649470381325; intra_trade_high:101.268; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.2870629478899; close:101.612
2024-01-31 15:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2bux7aizw1-00345] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.329914]
2024-01-31 16:00:00+08:00 [DEBUG] pos:0.5; cci_value:74.08467531175071; atr_value:273.05822282323174; boll_up:44044.29748078321; boll_down:42250.79140810568; intra_trade_high:43890.8; long_stop:42452.5303877385; intra_trade_low:42925.6; short_stop:0.0; close:42966.7
2024-01-31 16:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1p1j6nayk9-00346] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42470.897241]
2024-01-31 16:00:00+08:00 [DEBUG] pos:1.0; cci_value:2.3971957878823518; atr_value:16.10581505855611; boll_up:2409.1363021940538; boll_down:2293.8370311392805; intra_trade_high:2392.1; long_stop:2307.240891303022; intra_trade_low:2328.5; short_stop:2307.038552182302; close:2338.3
2024-01-31 16:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1wj6ean492-00347] (OrderType.STOP & SELL)  created, [quantity 1.0] [price 2308.349762]
2024-01-31 16:00:00+08:00 [DEBUG] pos:-5.0; cci_value:64.01759738877598; atr_value:1.5103822054870395; boll_up:109.10969541762974; boll_down:95.95541569348147; intra_trade_high:101.8; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.32991406764599; close:101.068
2024-01-31 16:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2ahvj7xa5g-00348] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.259988]
2024-01-31 17:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - CLOSE SELL order [number aio-1706958946-1wj6ean492-00347] executed [quantity 1.0] [price $2308.349762] [Cost $461.669952] [Commission: $1.26959237] [Available balance: $94825.01738221999] [Position: #1.0] [Gross P&L: $-19.922224] [Net P&L: $-21.191816] 
2024-01-31 17:00:00+08:00 [INFO] ========> Trade closed, pnl: -19.922224
2024-01-31 17:00:00+08:00 [DEBUG] pos:0.5; cci_value:-158.62932544216827; atr_value:279.0937243035283; boll_up:44069.62482878128; boll_down:42146.13072677427; intra_trade_high:43890.8; long_stop:42470.897241319195; intra_trade_low:42920.9; short_stop:0.0; close:42639.0
2024-01-31 17:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1rp9yhbei9-00349] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42439.512634]
2024-01-31 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:-264.7870215963494; atr_value:16.7036412451284; boll_up:2415.495151597332; boll_down:2284.1181817360007; intra_trade_high:2392.1; long_stop:2308.3497616955083; intra_trade_low:2334.46; short_stop:2307.038552182302; close:2310.0
2024-01-31 17:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-1yu61mdmfm-00350] (STOP & SELL)  created, [quantity 1.0] [price 2284.118182]
2024-01-31 17:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-135.36878966951232; atr_value:1.538976392947274; boll_up:108.98879519673427; boll_down:95.46187146993246; intra_trade_high:101.93; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.25998746853261; close:99.264
2024-01-31 17:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-11ewzun529-00351] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.408677]
2024-01-31 18:00:00+08:00 [INFO] (BTCUSDT|BYBIT|NET) - CLOSE SELL order [number aio-1706958946-1rp9yhbei9-00349] executed [quantity 0.5] [price $42439.512634] [Cost $4243.951263] [Commission: $11.67086598] [Available balance: $95126.43727223999] [Position: #0.5] [Gross P&L: $-152.563641] [Net P&L: $-164.234507] 
2024-01-31 18:00:00+08:00 [INFO] ========> Trade closed, pnl: -152.563641
2024-01-31 18:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - OPEN SELL order [number aio-1706958946-1yu61mdmfm-00350] executed [quantity 1.0] [price $2284.118182] [Cost $456.823636] [Commission: $1.256265] [Available balance: $99399.64499923999] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-1.256265] 
2024-01-31 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:-197.82535091012335; atr_value:282.27221005630673; boll_up:44115.20961620094; boll_down:41976.279272687956; intra_trade_high:43890.8; long_stop:42439.512633621656; intra_trade_low:42563.3; short_stop:0.0; close:42365.3
2024-01-31 18:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1f4e9c9hcu-00352] (STOP & SELL)  created, [quantity 0.5] [price 41976.279273]
2024-01-31 18:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-254.1919257061755; atr_value:17.20721395611279; boll_up:2427.158137221063; boll_down:2262.8007516678254; intra_trade_high:2338.64; long_stop:2308.3497616955083; intra_trade_low:2306.8; short_stop:2307.038552182302; close:2282.1
2024-01-31 18:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2n2bk198a7-00353] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2368.807513]
2024-01-31 18:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-231.0921979764336; atr_value:1.5657818714585996; boll_up:109.23733359510791; boll_down:94.44966640489216; intra_trade_high:101.148; long_stop:98.68236777283606; intra_trade_low:98.406; short_stop:106.40867724332583; close:97.587
2024-01-31 18:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2cny3erfhd-00354] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.643066]
2024-01-31 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:-124.94132577666961; atr_value:286.2890329225089; boll_up:44085.84425045324; boll_down:41922.844638435665; intra_trade_high:42775.0; long_stop:42439.512633621656; intra_trade_low:42360.1; short_stop:0.0; close:42625.4
2024-01-31 19:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2jhht622gm-00355] (STOP & SELL)  created, [quantity 0.5] [price 41922.844639]
2024-01-31 19:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-148.3167528168333; atr_value:17.471065897459955; boll_up:2428.154502771993; boll_down:2253.916608339119; intra_trade_high:2312.58; long_stop:2308.3497616955083; intra_trade_low:2279.33; short_stop:2368.8075125717864; close:2298.34
2024-01-31 19:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-24v4danah9-00356] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2369.289543]
2024-01-31 19:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-137.93039225859263; atr_value:1.5882890153627565; boll_up:108.7918651406006; boll_down:94.25657930384386; intra_trade_high:99.698; long_stop:98.68236777283606; intra_trade_low:97.501; short_stop:105.64306573158473; close:99.061
2024-01-31 19:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2izbanxr42-00357] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.517103]
2024-01-31 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:-77.1546876467739; atr_value:285.57505114173034; boll_up:44047.695059632104; boll_down:41877.81605147903; intra_trade_high:42672.8; long_stop:42439.512633621656; intra_trade_low:42333.3; short_stop:0.0; close:42601.5
2024-01-31 20:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2hhothv1d1-00358] (STOP & SELL)  created, [quantity 0.5] [price 41877.816052]
2024-01-31 20:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-80.94404427201138; atr_value:17.294533144849805; boll_up:2423.6691411943752; boll_down:2250.310858805626; intra_trade_high:2298.85; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2369.289542666792; close:2303.42
2024-01-31 20:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-13hirjmqoo-00359] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2368.371572]
2024-01-31 20:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-55.89673604003131; atr_value:1.5837211661969044; boll_up:108.01105873603868; boll_down:94.40349681951685; intra_trade_high:99.274; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:105.51710287988632; close:99.404
2024-01-31 20:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1j5o1sjzpu-00360] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.49335]
2024-01-31 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:-26.708197180768032; atr_value:288.4781495720709; boll_up:43910.49081311564; boll_down:41932.15363132882; intra_trade_high:42709.0; long_stop:42439.512633621656; intra_trade_low:42521.4; short_stop:0.0; close:42776.5
2024-01-31 21:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2peput4qg7-00361] (STOP & SELL)  created, [quantity 0.5] [price 41932.153631]
2024-01-31 21:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-42.81300536751292; atr_value:17.43621640862589; boll_up:2416.6239979563907; boll_down:2250.3604464880536; intra_trade_high:2305.78; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2368.371572353219; close:2311.21
2024-01-31 21:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1caa71v84z-00362] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2369.108325]
2024-01-31 21:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-23.739075240465734; atr_value:1.6054364403047048; boll_up:106.93390767967193; boll_down:94.84020343143916; intra_trade_high:99.94; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:105.4933500642239; close:99.479
2024-01-31 21:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2hrvurysmz-00363] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.60627]
2024-01-31 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:-0.48778730256046765; atr_value:295.1930936164034; boll_up:43734.17778738394; boll_down:42032.466657060526; intra_trade_high:42909.9; long_stop:42439.512633621656; intra_trade_low:42488.9; short_stop:0.0; close:42850.0
2024-01-31 22:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1zp6yyd18f-00364] (STOP & SELL)  created, [quantity 0.5] [price 42032.466657]
2024-01-31 22:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-43.935659962369314; atr_value:17.431318736305023; boll_up:2408.9139330181533; boll_down:2250.6871780929587; intra_trade_high:2317.4; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2369.108325324855; close:2306.06
2024-01-31 22:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2amcw2bmdx-00365] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2369.082858]
2024-01-31 22:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-33.9407278752668; atr_value:1.6288752842283722; boll_up:105.70499817152945; boll_down:95.4987796062483; intra_trade_high:100.906; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:105.60626948958446; close:99.774
2024-01-31 22:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1cn1coedmy-00366] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.728152]
2024-01-31 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:127.88083808855664; atr_value:311.67214848392825; boll_up:43641.24919313462; boll_down:42104.295251309835; intra_trade_high:42967.3; long_stop:42439.512633621656; intra_trade_low:42521.2; short_stop:0.0; close:43330.0
2024-01-31 23:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2q8x4zvs1d-00367] (STOP & BUY)  created, [quantity 0.5] [price 43641.249193]
2024-01-31 23:00:00+08:00 [DEBUG] pos:-1.0; cci_value:12.102133613150281; atr_value:18.245103974285595; boll_up:2394.6926658794146; boll_down:2259.2173341205853; intra_trade_high:2313.75; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2369.082857428786; close:2328.16
2024-01-31 23:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2iorczzwsb-00368] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2373.314541]
2024-01-31 23:00:00+08:00 [DEBUG] pos:-5.0; cci_value:36.44706430198183; atr_value:1.7245858219669914; boll_up:104.64762780648576; boll_down:96.2500388601809; intra_trade_high:100.436; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:105.72815147798752; close:101.525
2024-01-31 23:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-17zp73cmup-00369] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.225846]
2024-02-01 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:166.0066501523674; atr_value:304.5037219913483; boll_up:43712.15869666928; boll_down:42050.55241444185; intra_trade_high:43458.5; long_stop:42439.512633621656; intra_trade_low:42659.0; short_stop:0.0; close:43456.6
2024-02-01 00:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1chs8h8tqi-00370] (STOP & BUY)  created, [quantity 0.5] [price 43712.158697]
2024-02-01 00:00:00+08:00 [DEBUG] pos:-1.0; cci_value:103.67903865506263; atr_value:18.069466154950636; boll_up:2388.199726826086; boll_down:2263.54582872947; intra_trade_high:2332.87; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2373.314540666285; close:2344.8
2024-02-01 00:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2mid3ukcx5-00371] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2372.401224]
2024-02-01 00:00:00+08:00 [DEBUG] pos:-5.0; cci_value:108.47396967497292; atr_value:1.6792321604172205; boll_up:103.8054731047742; boll_down:96.83808245078134; intra_trade_high:101.888; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:106.22584627422835; close:101.112
2024-02-01 00:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-21vrqaihq9-00372] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.990007]
2024-02-01 01:00:00+08:00 [INFO] (BTCUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958946-1chs8h8tqi-00370] executed [quantity 0.5] [price $43712.158697] [Cost $4371.215870] [Commission: $12.02084364] [Available balance: $98930.80051959999] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-12.020844] 
2024-02-01 01:00:00+08:00 [DEBUG] pos:0.5; cci_value:150.01886537243269; atr_value:296.44827642000234; boll_up:43966.55614375054; boll_down:41881.666078471695; intra_trade_high:43614.0; long_stop:42439.512633621656; intra_trade_low:43264.0; short_stop:0.0; close:43688.6
2024-02-01 01:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1n9ixub5br-00373] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42194.368963]
2024-02-01 01:00:00+08:00 [DEBUG] pos:-1.0; cci_value:120.32850732367999; atr_value:17.538289650672183; boll_up:2389.1846116898655; boll_down:2263.0220549768014; intra_trade_high:2346.4; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2372.401224005743; close:2345.81
2024-02-01 01:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1nbvucybh1-00374] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2369.639106]
2024-02-01 01:00:00+08:00 [DEBUG] pos:-5.0; cci_value:137.72865064029125; atr_value:1.6635411924201862; boll_up:104.22176553567334; boll_down:96.55590113099336; intra_trade_high:102.491; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:105.99000723416954; close:102.607
2024-02-01 01:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1m36xmb3js-00375] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.908414]
2024-02-01 02:00:00+08:00 [DEBUG] pos:0.5; cci_value:103.23987691904796; atr_value:293.8149292096337; boll_up:44089.07168474003; boll_down:41824.161648593305; intra_trade_high:43735.9; long_stop:42194.36896261599; intra_trade_low:43404.3; short_stop:0.0; close:43493.4
2024-02-01 02:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2n8t985bbv-00376] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42208.062368]
2024-02-01 02:00:00+08:00 [DEBUG] pos:-1.0; cci_value:91.99382821875763; atr_value:17.527638914214883; boll_up:2388.366789051535; boll_down:2263.293210948465; intra_trade_high:2349.67; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2369.6391061834956; close:2334.33
2024-02-01 02:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2b4qedvtg5-00377] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2369.583722]
2024-02-01 02:00:00+08:00 [DEBUG] pos:-5.0; cci_value:110.56440065095413; atr_value:1.6583593424807168; boll_up:104.38814262118491; boll_down:96.504746267704; intra_trade_high:102.764; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:105.90841420058496; close:101.571
2024-02-01 02:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-18qd6fr7gm-00378] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.881469]
2024-02-01 03:00:00+08:00 [DEBUG] pos:0.5; cci_value:45.345151897754526; atr_value:302.5600685813182; boll_up:44139.0945053434; boll_down:41834.349939101055; intra_trade_high:43735.9; long_stop:42208.06236810991; intra_trade_low:43442.9; short_stop:0.0; close:43308.0
2024-02-01 03:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-22gwy9mt42-00379] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42162.587643]
2024-02-01 03:00:00+08:00 [DEBUG] pos:-1.0; cci_value:32.62770140919071; atr_value:18.063092920451545; boll_up:2387.7315511302654; boll_down:2262.911782203068; intra_trade_high:2347.34; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2369.5837223539174; close:2322.35
2024-02-01 03:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1grxog1dnb-00380] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2372.368083]
2024-02-01 03:00:00+08:00 [DEBUG] pos:-5.0; cci_value:38.90988903792204; atr_value:1.6828821528202065; boll_up:104.44241293191126; boll_down:96.52125373475539; intra_trade_high:102.693; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:105.88146858089972; close:100.965
2024-02-01 03:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-28g135mx5a-00381] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.008987]
2024-02-01 04:00:00+08:00 [DEBUG] pos:0.5; cci_value:-49.38079539701998; atr_value:322.4697390230375; boll_up:44174.0552268103; boll_down:41761.21143985638; intra_trade_high:43735.9; long_stop:42162.58764337715; intra_trade_low:43001.7; short_stop:0.0; close:42516.5
2024-02-01 04:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1yksuy4e6u-00382] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42059.057357]
2024-02-01 04:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-79.92442271357156; atr_value:18.822651043029605; boll_up:2390.9246024350764; boll_down:2254.0065086760346; intra_trade_high:2341.76; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2372.368083186348; close:2286.2
2024-02-01 04:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-23awvho427-00383] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2376.317786]
2024-02-01 04:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-82.1831951426523; atr_value:1.752040807581951; boll_up:104.76456817799527; boll_down:95.92898737756028; intra_trade_high:101.916; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:106.00898719466507; close:97.972
2024-02-01 04:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1mtc43btwj-00384] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 106.368612]
2024-02-01 05:00:00+08:00 [DEBUG] pos:0.5; cci_value:-103.86989510595203; atr_value:327.09893999556044; boll_up:44211.08530596737; boll_down:41674.470249588194; intra_trade_high:43735.9; long_stop:42059.05735708021; intra_trade_low:42488.0; short_stop:0.0; close:42465.0
2024-02-01 05:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-221npwivy6-00385] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42034.985512]
2024-02-01 05:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-151.86953531781344; atr_value:19.262297860357144; boll_up:2393.6876559490242; boll_down:2244.021232939864; intra_trade_high:2323.8; long_stop:2308.3497616955083; intra_trade_low:2278.44; short_stop:2376.317785423754; close:2277.22
2024-02-01 05:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-26tdzd7pfx-00386] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2361.163949]
2024-02-01 05:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-167.43706189195152; atr_value:1.8013727299879982; boll_up:105.1306159456516; boll_down:95.12593960990397; intra_trade_high:101.246; long_stop:98.68236777283606; intra_trade_low:97.258; short_stop:106.36861219942614; close:97.181
2024-02-01 05:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2jhdm2mj3n-00387] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.139138]
2024-02-01 06:00:00+08:00 [DEBUG] pos:0.5; cci_value:-87.05190465582534; atr_value:327.91289618937384; boll_up:44217.32942192014; boll_down:41633.01502252432; intra_trade_high:43735.9; long_stop:42034.985512023086; intra_trade_low:42255.0; short_stop:0.0; close:42625.5
2024-02-01 06:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1udoz4vpvj-00388] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42030.75294]
2024-02-01 06:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-117.47110494683297; atr_value:19.364772324640747; boll_up:2392.7888259532383; boll_down:2238.478951824539; intra_trade_high:2290.68; long_stop:2308.3497616955083; intra_trade_low:2261.0; short_stop:2361.163948873857; close:2283.52
2024-02-01 06:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2r63skj6tv-00389] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2361.696816]
2024-02-01 06:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-130.15393363388964; atr_value:1.8142122007953396; boll_up:105.296898259913; boll_down:94.61610174008699; intra_trade_high:98.703; long_stop:98.68236777283606; intra_trade_low:95.772; short_stop:105.13913819593759; close:97.616
2024-02-01 06:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1s94bofgx3-00390] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.205904]
2024-02-01 07:00:00+08:00 [DEBUG] pos:0.5; cci_value:-74.37761772980117; atr_value:324.4394510946972; boll_up:44226.31080456859; boll_down:41578.92252876475; intra_trade_high:43735.9; long_stop:42030.752939815255; intra_trade_low:42347.0; short_stop:0.0; close:42552.7
2024-02-01 07:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2af61yi7zw-00391] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42048.814854]
2024-02-01 07:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-83.36109625327909; atr_value:18.951220803484993; boll_up:2391.499424902353; boll_down:2233.4839084309806; intra_trade_high:2286.01; long_stop:2308.3497616955083; intra_trade_low:2261.0; short_stop:2361.696816088132; close:2281.8
2024-02-01 07:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1o2ycvycwm-00392] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2359.546348]
2024-02-01 07:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-105.82441287801659; atr_value:1.809617837853404; boll_up:105.48953192862062; boll_down:93.95380140471268; intra_trade_high:97.836; long_stop:98.68236777283606; intra_trade_low:95.772; short_stop:105.20590344413577; close:96.851
2024-02-01 07:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1u5kmvk2a9-00393] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.182013]
2024-02-01 08:00:00+08:00 [DEBUG] pos:0.5; cci_value:-87.98773250989873; atr_value:328.51794239819753; boll_up:44243.76174698681; boll_down:41504.77158634651; intra_trade_high:43735.9; long_stop:42048.81485430757; intra_trade_low:42532.1; short_stop:0.0; close:42445.1
2024-02-01 08:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1mdvvxeumg-00394] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42027.6067]
2024-02-01 08:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-74.90320695448976; atr_value:19.084009348293332; boll_up:2390.529573402508; boll_down:2228.999315486382; intra_trade_high:2287.2; long_stop:2308.3497616955083; intra_trade_low:2261.0; short_stop:2359.546348178122; close:2282.13
2024-02-01 08:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1spjf3nb9u-00395] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2360.236849]
2024-02-01 08:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-85.30273925124398; atr_value:1.8087602808698324; boll_up:105.60124002208995; boll_down:93.49798220013226; intra_trade_high:97.764; long_stop:98.68236777283606; intra_trade_low:95.772; short_stop:105.18201275683771; close:97.244
2024-02-01 08:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1v9pjuh29s-00396] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 105.177554]
2024-02-01 09:00:00+08:00 [INFO] (BTCUSDT|BYBIT|NET) - CLOSE SELL order [number aio-1706958946-1mdvvxeumg-00394] executed [quantity 0.5] [price $42027.606700] [Cost $4202.760670] [Commission: $11.55759184] [Available balance: $93705.75105975999] [Position: #0.5] [Gross P&L: $-842.275998] [Net P&L: $-853.83359] 
2024-02-01 09:00:00+08:00 [INFO] ========> Trade closed, pnl: -842.275998
2024-02-01 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:-111.30943367302103; atr_value:339.370046821826; boll_up:44349.54526029449; boll_down:41279.999184149936; intra_trade_high:43735.9; long_stop:42027.60669952937; intra_trade_low:42166.0; short_stop:0.0; close:41960.1
2024-02-01 09:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-265uh6z28u-00397] (STOP & SELL)  created, [quantity 0.5] [price 41279.999184]
2024-02-01 09:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-113.61402213185572; atr_value:20.04207045469436; boll_up:2396.0474710767994; boll_down:2212.7980844787553; intra_trade_high:2288.55; long_stop:2308.3497616955083; intra_trade_low:2261.0; short_stop:2360.2368486111254; close:2243.86
2024-02-01 09:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1m6bdjubvg-00398] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2340.858766]
2024-02-01 09:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-118.06137003795055; atr_value:1.884809010360899; boll_up:106.27537775355434; boll_down:91.98773335755673; intra_trade_high:97.665; long_stop:98.68236777283606; intra_trade_low:95.772; short_stop:105.17755346052313; close:94.087
2024-02-01 09:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2oq3eqd5v3-00399] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 103.401007]
2024-02-01 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:-96.23270155770928; atr_value:334.06455225269343; boll_up:44382.84157599237; boll_down:41155.513979563184; intra_trade_high:42450.0; long_stop:42027.60669952937; intra_trade_low:41843.5; short_stop:0.0; close:42146.0
2024-02-01 10:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1s9f2g5sda-00400] (STOP & SELL)  created, [quantity 0.5] [price 41155.51398]
2024-02-01 10:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-100.74454180673555; atr_value:19.873753633158042; boll_up:2393.5713888382575; boll_down:2206.4797222728525; intra_trade_high:2283.18; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2340.8587663644107; close:2259.15
2024-02-01 10:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1swdupqveg-00401] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2339.983519]
2024-02-01 10:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-119.424029485105; atr_value:1.8517921424168358; boll_up:106.64835447899146; boll_down:90.85564552100847; intra_trade_high:97.395; long_stop:98.68236777283606; intra_trade_low:93.6; short_stop:103.40100685387667; close:94.236
2024-02-01 10:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1m1i7o4sre-00402] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 103.140319]
2024-02-01 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:-98.03612554755999; atr_value:328.6671746651171; boll_up:44453.02978942933; boll_down:41014.659099459546; intra_trade_high:42194.9; long_stop:42027.60669952937; intra_trade_low:41935.4; short_stop:0.0; close:42003.0
2024-02-01 11:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1s6uwgos4n-00403] (STOP & SELL)  created, [quantity 0.5] [price 41014.6591]
2024-02-01 11:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-83.44642784045658; atr_value:19.503745897467937; boll_up:2396.1517840853735; boll_down:2197.9037714701813; intra_trade_high:2259.2; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2339.9835188924217; close:2256.04
2024-02-01 11:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1g9jpmbvt4-00404] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2338.059479]
2024-02-01 11:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-122.26499883544099; atr_value:1.8322634193221228; boll_up:107.28972760859364; boll_down:89.57905016918409; intra_trade_high:94.623; long_stop:98.68236777283606; intra_trade_low:93.511; short_stop:103.14031914056754; close:93.547
2024-02-01 11:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-17zrrnx1iy-00405] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.72477]
2024-02-01 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:-90.06795453870917; atr_value:326.28981467041586; boll_up:44492.72947405715; boll_down:40941.55941483173; intra_trade_high:42168.9; long_stop:42027.60669952937; intra_trade_low:41943.9; short_stop:0.0; close:42064.7
2024-02-01 12:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2hbkhuwz8f-00406] (STOP & SELL)  created, [quantity 0.5] [price 40941.559415]
2024-02-01 12:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-69.7202481206102; atr_value:19.49412996257859; boll_up:2398.277303279995; boll_down:2193.4671411644495; intra_trade_high:2262.29; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2338.059478666833; close:2261.3
2024-02-01 12:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-29xfnr6dro-00407] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2338.009476]
2024-02-01 12:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-96.28176946395983; atr_value:1.8089488934838918; boll_up:107.70934324441578; boll_down:88.77021231113974; intra_trade_high:94.417; long_stop:98.68236777283606; intra_trade_low:93.197; short_stop:102.72476978047504; close:94.084
2024-02-01 12:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2cwq1k6pes-00408] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.419534]
2024-02-01 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:-54.4959276511139; atr_value:322.85325300062686; boll_up:44520.075977791304; boll_down:40861.2351333198; intra_trade_high:42138.4; long_stop:42027.60669952937; intra_trade_low:41883.8; short_stop:0.0; close:42148.6
2024-02-01 13:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2enbip6jty-00409] (STOP & SELL)  created, [quantity 0.5] [price 40861.235133]
2024-02-01 13:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-29.6106458118675; atr_value:19.26441880077025; boll_up:2398.9065851038563; boll_down:2189.381192673922; intra_trade_high:2266.66; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2338.0094758054083; close:2267.23
2024-02-01 13:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-24af2xuc21-00410] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2336.814978]
2024-02-01 13:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-72.53231414390741; atr_value:1.7939114475857503; boll_up:107.92768302071843; boll_down:88.00342809039265; intra_trade_high:94.332; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:102.41953424611624; close:94.125
2024-02-01 13:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-26ox4csz5t-00411] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.34134]
2024-02-01 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:-29.61680945686698; atr_value:317.930667618259; boll_up:44539.39104224777; boll_down:40794.52006886334; intra_trade_high:42188.0; long_stop:42027.60669952937; intra_trade_low:42014.1; short_stop:0.0; close:42174.9
2024-02-01 14:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-27oabbn4ou-00412] (STOP & SELL)  created, [quantity 0.5] [price 40794.520069]
2024-02-01 14:00:00+08:00 [DEBUG] pos:-1.0; cci_value:21.897091722597107; atr_value:18.980524856287012; boll_up:2398.139734586275; boll_down:2186.8069320803916; intra_trade_high:2267.48; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2336.814977764005; close:2273.35
2024-02-01 14:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1i77wdfnxo-00413] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2335.338729]
2024-02-01 14:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-41.037183986977496; atr_value:1.7659753763257158; boll_up:107.90570948825165; boll_down:87.49884606730386; intra_trade_high:94.38; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:102.34133952744591; close:94.665
2024-02-01 14:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1wu8gctwob-00414] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.196072]
2024-02-01 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-13.431403901502632; atr_value:315.3160873605213; boll_up:44540.98952759488; boll_down:40726.82158351624; intra_trade_high:42217.0; long_stop:42027.60669952937; intra_trade_low:42106.4; short_stop:0.0; close:42181.6
2024-02-01 15:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1qgjangd1u-00415] (STOP & SELL)  created, [quantity 0.5] [price 40726.821584]
2024-02-01 15:00:00+08:00 [DEBUG] pos:-1.0; cci_value:35.197639706823395; atr_value:18.724949847274527; boll_up:2395.9746622800935; boll_down:2184.490893275462; intra_trade_high:2273.36; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2335.3387292526922; close:2270.88
2024-02-01 15:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2e49r9ueu6-00416] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2334.009739]
2024-02-01 15:00:00+08:00 [DEBUG] pos:-5.0; cci_value:-7.384391123386308; atr_value:1.7596618246698417; boll_up:107.76455057368567; boll_down:87.12833831520324; intra_trade_high:94.829; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:102.19607195689373; close:94.874
2024-02-01 15:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1adfp3euua-00417] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.163242]
2024-02-01 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:2.9876002303009837; atr_value:311.69087868253206; boll_up:44521.956250912306; boll_down:40677.854860198815; intra_trade_high:42293.7; long_stop:42027.60669952937; intra_trade_low:42102.6; short_stop:0.0; close:42238.0
2024-02-01 16:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-214cs1k4dz-00418] (STOP & BUY)  created, [quantity 0.5] [price 44521.956251]
2024-02-01 16:00:00+08:00 [DEBUG] pos:-1.0; cci_value:23.26489207339708; atr_value:18.46229560034317; boll_up:2394.1703148184824; boll_down:2182.4263518481857; intra_trade_high:2276.79; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2334.0097392058274; close:2271.24
2024-02-01 16:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2e7zoty1kc-00419] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2332.643937]
2024-02-01 16:00:00+08:00 [DEBUG] pos:-5.0; cci_value:8.531538269758647; atr_value:1.7465132012878886; boll_up:107.46634970425924; boll_down:86.9124280735185; intra_trade_high:95.737; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:102.16324148828318; close:95.147
2024-02-01 16:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-167g1v1tty-00420] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.094869]
2024-02-01 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:18.74381593433218; atr_value:305.98276112764785; boll_up:44387.52316492412; boll_down:40680.42127952032; intra_trade_high:42244.6; long_stop:42027.60669952937; intra_trade_low:42114.2; short_stop:0.0; close:42143.2
2024-02-01 17:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-14ureia85k-00421] (STOP & BUY)  created, [quantity 0.5] [price 44387.523165]
2024-02-01 17:00:00+08:00 [DEBUG] pos:-1.0; cci_value:30.71340713406952; atr_value:18.338229795574662; boll_up:2386.6341367158966; boll_down:2183.134752172995; intra_trade_high:2272.68; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2332.6439371217843; close:2266.71
2024-02-01 17:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1gzabgo2a3-00422] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2331.998795]
2024-02-01 17:00:00+08:00 [DEBUG] pos:-5.0; cci_value:69.44195226987382; atr_value:1.7359542216435502; boll_up:106.54630437265058; boll_down:87.19991784957159; intra_trade_high:95.399; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:102.09486864669702; close:95.832
2024-02-01 17:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-153e3nxvb3-00423] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.039962]
2024-02-01 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:95.87243804865136; atr_value:305.6970151809514; boll_up:44167.84668784375; boll_down:40761.80886771179; intra_trade_high:42259.4; long_stop:42027.60669952937; intra_trade_low:42120.5; short_stop:0.0; close:42212.0
2024-02-01 18:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2cgjirvthx-00424] (STOP & BUY)  created, [quantity 0.5] [price 44167.846688]
2024-02-01 18:00:00+08:00 [DEBUG] pos:-1.0; cci_value:57.6476693384995; atr_value:18.35388436810827; boll_up:2370.2293794033076; boll_down:2190.8483983744736; intra_trade_high:2274.89; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2331.998794936988; close:2266.58
2024-02-01 18:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1fziya5oom-00425] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2332.080199]
2024-02-01 18:00:00+08:00 [DEBUG] pos:-5.0; cci_value:148.34310923948559; atr_value:1.7325504314141371; boll_up:105.62709602181299; boll_down:87.57834842263138; intra_trade_high:96.102; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:102.03996195254646; close:96.245
2024-02-01 18:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-16htcf6dgo-00426] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 102.022262]
2024-02-01 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:-16.835343312517452; atr_value:306.84398854273144; boll_up:43770.077000110214; boll_down:40979.08966655644; intra_trade_high:42329.9; long_stop:42027.60669952937; intra_trade_low:42103.4; short_stop:0.0; close:42064.2
2024-02-01 19:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2fkn7fbfrp-00427] (STOP & SELL)  created, [quantity 0.5] [price 40979.089667]
2024-02-01 19:00:00+08:00 [DEBUG] pos:-1.0; cci_value:20.502258723421335; atr_value:18.106962383900136; boll_up:2348.3662422653474; boll_down:2203.7448688457657; intra_trade_high:2277.32; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2332.080198714163; close:2265.11
2024-02-01 19:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2mgwy93rwi-00428] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.796204]
2024-02-01 19:00:00+08:00 [DEBUG] pos:-5.0; cci_value:86.17338972516664; atr_value:1.7222910979051818; boll_up:103.77616403200118; boll_down:88.62805819022095; intra_trade_high:96.748; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:102.02226224335352; close:95.396
2024-02-01 19:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-18wu16krfh-00429] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.968914]
2024-02-01 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:-49.73056197075308; atr_value:309.11880162781233; boll_up:43355.09954967613; boll_down:41242.47822810162; intra_trade_high:42297.4; long_stop:42027.60669952937; intra_trade_low:42000.0; short_stop:0.0; close:42129.1
2024-02-01 20:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1azom4zm2z-00430] (STOP & SELL)  created, [quantity 0.5] [price 41242.478228]
2024-02-01 20:00:00+08:00 [DEBUG] pos:-1.0; cci_value:25.594970812748226; atr_value:18.12733511735831; boll_up:2326.542855843525; boll_down:2218.368255267588; intra_trade_high:2271.99; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.7962043962807; close:2269.53
2024-02-01 20:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1bsau8n513-00431] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.902143]
2024-02-01 20:00:00+08:00 [DEBUG] pos:-5.0; cci_value:46.51594706556405; atr_value:1.6889910235911287; boll_up:102.01633993853032; boll_down:89.6841045059141; intra_trade_high:96.526; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.96891370910696; close:95.237
2024-02-01 20:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-149wz8zv3z-00432] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.795753]
2024-02-01 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:7.69115890083872; atr_value:303.4575688086771; boll_up:42888.57303858531; boll_down:41586.28251697023; intra_trade_high:42220.9; long_stop:42027.60669952937; intra_trade_low:41931.0; short_stop:0.0; close:42203.5
2024-02-01 21:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1ysyzb5if1-00433] (STOP & BUY)  created, [quantity 0.5] [price 42888.573039]
2024-02-01 21:00:00+08:00 [DEBUG] pos:-1.0; cci_value:47.36113618583317; atr_value:17.734193906260966; boll_up:2304.743368052209; boll_down:2234.479965281127; intra_trade_high:2273.69; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.902142610263; close:2271.16
2024-02-01 21:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-16jo1s9h76-00434] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2328.857808]
2024-02-01 21:00:00+08:00 [DEBUG] pos:-5.0; cci_value:36.465056066404806; atr_value:1.667269982107389; boll_up:100.0447260373337; boll_down:91.0484961848885; intra_trade_high:95.94; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.79575332267387; close:95.5
2024-02-01 21:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1i5mzb737b-00435] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.682804]
2024-02-01 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:298.10295302845793; atr_value:308.59627483485644; boll_up:42928.99624411295; boll_down:41557.90375588703; intra_trade_high:42284.3; long_stop:42027.60669952937; intra_trade_low:41965.1; short_stop:0.0; close:42624.9
2024-02-01 22:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-25iqyvxjtt-00436] (STOP & BUY)  created, [quantity 0.5] [price 42928.996244]
2024-02-01 22:00:00+08:00 [DEBUG] pos:-1.0; cci_value:307.55064456720686; atr_value:18.265112909383546; boll_up:2308.815736974213; boll_down:2231.476485248012; intra_trade_high:2276.66; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2328.8578083125567; close:2295.82
2024-02-01 22:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2pau9u9nm2-00437] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2331.618587]
2024-02-01 22:00:00+08:00 [DEBUG] pos:-5.0; cci_value:134.2764283550679; atr_value:1.6676889735586797; boll_up:99.62291094624076; boll_down:91.32597794264812; intra_trade_high:95.984; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.68280390695843; close:96.673
2024-02-01 22:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1xcota7dux-00438] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.684983]
2024-02-01 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:205.52468173691133; atr_value:312.0049028101983; boll_up:42932.458409661966; boll_down:41555.87492367135; intra_trade_high:42645.3; long_stop:42027.60669952937; intra_trade_low:42167.9; short_stop:0.0; close:42477.9
2024-02-01 23:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-2kv1ponurw-00439] (STOP & BUY)  created, [quantity 0.5] [price 42932.45841]
2024-02-01 23:00:00+08:00 [DEBUG] pos:-1.0; cci_value:188.16623383189824; atr_value:18.413770857846185; boll_up:2311.375598233494; boll_down:2230.0599573220625; intra_trade_high:2303.03; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2331.6185871287944; close:2287.51
2024-02-01 23:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-129sg6yb4z-00440] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2332.391609]
2024-02-01 23:00:00+08:00 [DEBUG] pos:-5.0; cci_value:116.94374654763736; atr_value:1.6578140929922052; boll_up:99.33137454284804; boll_down:91.47851434604084; intra_trade_high:97.132; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.68498266250513; close:95.93
2024-02-01 23:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1j4dvv8oeo-00441] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.633633]
2024-02-02 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:110.08028155330513; atr_value:312.7727145511195; boll_up:42932.746535976694; boll_down:41555.66457513439; intra_trade_high:42928.0; long_stop:42027.60669952937; intra_trade_low:42466.0; short_stop:0.0; close:42626.2
2024-02-02 00:00:00+08:00 [INFO] Order for BTCUSDT [number aio-1706958946-1qcyauyg1i-00442] (STOP & BUY)  created, [quantity 0.5] [price 42932.746536]
2024-02-02 00:00:00+08:00 [DEBUG] pos:-1.0; cci_value:65.7057174842071; atr_value:18.238153886158834; boll_up:2313.659598966412; boll_down:2228.6015121447026; intra_trade_high:2307.89; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2332.3916084608; close:2290.95
2024-02-02 00:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1qovqtb47a-00443] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2331.4784]
2024-02-02 00:00:00+08:00 [DEBUG] pos:-5.0; cci_value:20.88398082677661; atr_value:1.6574082637999754; boll_up:98.89630094974565; boll_down:91.7656990502543; intra_trade_high:97.459; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.63363328355948; close:96.285
2024-02-02 00:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2qdc74wqdx-00444] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.631523]
2024-02-02 01:00:00+08:00 [INFO] (BTCUSDT|BYBIT|NET) - OPEN BUY order [number aio-1706958946-1qcyauyg1i-00442] executed [quantity 0.5] [price $42932.746536] [Cost $4293.274654] [Commission: $11.8065053] [Available balance: $98065.16042445999] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-11.806505] 
2024-02-02 01:00:00+08:00 [DEBUG] pos:0.5; cci_value:156.332299408903; atr_value:320.59925797472323; boll_up:43091.064989947976; boll_down:41435.935010051995; intra_trade_high:42684.5; long_stop:42027.60669952937; intra_trade_low:42333.0; short_stop:0.0; close:42900.0
2024-02-02 01:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1tgpbbrh34-00445] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41477.883859]
2024-02-02 01:00:00+08:00 [DEBUG] pos:-1.0; cci_value:142.21837157425549; atr_value:18.106390706817134; boll_up:2321.40921451306; boll_down:2223.3030077091635; intra_trade_high:2292.65; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2331.478400208026; close:2303.86
2024-02-02 01:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-18h5mkmf7e-00446] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.793232]
2024-02-02 01:00:00+08:00 [DEBUG] pos:-5.0; cci_value:141.97479458138542; atr_value:1.648084478960286; boll_up:98.95370927158416; boll_down:91.72695739508251; intra_trade_high:96.448; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.63152297175988; close:97.019
2024-02-02 01:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2kj776c7ny-00447] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.583039]
2024-02-02 02:00:00+08:00 [DEBUG] pos:0.5; cci_value:113.25920883443139; atr_value:320.44541524886364; boll_up:43211.22867980611; boll_down:41357.64909797165; intra_trade_high:43145.0; long_stop:41477.88385853144; intra_trade_low:42604.1; short_stop:0.0; close:42822.0
2024-02-02 02:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-15xz9fkd4k-00448] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41478.683841]
2024-02-02 02:00:00+08:00 [DEBUG] pos:-1.0; cci_value:91.05867855459869; atr_value:18.081679858060475; boll_up:2324.6411684170653; boll_down:2221.4721649162693; intra_trade_high:2311.96; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.793231675449; close:2294.74
2024-02-02 02:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2npmhcxv8k-00449] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.664735]
2024-02-02 02:00:00+08:00 [DEBUG] pos:-5.0; cci_value:108.4977885543625; atr_value:1.6390564552705436; boll_up:98.7656401928832; boll_down:91.85635980711676; intra_trade_high:97.495; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.58303929059349; close:96.716
2024-02-02 02:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2pijmjp4sv-00450] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.536094]
2024-02-02 03:00:00+08:00 [DEBUG] pos:0.5; cci_value:133.6079782085059; atr_value:328.7298494271625; boll_up:43483.01612427622; boll_down:41223.75054239043; intra_trade_high:43145.0; long_stop:41478.68384070591; intra_trade_low:42733.3; short_stop:0.0; close:43201.1
2024-02-02 03:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2kt44tyac5-00451] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41597.904783]
2024-02-02 03:00:00+08:00 [DEBUG] pos:-1.0; cci_value:86.47466666666456; atr_value:18.13163887312771; boll_up:2327.1615353498505; boll_down:2225.5729090945947; intra_trade_high:2306.95; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.6647352619143; close:2303.45
2024-02-02 03:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-22jzeg7vmp-00452] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.924522]
2024-02-02 03:00:00+08:00 [DEBUG] pos:-5.0; cci_value:139.47899798076608; atr_value:1.6498358965724802; boll_up:99.32642493857979; boll_down:91.70979728364237; intra_trade_high:97.465; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.53609356740684; close:97.815
2024-02-02 03:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-186j497rz1-00453] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.592147]
2024-02-02 04:00:00+08:00 [DEBUG] pos:0.5; cci_value:96.63704478132014; atr_value:332.6443424336047; boll_up:43616.686990219474; boll_down:41183.4018986694; intra_trade_high:43307.3; long_stop:41597.90478297876; intra_trade_low:42796.3; short_stop:0.0; close:42985.9
2024-02-02 04:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1sdosr8y1e-00454] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41577.549419]
2024-02-02 04:00:00+08:00 [DEBUG] pos:-1.0; cci_value:67.385965498921; atr_value:18.066550262823867; boll_up:2329.7849521364615; boll_down:2227.2339367524282; intra_trade_high:2308.2; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.924522140264; close:2297.71
2024-02-02 04:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1ry82zyebv-00455] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.586061]
2024-02-02 04:00:00+08:00 [DEBUG] pos:-5.0; cci_value:104.50805358814135; atr_value:1.6546388097616203; boll_up:99.5399374727766; boll_down:91.82217363833446; intra_trade_high:98.082; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.5921466621769; close:97.169
2024-02-02 04:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1bnzma6ink-00456] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.617122]
2024-02-02 05:00:00+08:00 [DEBUG] pos:0.5; cci_value:84.36276052120488; atr_value:331.3689227983266; boll_up:43735.763620387545; boll_down:41183.203046279115; intra_trade_high:43307.3; long_stop:41577.54941934526; intra_trade_low:42873.7; short_stop:0.0; close:43072.9
2024-02-02 05:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2oscihwn3e-00457] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41584.181602]
2024-02-02 05:00:00+08:00 [DEBUG] pos:-1.0; cci_value:75.52648345214723; atr_value:18.0521761632663; boll_up:2332.207478109944; boll_down:2230.0247441122788; intra_trade_high:2305.41; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.586061366684; close:2302.96
2024-02-02 05:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-15rrbby336-00458] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.511316]
2024-02-02 05:00:00+08:00 [DEBUG] pos:-5.0; cci_value:109.0517241379302; atr_value:1.6485630987054802; boll_up:99.72293883529431; boll_down:92.12239449803897; intra_trade_high:98.084; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.61712181076044; close:97.896
2024-02-02 05:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-26b6yuz61p-00459] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.585528]
2024-02-02 06:00:00+08:00 [DEBUG] pos:0.5; cci_value:46.67454043768276; atr_value:330.55045937263105; boll_up:43784.87344641387; boll_down:41228.137664697235; intra_trade_high:43307.3; long_stop:41584.181601448705; intra_trade_low:42945.1; short_stop:0.0; close:42911.1
2024-02-02 06:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1dp1gjze8e-00460] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41588.437611]
2024-02-02 06:00:00+08:00 [DEBUG] pos:-1.0; cci_value:13.4137322263562; atr_value:18.03020954910789; boll_up:2332.5943001239098; boll_down:2233.482366542757; intra_trade_high:2308.61; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.5113160489846; close:2295.9
2024-02-02 06:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2cmnn4kyap-00461] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2330.39709]
2024-02-02 06:00:00+08:00 [DEBUG] pos:-5.0; cci_value:60.48465098284174; atr_value:1.648747606484289; boll_up:99.66439371468697; boll_down:92.51193961864631; intra_trade_high:98.041; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.58552811326851; close:97.063
2024-02-02 06:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1jorz2p7ph-00462] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.586488]
2024-02-02 07:00:00+08:00 [DEBUG] pos:0.5; cci_value:51.864512757000234; atr_value:327.88544752700636; boll_up:43869.66499765422; boll_down:41245.12389123467; intra_trade_high:43307.3; long_stop:41588.43761126232; intra_trade_low:42855.0; short_stop:0.0; close:43064.6
2024-02-02 07:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1ib66xeo49-00463] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41602.295673]
2024-02-02 07:00:00+08:00 [DEBUG] pos:-1.0; cci_value:49.11661107530098; atr_value:17.809226899259734; boll_up:2334.961853479342; boll_down:2235.0425909651026; intra_trade_high:2303.49; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2330.397089655361; close:2302.58
2024-02-02 07:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2ccz62bfrz-00464] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2329.24798]
2024-02-02 07:00:00+08:00 [DEBUG] pos:-5.0; cci_value:75.83040653766052; atr_value:1.640044542423054; boll_up:99.70120880692643; boll_down:92.87890230418468; intra_trade_high:97.966; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.58648755371831; close:97.759
2024-02-02 07:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1ofifnme71-00465] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.541232]
2024-02-02 08:00:00+08:00 [DEBUG] pos:0.5; cci_value:113.89232019051951; atr_value:324.67740581070575; boll_up:43961.46959491765; boll_down:41261.99707174899; intra_trade_high:43307.3; long_stop:41602.29567285957; intra_trade_low:42870.8; short_stop:0.0; close:43153.0
2024-02-02 08:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1icykejfng-00466] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41742.17749]
2024-02-02 08:00:00+08:00 [DEBUG] pos:-1.0; cci_value:160.63767458561995; atr_value:17.69989322245165; boll_up:2339.4079313390616; boll_down:2234.6065131053815; intra_trade_high:2303.36; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2329.2479798761506; close:2309.44
2024-02-02 08:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1qsa9f9kee-00467] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2328.679445]
2024-02-02 08:00:00+08:00 [DEBUG] pos:-5.0; cci_value:167.53476487642106; atr_value:1.642450707108835; boll_up:100.17024887101446; boll_down:92.8676400178744; intra_trade_high:97.919; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.54123162059989; close:98.785
2024-02-02 08:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-1chd34862b-00468] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.553744]
2024-02-02 09:00:00+08:00 [DEBUG] pos:0.5; cci_value:83.55815787243993; atr_value:321.3942673902626; boll_up:44013.545017426644; boll_down:41311.754982573344; intra_trade_high:43430.5; long_stop:41742.17748978433; intra_trade_low:43023.9; short_stop:0.0; close:43098.1
2024-02-02 09:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2c3vvu4doc-00469] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41759.24981]
2024-02-02 09:00:00+08:00 [DEBUG] pos:-1.0; cci_value:126.08058608058406; atr_value:17.469126600424513; boll_up:2341.3992258560324; boll_down:2236.450774143969; intra_trade_high:2319.99; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2328.6794447567486; close:2305.4
2024-02-02 09:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1ee2mddb7x-00470] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2327.479458]
2024-02-02 09:00:00+08:00 [DEBUG] pos:-5.0; cci_value:157.02313975659806; atr_value:1.5840453380701545; boll_up:100.44552728996476; boll_down:93.00458382114638; intra_trade_high:99.524; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.55374367696595; close:98.584
2024-02-02 09:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2hbct3t9k5-00471] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.250036]
2024-02-02 10:00:00+08:00 [DEBUG] pos:0.5; cci_value:35.036668320874874; atr_value:316.9426332696317; boll_up:44045.14834371909; boll_down:41371.61832294756; intra_trade_high:43430.5; long_stop:41759.24980957063; intra_trade_low:43082.9; short_stop:0.0; close:43061.2
2024-02-02 10:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1c9sutvpbx-00472] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41782.398307]
2024-02-02 10:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-1.6743946419360616; atr_value:17.18492618718727; boll_up:2341.7033942787834; boll_down:2239.4477168323288; intra_trade_high:2316.58; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2327.4794583222074; close:2300.95
2024-02-02 10:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1jwqs9m47g-00473] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2326.001616]
2024-02-02 10:00:00+08:00 [DEBUG] pos:-5.0; cci_value:130.89364936669577; atr_value:1.573136687979711; boll_up:100.94706841912762; boll_down:92.96593158087242; intra_trade_high:99.203; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.25003575796481; close:99.313
2024-02-02 10:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2bcn6zj7sk-00474] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.193311]
2024-02-02 11:00:00+08:00 [DEBUG] pos:0.5; cci_value:-12.431693989069108; atr_value:310.7016610401836; boll_up:44028.09376974871; boll_down:41485.79511914015; intra_trade_high:43430.5; long_stop:41782.398306997915; intra_trade_low:43012.5; short_stop:0.0; close:43017.3
2024-02-02 11:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1ms6ok1nxw-00475] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41814.851363]
2024-02-02 11:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-4.216117065682674; atr_value:16.8726885827632; boll_up:2340.0585174448083; boll_down:2244.8148158885256; intra_trade_high:2306.64; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2326.001616173374; close:2300.21
2024-02-02 11:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-21hzm88zhy-00476] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2324.377981]
2024-02-02 11:00:00+08:00 [DEBUG] pos:-5.0; cci_value:119.58382237871895; atr_value:1.569230618191907; boll_up:101.28216139877223; boll_down:92.97428304567224; intra_trade_high:99.4; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.1933107774945; close:98.923
2024-02-02 11:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-25f9brdggc-00477] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.172999]
2024-02-02 12:00:00+08:00 [DEBUG] pos:0.5; cci_value:-97.17197265446892; atr_value:307.8120012235886; boll_up:43993.60618149041; boll_down:41602.282707398466; intra_trade_high:43430.5; long_stop:41814.85136259104; intra_trade_low:43002.3; short_stop:0.0; close:42950.0
2024-02-02 12:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1ppyrvyku1-00478] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41829.877594]
2024-02-02 12:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-63.6829213983491; atr_value:16.82368138318874; boll_up:2336.7743990589115; boll_down:2251.4789342744225; intra_trade_high:2304.12; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2324.3779806303687; close:2297.0
2024-02-02 12:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2mj6hwhtmr-00479] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2324.123143]
2024-02-02 12:00:00+08:00 [DEBUG] pos:-5.0; cci_value:75.11306629621227; atr_value:1.5541804316018804; boll_up:101.60023574092003; boll_down:92.95898648130222; intra_trade_high:100.036; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.17299921459792; close:98.97
2024-02-02 12:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-18v9ergawo-00480] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.094738]
2024-02-02 13:00:00+08:00 [DEBUG] pos:0.5; cci_value:-6.952105975610242; atr_value:307.4936986294818; boll_up:43904.0588665138; boll_down:41805.696689041746; intra_trade_high:43430.5; long_stop:41829.87759363734; intra_trade_low:42922.7; short_stop:0.0; close:43089.0
2024-02-02 13:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1zpw8z7grt-00481] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41831.532767]
2024-02-02 13:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-8.69096734861777; atr_value:16.793299941429023; boll_up:2332.0287138363433; boll_down:2260.4690639414353; intra_trade_high:2303.79; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2324.123143192581; close:2303.31
2024-02-02 13:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2kr5gbydrb-00482] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2323.96516]
2024-02-02 13:00:00+08:00 [DEBUG] pos:-5.0; cci_value:67.98149314902645; atr_value:1.5547323951693928; boll_up:101.75881534687127; boll_down:93.22196243090659; intra_trade_high:99.371; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.09473824432979; close:99.19
2024-02-02 13:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-2265pu89or-00483] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.097609]
2024-02-02 14:00:00+08:00 [DEBUG] pos:0.5; cci_value:86.61912823405889; atr_value:306.30813619123325; boll_up:43793.505447797914; boll_down:42028.716774424305; intra_trade_high:43430.5; long_stop:41831.53276712669; intra_trade_low:42931.8; short_stop:0.0; close:43141.3
2024-02-02 14:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-262bo8jx43-00484] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41837.697692]
2024-02-02 14:00:00+08:00 [DEBUG] pos:-1.0; cci_value:95.93107829691182; atr_value:16.722147090785896; boll_up:2327.836884358303; boll_down:2269.003115641697; intra_trade_high:2305.68; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2323.965159695431; close:2308.61
2024-02-02 14:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2q8juiwtt5-00485] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2323.595165]
2024-02-02 14:00:00+08:00 [DEBUG] pos:-5.0; cci_value:130.41250577668842; atr_value:1.5578577085066043; boll_up:102.07010121775248; boll_down:93.45367656002533; intra_trade_high:99.592; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.09760845488086; close:100.124
2024-02-02 14:00:00+08:00 [INFO] Stop Order for SOLUSDT [number aio-1706958946-18itfyu3cc-00486] (OrderType.STOP & BUY)  created, [quantity 5.0] [price 101.11386]
2024-02-02 15:00:00+08:00 [INFO] (SOLUSDT|BYBIT|NET) - CLOSE BUY order [number aio-1706958946-18itfyu3cc-00486] executed [quantity 5.0] [price $101.113860] [Cost $101.113860] [Commission: $0.27806312] [Available balance: $93763.38292733998] [Position: #-5.0] [Gross P&L: $-8.22478] [Net P&L: $-8.502843] 
2024-02-02 15:00:00+08:00 [INFO] ========> Trade closed, pnl: -8.22478
2024-02-02 15:00:00+08:00 [DEBUG] pos:0.5; cci_value:54.47680181243159; atr_value:304.68205300519736; boll_up:43628.813238306; boll_down:42290.608983916216; intra_trade_high:43430.5; long_stop:41837.69769180559; intra_trade_low:43073.2; short_stop:0.0; close:43078.3
2024-02-02 15:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-16t8qyp1tr-00487] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41846.153324]
2024-02-02 15:00:00+08:00 [DEBUG] pos:-1.0; cci_value:119.8360611094441; atr_value:16.712479204920868; boll_up:2321.8762518590506; boll_down:2279.5137481409506; intra_trade_high:2312.8; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2323.5951648720866; close:2312.11
2024-02-02 15:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-238qvcmsja-00488] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2323.544892]
2024-02-02 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:187.24209943639184; atr_value:1.5639258698198297; boll_up:102.72022762944815; boll_down:93.43288348166297; intra_trade_high:100.394; long_stop:98.68236777283606; intra_trade_low:93.013; short_stop:101.11386008423435; close:101.164
2024-02-02 15:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2dcbxbjsae-00489] (STOP & BUY)  created, [quantity 5.0] [price 102.720228]
2024-02-02 16:00:00+08:00 [DEBUG] pos:0.5; cci_value:-68.98700404510163; atr_value:303.28160632075816; boll_up:43590.565084827336; boll_down:42370.990470728226; intra_trade_high:43430.5; long_stop:41846.15332437297; intra_trade_low:43074.4; short_stop:0.0; close:43004.1
2024-02-02 16:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-14y3v2so5v-00490] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41853.435647]
2024-02-02 16:00:00+08:00 [DEBUG] pos:-1.0; cci_value:57.16243331865862; atr_value:16.575436673941535; boll_up:2323.2431163492147; boll_down:2279.6513280952313; intra_trade_high:2318.86; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2323.5448918655884; close:2309.36
2024-02-02 16:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-23461j5kbe-00491] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2322.832271]
2024-02-02 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:121.64159216997587; atr_value:1.566811345148376; boll_up:103.11155539739515; boll_down:93.45700015816043; intra_trade_high:101.48; long_stop:98.68236777283606; intra_trade_low:100.037; short_stop:101.11386008423435; close:100.412
2024-02-02 16:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1es5cpqjha-00492] (STOP & BUY)  created, [quantity 5.0] [price 103.111555]
2024-02-02 17:00:00+08:00 [DEBUG] pos:0.5; cci_value:-94.34051064832055; atr_value:300.6293710907053; boll_up:43456.355317605194; boll_down:42558.76690461702; intra_trade_high:43430.5; long_stop:41853.43564713206; intra_trade_low:42935.7; short_stop:0.0; close:42960.0
2024-02-02 17:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2po7gahiex-00493] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41867.22727]
2024-02-02 17:00:00+08:00 [DEBUG] pos:-1.0; cci_value:48.35705943625223; atr_value:16.402365517178268; boll_up:2321.7788402111037; boll_down:2283.456715344453; intra_trade_high:2313.54; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2322.832270704496; close:2308.58
2024-02-02 17:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-27tpmwpe8b-00494] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2321.932301]
2024-02-02 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:97.48664067644552; atr_value:1.5676160759940325; boll_up:103.29404679754212; boll_down:93.7988420913468; intra_trade_high:101.445; long_stop:98.68236777283606; intra_trade_low:99.872; short_stop:101.11386008423435; close:100.649
2024-02-02 17:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2nnf6v2yss-00495] (STOP & BUY)  created, [quantity 5.0] [price 103.294047]
2024-02-02 18:00:00+08:00 [DEBUG] pos:0.5; cci_value:-12.663142864309687; atr_value:296.57403174571425; boll_up:43360.267214008185; boll_down:42708.41056376959; intra_trade_high:43430.5; long_stop:41867.22727032833; intra_trade_low:42935.1; short_stop:0.0; close:43108.2
2024-02-02 18:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-18x8k3vgfx-00496] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41888.315035]
2024-02-02 18:00:00+08:00 [DEBUG] pos:-1.0; cci_value:46.22949067393326; atr_value:15.932564557967508; boll_up:2321.3206872955484; boll_down:2286.1315349266774; intra_trade_high:2312.43; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2321.932300689327; close:2310.9
2024-02-02 18:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2isv22srac-00497] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2319.489336]
2024-02-02 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:133.05071681825433; atr_value:1.5681468535029706; boll_up:103.91765278720929; boll_down:93.8051249905685; intra_trade_high:101.262; long_stop:98.68236777283606; intra_trade_low:100.092; short_stop:101.11386008423435; close:101.954
2024-02-02 18:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1jwauwq85w-00498] (STOP & BUY)  created, [quantity 5.0] [price 103.917653]
2024-02-02 19:00:00+08:00 [DEBUG] pos:0.5; cci_value:84.85450445613763; atr_value:290.6451244127484; boll_up:43361.62252976888; boll_down:42732.83302578668; intra_trade_high:43430.5; long_stop:41888.315034922285; intra_trade_low:42922.2; short_stop:0.0; close:43132.0
2024-02-02 19:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1322mypsvh-00499] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41919.145353]
2024-02-02 19:00:00+08:00 [DEBUG] pos:-1.0; cci_value:115.60864222615362; atr_value:15.510779992370411; boll_up:2324.879292069262; boll_down:2284.036263486297; intra_trade_high:2312.14; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2319.4893357014307; close:2317.03
2024-02-02 19:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2gcikfdzht-00500] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2317.296056]
2024-02-02 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:120.99283831385497; atr_value:1.5399882854483777; boll_up:104.48427467331209; boll_down:93.7855031044657; intra_trade_high:102.272; long_stop:98.68236777283606; intra_trade_low:100.521; short_stop:101.11386008423435; close:101.942
2024-02-02 19:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1nndpbr6n6-00501] (STOP & BUY)  created, [quantity 5.0] [price 104.484275]
2024-02-02 20:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - CLOSE BUY order [number aio-1706958946-2gcikfdzht-00500] executed [quantity 1.0] [price $2317.296056] [Cost $463.459211] [Commission: $1.27451283] [Available balance: $93828.39944450998] [Position: #-1.0] [Gross P&L: $-33.177874] [Net P&L: $-34.452387] 
2024-02-02 20:00:00+08:00 [INFO] ========> Trade closed, pnl: -33.177874
2024-02-02 20:00:00+08:00 [DEBUG] pos:0.5; cci_value:72.65686585235743; atr_value:287.98998917427247; boll_up:43320.469335657035; boll_down:42806.39733100962; intra_trade_high:43430.5; long_stop:41919.14535305371; intra_trade_low:43043.5; short_stop:0.0; close:43113.7
2024-02-02 20:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-28t76y8jw2-00502] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41932.952056]
2024-02-02 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:126.96536233596649; atr_value:15.37413680116984; boll_up:2325.3771207358795; boll_down:2285.6117681530113; intra_trade_high:2318.46; long_stop:2308.3497616955083; intra_trade_low:2236.64; short_stop:2317.296055960326; close:2313.4
2024-02-02 20:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-12votcgzct-00503] (STOP & BUY)  created, [quantity 1.0] [price 2325.377121]
2024-02-02 20:00:00+08:00 [DEBUG] pos:0.0; cci_value:92.42966604850393; atr_value:1.526895077937735; boll_up:104.62348583761197; boll_down:94.16551416238805; intra_trade_high:102.346; long_stop:98.68236777283606; intra_trade_low:101.413; short_stop:101.11386008423435; close:101.389
2024-02-02 20:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-12pmysbugh-00504] (STOP & BUY)  created, [quantity 5.0] [price 104.623486]
2024-02-02 21:00:00+08:00 [DEBUG] pos:0.5; cci_value:-215.64460635498023; atr_value:301.57639009084556; boll_up:43407.36708446446; boll_down:42661.48847109111; intra_trade_high:43430.5; long_stop:41932.95205629378; intra_trade_low:43026.6; short_stop:0.0; close:42679.0
2024-02-02 21:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1vzezrwaag-00505] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41862.302772]
2024-02-02 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:-132.46027865508816; atr_value:15.920332199889966; boll_up:2327.644107531281; boll_down:2281.963670246498; intra_trade_high:2324.22; long_stop:2308.3497616955083; intra_trade_low:2312.08; short_stop:2317.296055960326; close:2291.02
2024-02-02 21:00:00+08:00 [INFO] Order for ETHUSDT [number aio-1706958946-2r3h336jo5-00506] (STOP & SELL)  created, [quantity 1.0] [price 2281.96367]
2024-02-02 21:00:00+08:00 [DEBUG] pos:0.0; cci_value:-64.15799870988849; atr_value:1.598145793175898; boll_up:104.54028315791822; boll_down:94.36460573097065; intra_trade_high:102.55; long_stop:98.68236777283606; intra_trade_low:101.28; short_stop:101.11386008423435; close:98.858
2024-02-02 21:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2acgg6cuu7-00507] (STOP & SELL)  created, [quantity 5.0] [price 94.364606]
2024-02-02 22:00:00+08:00 [INFO] (ETHUSDT|BYBIT|NET) - OPEN SELL order [number aio-1706958946-2r3h336jo5-00506] executed [quantity 1.0] [price $2281.963670] [Cost $456.392734] [Commission: $1.25508002] [Available balance: $94283.96800048999] [Position: #0.0] [Gross P&L: $0] [Net P&L: $-1.25508] 
2024-02-02 22:00:00+08:00 [DEBUG] pos:0.5; cci_value:-162.66745907932173; atr_value:300.4697054369524; boll_up:43443.079125596225; boll_down:42603.38754107045; intra_trade_high:43430.5; long_stop:41862.302771527604; intra_trade_low:42520.3; short_stop:0.0; close:42784.4
2024-02-02 22:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2mjhs693pb-00508] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41868.057532]
2024-02-02 22:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-179.48500162795807; atr_value:15.929813129210029; boll_up:2329.0273651054094; boll_down:2279.8748571168144; intra_trade_high:2314.53; long_stop:2308.3497616955083; intra_trade_low:2287.16; short_stop:2317.296055960326; close:2291.36
2024-02-02 22:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1r666ff89j-00509] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2363.565028]
2024-02-02 22:00:00+08:00 [DEBUG] pos:0.0; cci_value:-104.76736143371747; atr_value:1.5754116222652863; boll_up:104.30214477905865; boll_down:94.83596633205245; intra_trade_high:101.705; long_stop:98.68236777283606; intra_trade_low:98.366; short_stop:101.11386008423435; close:99.268
2024-02-02 22:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2n8qerwhnw-00510] (STOP & SELL)  created, [quantity 5.0] [price 94.835966]
2024-02-02 23:00:00+08:00 [DEBUG] pos:0.5; cci_value:29.413085730150097; atr_value:306.2730722625216; boll_up:43478.140032977375; boll_down:42584.971078133734; intra_trade_high:43430.5; long_stop:41868.05753172785; intra_trade_low:42588.0; short_stop:0.0; close:43222.7
2024-02-02 23:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2aamciapoy-00511] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41837.880024]
2024-02-02 23:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-6.895942713097417; atr_value:16.332117540551273; boll_up:2330.4467882138338; boll_down:2279.5809895639454; intra_trade_high:2297.33; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2363.565028271892; close:2313.09
2024-02-02 23:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2ot3s57fk4-00512] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2365.657011]
2024-02-02 23:00:00+08:00 [DEBUG] pos:0.0; cci_value:5.180581651170699; atr_value:1.6023684991012561; boll_up:104.45581911078209; boll_down:95.05840311144011; intra_trade_high:99.65; long_stop:98.68236777283606; intra_trade_low:98.55; short_stop:101.11386008423435; close:101.281
2024-02-02 23:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2kjnorpv8j-00513] (STOP & BUY)  created, [quantity 5.0] [price 104.455819]
2024-02-03 00:00:00+08:00 [DEBUG] pos:0.5; cci_value:126.58268881668099; atr_value:301.8425298345506; boll_up:43499.99391322658; boll_down:42594.89497566231; intra_trade_high:43430.5; long_stop:41837.88002423489; intra_trade_low:42728.3; short_stop:0.0; close:43197.1
2024-02-03 00:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1f37xxi63o-00514] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41907.118845]
2024-02-03 00:00:00+08:00 [DEBUG] pos:-1.0; cci_value:21.1992827787566; atr_value:16.143512796558895; boll_up:2329.8055943046306; boll_down:2281.188850139814; intra_trade_high:2316.92; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2365.6570112108666; close:2304.6
2024-02-03 00:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1uvnq5m6cr-00515] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2364.676267]
2024-02-03 00:00:00+08:00 [DEBUG] pos:0.0; cci_value:-9.690256587074462; atr_value:1.5785587732127582; boll_up:104.0626502574046; boll_down:95.78034974259542; intra_trade_high:101.763; long_stop:98.68236777283606; intra_trade_low:99.15; short_stop:101.11386008423435; close:100.022
2024-02-03 00:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1267j5z2hs-00516] (STOP & SELL)  created, [quantity 5.0] [price 95.78035]
2024-02-03 01:00:00+08:00 [DEBUG] pos:0.5; cci_value:5.058921312066762; atr_value:305.2977242515192; boll_up:43500.7326899752; boll_down:42579.867310024805; intra_trade_high:43476.7; long_stop:41907.118844860335; intra_trade_low:43072.8; short_stop:0.0; close:42936.0
2024-02-03 01:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2qbje8ezrv-00517] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41889.151834]
2024-02-03 01:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-89.91314084190218; atr_value:16.25911319327505; boll_up:2331.39199294235; boll_down:2278.4035626132054; intra_trade_high:2323.0; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2364.676266542106; close:2291.79
2024-02-03 01:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2cgudhdeo3-00518] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2365.277389]
2024-02-03 01:00:00+08:00 [DEBUG] pos:0.0; cci_value:-96.11587400720248; atr_value:1.569853345799172; boll_up:103.79452968708638; boll_down:96.21224809069138; intra_trade_high:102.153; long_stop:98.68236777283606; intra_trade_low:99.822; short_stop:101.11386008423435; close:99.233
2024-02-03 01:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1dghnk1dke-00519] (STOP & SELL)  created, [quantity 5.0] [price 96.212248]
2024-02-03 02:00:00+08:00 [DEBUG] pos:0.5; cci_value:-67.75333576323756; atr_value:303.28353704937905; boll_up:43488.41045957758; boll_down:42564.70065153353; intra_trade_high:43476.7; long_stop:41889.151833892094; intra_trade_low:42865.0; short_stop:0.0; close:42905.6
2024-02-03 02:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1d5jbqcqhb-00520] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41899.625607]
2024-02-03 02:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-106.97037508915734; atr_value:16.14635054645007; boll_up:2331.697175841293; boll_down:2276.2917130475953; intra_trade_high:2310.56; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2365.2773886050304; close:2293.18
2024-02-03 02:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2e9xtkuvjv-00521] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2364.691023]
2024-02-03 02:00:00+08:00 [DEBUG] pos:0.0; cci_value:-115.39121146194601; atr_value:1.5465391146976293; boll_up:103.74890749504094; boll_down:96.29920361607013; intra_trade_high:100.562; long_stop:98.68236777283606; intra_trade_low:99.04; short_stop:101.11386008423435; close:99.157
2024-02-03 02:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1sa8kb97ko-00522] (STOP & SELL)  created, [quantity 5.0] [price 96.299204]
2024-02-03 03:00:00+08:00 [DEBUG] pos:0.5; cci_value:-2.551297952431067; atr_value:300.10969944162355; boll_up:43481.684909996555; boll_down:42565.08175667011; intra_trade_high:43476.7; long_stop:41899.62560734322; intra_trade_low:42742.0; short_stop:0.0; close:43041.0
2024-02-03 03:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-119fkroty5-00523] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41916.129563]
2024-02-03 03:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-43.421298895748734; atr_value:15.910235849319902; boll_up:2331.5403735365617; boll_down:2275.8474042412163; intra_trade_high:2295.0; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2364.6910228415404; close:2299.99
2024-02-03 03:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2bz9ujou1k-00524] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2363.463227]
2024-02-03 03:00:00+08:00 [DEBUG] pos:0.0; cci_value:-74.54356278407506; atr_value:1.5241358066265798; boll_up:103.64102314229928; boll_down:96.50086574658957; intra_trade_high:99.291; long_stop:98.68236777283606; intra_trade_low:98.218; short_stop:101.11386008423435; close:99.428
2024-02-03 03:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-27kb5wsown-00525] (STOP & SELL)  created, [quantity 5.0] [price 96.500866]
2024-02-03 04:00:00+08:00 [DEBUG] pos:0.5; cci_value:-19.431332640457263; atr_value:293.42052252375566; boll_up:43478.67515254391; boll_down:42553.75818078944; intra_trade_high:43476.7; long_stop:41916.12956290355; intra_trade_low:42890.3; short_stop:0.0; close:42932.2
2024-02-03 04:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2jhht9rs2b-00526] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 41950.913283]
2024-02-03 04:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-35.016543903696416; atr_value:15.376256181512794; boll_up:2331.7850427595376; boll_down:2275.1094016849083; intra_trade_high:2300.89; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2363.4632264164634; close:2296.51
2024-02-03 04:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1mtddf7ymp-00527] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2360.686532]
2024-02-03 04:00:00+08:00 [DEBUG] pos:0.0; cci_value:-58.4228734515311; atr_value:1.4913535617689118; boll_up:103.66534971803326; boll_down:96.44965028196667; intra_trade_high:99.486; long_stop:98.68236777283606; intra_trade_low:98.611; short_stop:101.11386008423435; close:99.071
2024-02-03 04:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-153q33twmb-00528] (STOP & SELL)  created, [quantity 5.0] [price 96.44965]
2024-02-03 05:00:00+08:00 [DEBUG] pos:0.5; cci_value:-0.21271308583500514; atr_value:278.3078987103859; boll_up:43477.43452305667; boll_down:42549.95436583222; intra_trade_high:43476.7; long_stop:41950.91328287647; intra_trade_low:42870.5; short_stop:0.0; close:42971.9
2024-02-03 05:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-22ehxr3dj3-00529] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42029.498927]
2024-02-03 05:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-30.633469042599977; atr_value:14.658742251708652; boll_up:2332.159277596698; boll_down:2274.1573890699688; intra_trade_high:2302.35; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2360.6865321438663; close:2295.01
2024-02-03 05:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-15pgbt1kpp-00530] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2356.95546]
2024-02-03 05:00:00+08:00 [DEBUG] pos:0.0; cci_value:-46.099611317002; atr_value:1.4285812998142737; boll_up:103.62109960899946; boll_down:96.53634483544494; intra_trade_high:99.816; long_stop:98.68236777283606; intra_trade_low:98.851; short_stop:101.11386008423435; close:99.305
2024-02-03 05:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1b6y9vuwm8-00531] (STOP & SELL)  created, [quantity 5.0] [price 96.536345]
2024-02-03 06:00:00+08:00 [DEBUG] pos:0.5; cci_value:81.5303092156368; atr_value:274.3758655652093; boll_up:43504.017704666156; boll_down:42548.804517556084; intra_trade_high:43476.7; long_stop:42029.498926705994; intra_trade_low:42927.4; short_stop:0.0; close:43178.9
2024-02-03 06:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1w39utr7gc-00532] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42049.945499]
2024-02-03 06:00:00+08:00 [DEBUG] pos:-1.0; cci_value:71.86570255715016; atr_value:14.407271352074552; boll_up:2332.479131909501; boll_down:2275.017534757166; intra_trade_high:2300.78; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2356.955459708885; close:2307.62
2024-02-03 06:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2rib2ym5kc-00533] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2355.647811]
2024-02-03 06:00:00+08:00 [DEBUG] pos:0.0; cci_value:44.2314847585622; atr_value:1.3967830429813366; boll_up:103.57696100042462; boll_down:96.72803899957533; intra_trade_high:99.637; long_stop:98.68236777283606; intra_trade_low:98.977; short_stop:101.11386008423435; close:100.298
2024-02-03 06:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2ez7x9p8di-00534] (STOP & BUY)  created, [quantity 5.0] [price 103.576961]
2024-02-03 07:00:00+08:00 [DEBUG] pos:0.5; cci_value:91.84893184130563; atr_value:268.39224924531976; boll_up:43521.3470418449; boll_down:42541.37518037732; intra_trade_high:43476.7; long_stop:42049.94549906091; intra_trade_low:42971.9; short_stop:0.0; close:43178.1
2024-02-03 07:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2564qay1sx-00535] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42081.060304]
2024-02-03 07:00:00+08:00 [DEBUG] pos:-1.0; cci_value:86.13267494400797; atr_value:14.017222334559428; boll_up:2332.9039208539284; boll_down:2275.0971902571832; intra_trade_high:2308.94; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2355.6478110307876; close:2307.85
2024-02-03 07:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2gshf1q616-00536] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2353.619556]
2024-02-03 07:00:00+08:00 [DEBUG] pos:0.0; cci_value:90.89726434730929; atr_value:1.3694796048361344; boll_up:103.56878065107206; boll_down:96.88633046003896; intra_trade_high:100.427; long_stop:98.68236777283606; intra_trade_low:99.166; short_stop:101.11386008423435; close:100.541
2024-02-03 07:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2dptwm4jgr-00537] (STOP & BUY)  created, [quantity 5.0] [price 103.568781]
2024-02-03 08:00:00+08:00 [DEBUG] pos:0.5; cci_value:114.62233973542453; atr_value:270.17401913574497; boll_up:43537.04421304357; boll_down:42533.000231400874; intra_trade_high:43476.7; long_stop:42081.060303924336; intra_trade_low:43102.5; short_stop:0.0; close:43207.2
2024-02-03 08:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-29oaewiv5z-00538] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42071.795101]
2024-02-03 08:00:00+08:00 [DEBUG] pos:-1.0; cci_value:122.73530999311436; atr_value:14.14964646740859; boll_up:2333.7606617233414; boll_down:2274.713782721102; intra_trade_high:2308.71; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2353.619556139709; close:2312.87
2024-02-03 08:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1x57tixpf8-00539] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2354.308162]
2024-02-03 08:00:00+08:00 [DEBUG] pos:0.0; cci_value:57.84092369257006; atr_value:1.368288487507136; boll_up:103.56594007232282; boll_down:96.87683770545486; intra_trade_high:100.895; long_stop:98.68236777283606; intra_trade_low:100.196; short_stop:101.11386008423435; close:100.013
2024-02-03 08:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2g567x7scq-00540] (STOP & BUY)  created, [quantity 5.0] [price 103.56594]
2024-02-03 09:00:00+08:00 [DEBUG] pos:0.5; cci_value:78.92617449664668; atr_value:261.73913449052947; boll_up:43557.90841755537; boll_down:42525.05824911129; intra_trade_high:43476.7; long_stop:42071.79510049412; intra_trade_low:43130.0; short_stop:0.0; close:43194.6
2024-02-03 09:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-258bd1cyov-00541] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42115.656501]
2024-02-03 09:00:00+08:00 [DEBUG] pos:-1.0; cci_value:166.4052692983694; atr_value:14.152440460063103; boll_up:2338.059542876154; boll_down:2271.821568234957; intra_trade_high:2320.0; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2354.308161630525; close:2324.77
2024-02-03 09:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1spqgkncpc-00542] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2354.32269]
2024-02-03 09:00:00+08:00 [DEBUG] pos:0.0; cci_value:25.256402189644643; atr_value:1.3540180756201738; boll_up:103.41214032516771; boll_down:96.90074856372115; intra_trade_high:101.211; long_stop:98.68236777283606; intra_trade_low:99.904; short_stop:101.11386008423435; close:99.995
2024-02-03 09:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1ue9anf2ha-00543] (STOP & BUY)  created, [quantity 5.0] [price 103.41214]
2024-02-03 10:00:00+08:00 [DEBUG] pos:0.5; cci_value:58.754827163986036; atr_value:249.91949417783192; boll_up:43574.493887336146; boll_down:42526.33944599717; intra_trade_high:43476.7; long_stop:42115.656500649246; intra_trade_low:43165.0; short_stop:0.0; close:43164.9
2024-02-03 10:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-16pp66wj62-00544] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42177.11863]
2024-02-03 10:00:00+08:00 [DEBUG] pos:-1.0; cci_value:126.24535315985166; atr_value:13.407596988167658; boll_up:2341.064050832524; boll_down:2270.1726158341426; intra_trade_high:2329.0; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2354.3226903923282; close:2321.56
2024-02-03 10:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2h8kiatdcu-00545] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2350.449504]
2024-02-03 10:00:00+08:00 [DEBUG] pos:0.0; cci_value:-20.19654490518926; atr_value:1.302413408967639; boll_up:103.39398516867072; boll_down:96.81557038688481; intra_trade_high:100.533; long_stop:98.68236777283606; intra_trade_low:99.4; short_stop:101.11386008423435; close:99.482
2024-02-03 10:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1ynvd8yh61-00546] (STOP & SELL)  created, [quantity 5.0] [price 96.81557]
2024-02-03 11:00:00+08:00 [DEBUG] pos:0.5; cci_value:44.95480240057692; atr_value:244.63181551499392; boll_up:43585.05298297519; boll_down:42537.00257258036; intra_trade_high:43476.7; long_stop:42177.11863027527; intra_trade_low:43129.9; short_stop:0.0; close:43151.0
2024-02-03 11:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1odf8bed37-00547] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42204.614559]
2024-02-03 11:00:00+08:00 [DEBUG] pos:-1.0; cci_value:96.06581022002538; atr_value:13.078835363900714; boll_up:2343.4399597635816; boll_down:2269.0855957919734; intra_trade_high:2326.0; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2350.449504338472; close:2320.18
2024-02-03 11:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1nhy6tung6-00548] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2348.739944]
2024-02-03 11:00:00+08:00 [DEBUG] pos:0.0; cci_value:-37.37102228388094; atr_value:1.2849864368555146; boll_up:103.35637579830374; boll_down:96.68851309058509; intra_trade_high:100.1; long_stop:98.68236777283606; intra_trade_low:99.0; short_stop:101.11386008423435; close:99.167
2024-02-03 11:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1p7mfpw113-00549] (STOP & SELL)  created, [quantity 5.0] [price 96.688513]
2024-02-03 12:00:00+08:00 [DEBUG] pos:0.5; cci_value:40.76982741904053; atr_value:239.36867588006908; boll_up:43594.569968572374; boll_down:42534.55225364984; intra_trade_high:43476.7; long_stop:42204.61455932203; intra_trade_low:43120.3; short_stop:0.0; close:43171.8
2024-02-03 12:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1o86fhi6gw-00550] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42231.982886]
2024-02-03 12:00:00+08:00 [DEBUG] pos:-1.0; cci_value:75.44004400439871; atr_value:12.9038678436977; boll_up:2345.3244303600363; boll_down:2268.2122363066296; intra_trade_high:2325.0; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2348.739943892284; close:2320.0
2024-02-03 12:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-17ijgek9gu-00551] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2347.830113]
2024-02-03 12:00:00+08:00 [DEBUG] pos:0.0; cci_value:-36.15639368508883; atr_value:1.2650189115860244; boll_up:102.83110230857714; boll_down:96.94623102475616; intra_trade_high:99.839; long_stop:98.68236777283606; intra_trade_low:99.133; short_stop:101.11386008423435; close:99.546
2024-02-03 12:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-19bg2hdcrk-00552] (STOP & SELL)  created, [quantity 5.0] [price 96.946231]
2024-02-03 13:00:00+08:00 [DEBUG] pos:0.5; cci_value:8.576397122743359; atr_value:235.22094302921025; boll_up:43597.525063357396; boll_down:42533.80826997595; intra_trade_high:43476.7; long_stop:42231.98288542364; intra_trade_low:43131.4; short_stop:0.0; close:43151.9
2024-02-03 13:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-13einw7tnb-00553] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42253.551096]
2024-02-03 13:00:00+08:00 [DEBUG] pos:-1.0; cci_value:70.54986428508796; atr_value:12.57163819888799; boll_up:2346.9325214788378; boll_down:2267.2663674100504; intra_trade_high:2324.12; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2347.8301127872282; close:2322.99
2024-02-03 13:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-196p5ugyej-00554] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2346.102519]
2024-02-03 13:00:00+08:00 [DEBUG] pos:0.0; cci_value:7.530533214177826; atr_value:1.2476549029398738; boll_up:102.19752199392282; boll_down:97.36736689496603; intra_trade_high:99.765; long_stop:98.68236777283606; intra_trade_low:99.104; short_stop:101.11386008423435; close:100.03
2024-02-03 13:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2nh4midwmo-00555] (STOP & BUY)  created, [quantity 5.0] [price 102.197522]
2024-02-03 14:00:00+08:00 [DEBUG] pos:0.5; cci_value:-65.93985571857543; atr_value:231.79339976654566; boll_up:43593.93427863545; boll_down:42533.02127692014; intra_trade_high:43476.7; long_stop:42253.551096248106; intra_trade_low:43076.9; short_stop:0.0; close:43074.3
2024-02-03 14:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-186e2iszir-00556] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42271.374321]
2024-02-03 14:00:00+08:00 [DEBUG] pos:-1.0; cci_value:38.819098336404515; atr_value:12.502189132563354; boll_up:2348.203858316286; boll_down:2266.690586128159; intra_trade_high:2324.23; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2346.1025186342176; close:2319.66
2024-02-03 14:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-12ip3qi7rs-00557] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2345.741384]
2024-02-03 14:00:00+08:00 [DEBUG] pos:0.0; cci_value:-17.13573791920247; atr_value:1.2290166463251149; boll_up:101.7026085977984; boll_down:97.65928029109038; intra_trade_high:100.073; long_stop:98.68236777283606; intra_trade_low:99.301; short_stop:101.11386008423435; close:99.562
2024-02-03 14:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1a2kp936vj-00558] (STOP & SELL)  created, [quantity 5.0] [price 97.65928]
2024-02-03 15:00:00+08:00 [DEBUG] pos:0.5; cci_value:-160.92673076078412; atr_value:229.61562385200168; boll_up:43510.357897587055; boll_down:42656.41988019074; intra_trade_high:43476.7; long_stop:42271.37432121396; intra_trade_low:43062.0; short_stop:0.0; close:43037.4
2024-02-03 15:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1bmcvqmjbp-00559] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42282.698756]
2024-02-03 15:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-18.908474308923484; atr_value:12.467158167864934; boll_up:2347.249574353175; boll_down:2270.065981202381; intra_trade_high:2323.0; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2345.7413834893296; close:2312.81
2024-02-03 15:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2p3wyhpzry-00560] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2345.559223]
2024-02-03 15:00:00+08:00 [DEBUG] pos:0.0; cci_value:-120.56625514403521; atr_value:1.2378202306247474; boll_up:101.66540074922867; boll_down:97.71982147299352; intra_trade_high:100.055; long_stop:98.68236777283606; intra_trade_low:99.552; short_stop:101.11386008423435; close:99.068
2024-02-03 15:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1hx5z9kmg8-00561] (STOP & SELL)  created, [quantity 5.0] [price 97.719822]
2024-02-03 16:00:00+08:00 [DEBUG] pos:0.5; cci_value:-155.25832001786765; atr_value:226.1338742624001; boll_up:43452.093120651334; boll_down:42739.262434904245; intra_trade_high:43476.7; long_stop:42282.69875596959; intra_trade_low:43017.5; short_stop:0.0; close:43005.6
2024-02-03 16:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-1kto5tmk7z-00562] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42300.803854]
2024-02-03 16:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-106.48831405801066; atr_value:12.476000138273388; boll_up:2345.4488951069197; boll_down:2273.6299937819695; intra_trade_high:2320.2; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2345.5592224728975; close:2307.23
2024-02-03 16:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1s6k26ifxk-00563] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2345.605201]
2024-02-03 16:00:00+08:00 [DEBUG] pos:0.0; cci_value:-149.13564190104682; atr_value:1.2293943822733835; boll_up:101.79741702661285; boll_down:97.50769408449817; intra_trade_high:99.87; long_stop:98.68236777283606; intra_trade_low:98.615; short_stop:101.11386008423435; close:98.547
2024-02-03 16:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-2hkjmpypwx-00564] (STOP & SELL)  created, [quantity 5.0] [price 97.507694]
2024-02-03 17:00:00+08:00 [DEBUG] pos:0.5; cci_value:-80.68381829756828; atr_value:224.83702167290213; boll_up:43428.34006512996; boll_down:42746.72660153672; intra_trade_high:43476.7; long_stop:42300.80385383552; intra_trade_low:42985.6; short_stop:0.0; close:43076.1
2024-02-03 17:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2ic51qchjd-00565] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42307.547487]
2024-02-03 17:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-88.93002478352757; atr_value:12.433692938574895; boll_up:2345.54158381605; boll_down:2273.6195272950604; intra_trade_high:2314.94; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2345.6052007190215; close:2313.83
2024-02-03 17:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1m9pkrx658-00566] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2345.385203]
2024-02-03 17:00:00+08:00 [DEBUG] pos:0.0; cci_value:-91.60305343511709; atr_value:1.2261571267910998; boll_up:101.23130415073526; boll_down:97.84425140482027; intra_trade_high:99.36; long_stop:98.68236777283606; intra_trade_low:98.363; short_stop:101.11386008423435; close:99.215
2024-02-03 17:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-19dp65ixnf-00567] (STOP & SELL)  created, [quantity 5.0] [price 97.844252]
2024-02-03 18:00:00+08:00 [DEBUG] pos:0.5; cci_value:-64.54635695850929; atr_value:222.46409461955383; boll_up:43408.869831519565; boll_down:42750.25239070266; intra_trade_high:43476.7; long_stop:42307.54748730091; intra_trade_low:42996.5; short_stop:0.0; close:43053.6
2024-02-03 18:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2dttdaegwg-00568] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42319.886708]
2024-02-03 18:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-84.25499691117813; atr_value:12.225357609524764; boll_up:2345.8302722573944; boll_down:2274.237505520384; intra_trade_high:2314.9; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2345.3852032805894; close:2312.76
2024-02-03 18:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-2gvwxzhw4r-00569] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2344.30186]
2024-02-03 18:00:00+08:00 [DEBUG] pos:0.0; cci_value:-82.31479523507437; atr_value:1.2026104327120117; boll_up:101.17650777350524; boll_down:97.7832700042725; intra_trade_high:99.369; long_stop:98.68236777283606; intra_trade_low:98.508; short_stop:101.11386008423435; close:98.98
2024-02-03 18:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-1y44x8z2f4-00570] (STOP & SELL)  created, [quantity 5.0] [price 97.78327]
2024-02-03 19:00:00+08:00 [DEBUG] pos:0.5; cci_value:-72.01267228074336; atr_value:216.6118500338441; boll_up:43394.91052566285; boll_down:42775.733918781596; intra_trade_high:43476.7; long_stop:42319.886707978316; intra_trade_low:43023.6; short_stop:0.0; close:43039.7
2024-02-03 19:00:00+08:00 [INFO] Stop Order for BTCUSDT [number aio-1706958946-2gdd2zu3w6-00571] (OrderType.STOP & SELL)  created, [quantity 0.5] [price 42350.31838]
2024-02-03 19:00:00+08:00 [DEBUG] pos:-1.0; cci_value:-66.8419771122532; atr_value:11.896991490256815; boll_up:2343.6254861569923; boll_down:2278.655624954119; intra_trade_high:2313.83; long_stop:2308.3497616955083; intra_trade_low:2280.73; short_stop:2344.301859569529; close:2311.71
2024-02-03 19:00:00+08:00 [INFO] Stop Order for ETHUSDT [number aio-1706958946-1znkqg8jrp-00572] (OrderType.STOP & BUY)  created, [quantity 1.0] [price 2342.594356]
2024-02-03 19:00:00+08:00 [DEBUG] pos:0.0; cci_value:-96.54803890135648; atr_value:1.1748200773898452; boll_up:101.23479476674801; boll_down:97.67109412214084; intra_trade_high:99.271; long_stop:98.68236777283606; intra_trade_low:98.735; short_stop:101.11386008423435; close:98.748
2024-02-03 19:00:00+08:00 [INFO] Order for SOLUSDT [number aio-1706958946-26xzerenc6-00573] (STOP & SELL)  created, [quantity 5.0] [price 97.671094]
In [8]:
stats = mytest.ctx.statistic.stats(interval=interval)
stats['algorithm'] = ['Bollinger Band', 'CCI', 'ATR']
stats
Out[8]:
start                                                   2024-01-24 20:00:00+08:00
end                                                     2024-02-03 19:00:00+08:00
interval                                                                       1h
duration                                                          9 days 23:00:00
trading_instruments                                   [ETHUSDT, SOLUSDT, BTCUSDT]
base_currency                                                                USDT
benchmark                                                                 BTCUSDT
beginning_balance                                                          100000
ending_balance                                                       98600.973060
available_balance                                                    98577.242650
holding_values                                                          23.730400
capital                                                                    100000
additional_capitals                                                            {}
net_investment                                                        4937.361580
total_net_profit                                                     -1399.026940
total_commission                                                        94.802580
total_turnover                                                       34473.666360
profit_factor                                                            0.671324
return_on_capital                                                       -0.013990
return_on_initial_capital                                               -0.013990
return_on_investment                                                    -0.283355
annualized_return                                                       -0.403331
total_return                                                            -0.013990
max_return                                                               0.003448
min_return                                                              -0.015484
past_24hr_pnl                                                          -78.692000
past_24hr_apr                                                           -0.290905
past_24hr_roi                                                           -0.000797
past_7d_roi                                                             -0.013990
past_14d_roi                                                            -0.013990
past_30d_roi                                                            -0.013990
past_90d_roi                                                            -0.013990
past_180d_roi                                                           -0.013990
past_1yr_roi                                                            -0.013990
trading_period                                   0 years 0 months 9 days 23 hours
avg_holding_period(hrs)                                                 26.800000
pct_time_in_market                                                       0.595833
number_trades                                                                  22
number_closed_trades                                                           10
number_winning_trades                                                           0
number_losing_trades                                                           10
number_winning_long_trades                                                      0
number_losing_long_trades                                                       7
number_winning_short_trades                                                     0
number_losing_short_trades                                                      3
number_liquidation_trades                                                       0
avg_daily_trades                                                         3.670000
avg_weekly_trades                                                       11.000000
avg_monthly_trades                                                      11.000000
win_ratio                                                                0.000000
loss_ratio                                                               1.000000
win_ratio_long                                                           0.000000
loss_ratio_long                                                          1.000000
win_ratio_short                                                          0.000000
loss_ratio_short                                                         0.428572
gross_trades_profit                                                      0.000000
gross_trades_loss                                                    -1327.954800
gross_winning_trades_amount                                              0.000000
gross_losing_trades_amount                                           14751.103100
avg_winning_trades_pnl                                                   0.000000
avg_losing_trades_pnl                                                 -132.795480
avg_winning_trades_amount                                                0.000000
avg_losing_trades_amount                                                 0.000000
largest_profit_winning_trade                                                 None
largest_loss_losing_trade                                             -842.276000
avg_amount_per_trade                                                  1566.984800
avg_amount_per_open_trade                                             1643.546900
avg_amount_per_closed_trade                                           1475.110300
avg_amount_per_long_trade                                             2132.480800
avg_amount_per_short_trade                                             355.207900
avg_pnl_per_trade($)                                                  -132.795500
avg_pnl_per_trade                                                       -0.001300
max_consecutive_win_trades                                                      0
max_consecutive_loss_trades                                                    10
payoff_ratio                                                             0.000000
expected_value                                                        -132.790000
standardized_expected_value                                         -13279.550000
win_days                                                                        3
loss_days                                                                       4
max_win_in_day                                                         185.082300
max_loss_in_day                                                        -14.575000
max_consecutive_win_days                                                        3
max_consecutive_loss_days                                                       4
avg_daily_pnl($)                                                      -139.902700
avg_daily_pnl                                                           -0.001403
avg_weekly_pnl($)                                                    -1475.987200
avg_weekly_pnl                                                          -0.014748
avg_monthly_pnl($)                                                    -843.818500
avg_monthly_pnl                                                         -0.008485
avg_quarterly_pnl($)                                                         None
avg_quarterly_pnl                                                            None
avg_annualy_pnl($)                                                           None
avg_annualy_pnl                                                              None
var                                                                    101.850600
risk_score                                                                      1
avg_daily_risk_score                                                     0.000000
avg_risk_score_past_7days                                                0.000000
monthly_avg_risk_score          {'2024-01-31 23:00:00': 0.0, '2024-02-03 19:00...
frequently_traded               [{'symbol': 'ETHUSDT', 'asset_type': 'PERPETUA...
sharpe_ratio                                                            -9.360833
sortino_ratio                                                          -11.971556
annualized_volatility                                                    0.054742
omega_ratio                                                              0.672357
downside_risk                                                            0.042715
information_ratio                                                       -0.095151
beta                                                                     0.087433
alpha                                                                   -0.527382
calmar_ratio                                                           -21.377590
tail_ratio                                                               0.742233
common_sense_ratio                                                       0.498279
skew                                                                    -0.570425
kurtosis                                                                 9.086065
stability_of_timeseries                                                  0.671565
max_drawdown                                                             0.018867
max_drawdown_period             (2024-01-28 12:00:00+08:00, 2024-02-02 21:00:0...
max_drawdown_duration                                             5 days 09:00:00
max_runup                                                                0.002432
max_runup_period                (2024-02-02 21:00:00+08:00, 2024-02-02 23:00:0...
max_runup_duration                                                0 days 02:00:00
sqn                                                                     -1.646127
rolling_sharpe                  {'2024-01-25 00:00:00': None, '2024-01-26 00:0...
monthly_changes                 {'2024-01-31 23:00:00': 0.0, '2024-02-03 19:00...
daily_changes                   {'2024-01-25 00:00:00': 0.0, '2024-01-26 00:00...
drawdown_series                 {'2024-01-24 20:00:00': 0.0, '2024-01-24 21:00...
positions                       [PositionData(symbol='BTCUSDT', code='BTCUSDT'...
trades                          [TradeData(order_id='aio-1706958945-1zgt2qk255...
pnl                             [{'available_balance': 100000.0, 'holding_valu...
algorithm                                              [Bollinger Band, CCI, ATR]
Name: value, dtype: object
In [11]:
# mytest.ctx.statistic.plot()
In [10]:
mytest.ctx.statistic.contest_output(path=base, interval=interval, prefix=f'bt_',is_plot=True, open_browser=False)
The output files are stored in /Users/charon/Desktop/iTrade/doc_generator/sample/ipython.
Traceback (most recent call last):
  File "/Users/charon/Desktop/iTrade/itrade/utils/plotter.py", line 1393, in plot_interactive
    self.doc.add_root(fig)
  File "/Users/charon/.local/lib/python3.11/site-packages/bokeh/document/document.py", line 321, in add_root
    with self.models.freeze():
  File "/Users/charon/.pyenv/versions/3.11.3/lib/python3.11/contextlib.py", line 144, in __exit__
    next(self.gen)
  File "/Users/charon/.local/lib/python3.11/site-packages/bokeh/document/models.py", line 135, in freeze
    self._pop_freeze()
  File "/Users/charon/.local/lib/python3.11/site-packages/bokeh/document/models.py", line 288, in _pop_freeze
    self.recompute()
  File "/Users/charon/.local/lib/python3.11/site-packages/bokeh/document/models.py", line 235, in recompute
    ma._attach_document(document)
  File "/Users/charon/.local/lib/python3.11/site-packages/bokeh/model/model.py", line 575, in _attach_document
    raise RuntimeError(f"Models must be owned by only a single document, {self!r} is already in a doc")
RuntimeError: Models must be owned by only a single document, Scatter(id='p1098', ...) is already in a doc

Optimization

In [13]:
mytest.do_print = False

ostats = mytest.optimize(
    boll_window=[13,18,22],
    boll_dev=[3,3.4,3.8],
    # cci_window=[8,10,12],
    # atr_window=[28,30,32],
    sl_multiplier=[4.8,5.2,5.6],
    maximize='total_net_profit',
    constraint=None,
    return_heatmap=True
)
ostats
Parameters Combos(27):
 ({'boll_window': 13, 'boll_dev': 3, 'sl_multiplier': 4.8}, {'boll_window': 13, 'boll_dev': 3, 'sl_multiplier': 5.2}, {'boll_window': 13, 'boll_dev': 3, 'sl_multiplier': 5.6}, {'boll_window': 13, 'boll_dev': 3.4, 'sl_multiplier': 4.8}, {'boll_window': 13, 'boll_dev': 3.4, 'sl_multiplier': 5.2}, {'boll_window': 13, 'boll_dev': 3.4, 'sl_multiplier': 5.6}, {'boll_window': 13, 'boll_dev': 3.8, 'sl_multiplier': 4.8}, {'boll_window': 13, 'boll_dev': 3.8, 'sl_multiplier': 5.2}, {'boll_window': 13, 'boll_dev': 3.8, 'sl_multiplier': 5.6}, {'boll_window': 18, 'boll_dev': 3, 'sl_multiplier': 4.8}, {'boll_window': 18, 'boll_dev': 3, 'sl_multiplier': 5.2}, {'boll_window': 18, 'boll_dev': 3, 'sl_multiplier': 5.6}, {'boll_window': 18, 'boll_dev': 3.4, 'sl_multiplier': 4.8}, {'boll_window': 18, 'boll_dev': 3.4, 'sl_multiplier': 5.2}, {'boll_window': 18, 'boll_dev': 3.4, 'sl_multiplier': 5.6}, {'boll_window': 18, 'boll_dev': 3.8, 'sl_multiplier': 4.8}, {'boll_window': 18, 'boll_dev': 3.8, 'sl_multiplier': 5.2}, {'boll_window': 18, 'boll_dev': 3.8, 'sl_multiplier': 5.6}, {'boll_window': 22, 'boll_dev': 3, 'sl_multiplier': 4.8}, {'boll_window': 22, 'boll_dev': 3, 'sl_multiplier': 5.2}, {'boll_window': 22, 'boll_dev': 3, 'sl_multiplier': 5.6}, {'boll_window': 22, 'boll_dev': 3.4, 'sl_multiplier': 4.8}, {'boll_window': 22, 'boll_dev': 3.4, 'sl_multiplier': 5.2}, {'boll_window': 22, 'boll_dev': 3.4, 'sl_multiplier': 5.6}, {'boll_window': 22, 'boll_dev': 3.8, 'sl_multiplier': 4.8}, {'boll_window': 22, 'boll_dev': 3.8, 'sl_multiplier': 5.2}, {'boll_window': 22, 'boll_dev': 3.8, 'sl_multiplier': 5.6})
Empty Heatmap:
 boll_window  boll_dev  sl_multiplier
13           3.000000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
             3.400000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
             3.800000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
18           3.000000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
             3.400000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
             3.800000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
22           3.000000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
             3.400000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
             3.800000  4.800000        NaN
                       5.200000        NaN
                       5.600000        NaN
Name: total_net_profit, dtype: float64
[Warning] For multiprocessing support in `BackTest.optimize()`, set multiprocessing start method to 'fork'.
  0%|          | 0/6 [00:00<?, ?it/s]
Out[13]:
((22, 3.0, 4.8),
                                     total_net_profit
 boll_window boll_dev sl_multiplier                  
 13          3.000000 4.800000           -2401.256830
                      5.200000           -2747.861500
                      5.600000           -2232.418000
             3.400000 4.800000           -1497.959360
                      5.200000           -1711.369380
                      5.600000           -1833.722680
             3.800000 4.800000           -1479.053450
                      5.200000           -1670.511330
                      5.600000           -1891.835130
 18          3.000000 4.800000            -744.043130
                      5.200000            -990.243080
                      5.600000            -486.153490
             3.400000 4.800000           -1159.224050
                      5.200000           -1399.026940
                      5.600000            -742.947500
             3.800000 4.800000            -643.844030
                      5.200000            -802.215470
                      5.600000           -1024.490940
 22          3.000000 4.800000             -96.266680
                      5.200000            -263.769030
                      5.600000            -511.189740
             3.400000 4.800000            -460.730260
                      5.200000            -626.543540
                      5.600000            -854.036510
             3.800000 4.800000            -467.921540
                      5.200000            -631.326960
                      5.600000            -856.483240)
In [ ]: