bitunix-automated-crypto-trading 3.0.1__py3-none-any.whl → 3.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bitunix_automated_crypto_trading/BitunixApi.py +1 -1
- bitunix_automated_crypto_trading/BitunixSignal.py +12 -9
- bitunix_automated_crypto_trading/TickerManager.py +62 -34
- bitunix_automated_crypto_trading/config.py +3 -2
- {bitunix_automated_crypto_trading-3.0.1.dist-info → bitunix_automated_crypto_trading-3.0.2.dist-info}/METADATA +1 -1
- {bitunix_automated_crypto_trading-3.0.1.dist-info → bitunix_automated_crypto_trading-3.0.2.dist-info}/RECORD +9 -9
- {bitunix_automated_crypto_trading-3.0.1.dist-info → bitunix_automated_crypto_trading-3.0.2.dist-info}/WHEEL +0 -0
- {bitunix_automated_crypto_trading-3.0.1.dist-info → bitunix_automated_crypto_trading-3.0.2.dist-info}/entry_points.txt +0 -0
- {bitunix_automated_crypto_trading-3.0.1.dist-info → bitunix_automated_crypto_trading-3.0.2.dist-info}/top_level.txt +0 -0
@@ -91,7 +91,7 @@ class BitunixApi:
|
|
91
91
|
"nonce": nonce,
|
92
92
|
}
|
93
93
|
|
94
|
-
query_string = urlencode(sorted(params.items())).replace('=','')
|
94
|
+
query_string = urlencode(sorted(params.items())).replace('=','').replace('&','') if params else ""
|
95
95
|
signature = await self.sign_request(nonce, timestamp, query_params=query_string)
|
96
96
|
headers["sign"] = signature
|
97
97
|
|
@@ -560,12 +560,12 @@ class BitunixSignal:
|
|
560
560
|
self.signaldf_filtered = self.tickerObjects.signaldf_filtered
|
561
561
|
|
562
562
|
if not self.positiondf.empty and not self.signaldf_full.empty:
|
563
|
-
columns=['symbol', f"{period}_trend", f"{period}_cb", f"{period}_barcolor", f"{period}
|
563
|
+
columns=['symbol', f"{period}_trend", f"{period}_cb", f"{period}_barcolor", f"{period}_ema_open", f"{period}_ema_close", f"{period}_macd", f"{period}_bbm", f"{period}_rsi", f"{period}_candle_trend", f"{period}_open", f"{period}_close", f"{period}_high", f"{period}_low"]
|
564
564
|
columns2=["qty", "side", "unrealizedPNL", "realizedPNL", "ctime", "avgOpenPrice", "bid", "bidcolor", "last", "lastcolor", "ask", "askcolor", "charts", "bitunix", "action", "add", "reduce"]
|
565
565
|
if set(columns).issubset(self.signaldf_full.columns) and set(columns2).issubset(self.positiondf.columns):
|
566
|
-
columnOrder= ['symbol', "side", "unrealizedPNL", "realizedPNL", f"{period}_trend", f"{period}_cb", f"{period}_barcolor", f"{period}
|
566
|
+
columnOrder= ['symbol', "side", "unrealizedPNL", "realizedPNL", f"{period}_trend", f"{period}_cb", f"{period}_barcolor", f"{period}_ema_open", f"{period}_ema_close", f"{period}_macd", f"{period}_bbm", f"{period}_rsi", f"{period}_adx", f"{period}_candle_trend", f"{period}_open", f"{period}_close", f"{period}_high", f"{period}_low", "qty", "ctime", "avgOpenPrice", "bid", "bidcolor", "last", "lastcolor", "ask", "askcolor", "charts", "bitunix", "action", "add", "reduce"]
|
567
567
|
self.positiondf2 = pd.merge(self.positiondf, self.signaldf_full[["symbol", f"{period}_open", f"{period}_close", f"{period}_high", f"{period}_low",
|
568
|
-
f"{period}
|
568
|
+
f"{period}_ema_open", f"{period}_ema_close", f"{period}_macd", f"{period}_bbm", f"{period}_rsi", f"{period}_adx", f"{period}_candle_trend",
|
569
569
|
f"{period}_trend",f"{period}_cb", f"{period}_barcolor"]], left_on="symbol", right_index=True, how="left")[columnOrder]
|
570
570
|
self.positiondfStyle= self.positiondfrenderer.render_html(self.positiondf2)
|
571
571
|
else:
|
@@ -579,7 +579,7 @@ class BitunixSignal:
|
|
579
579
|
# Assign to self.signaldf for HTML rendering
|
580
580
|
self.signaldf = self.signaldf_filtered[[
|
581
581
|
"symbol", f"{period}_trend",f"{period}_cb", f"{period}_barcolor",
|
582
|
-
f"{period}
|
582
|
+
f"{period}_ema_open", f"{period}_ema_close", f"{period}_macd", f"{period}_bbm", f"{period}_rsi",f"{period}_adx",f"{period}_candle_trend",
|
583
583
|
'lastcolor', 'bidcolor', 'askcolor', 'bid', 'ask', 'last',
|
584
584
|
f"{period}_open", f"{period}_close", f"{period}_high", f"{period}_low",
|
585
585
|
]].sort_values(by=[f'{period}_cb'], ascending=[False])
|
@@ -690,7 +690,7 @@ class BitunixSignal:
|
|
690
690
|
total_pnl = unrealized_pnl + realized_pnl
|
691
691
|
side=row['side']
|
692
692
|
|
693
|
-
requiredCols=[f'{period}_open', f'{period}_close', f'{period}_high', f'{period}_low', f'{period}
|
693
|
+
requiredCols=[f'{period}_open', f'{period}_close', f'{period}_high', f'{period}_low', f'{period}_ema_open', f"{period}_ema_close", f'{period}_macd', f'{period}_bbm', f'{period}_rsi', f'{period}_candle_trend', f'{period}_trend', f'{period}_cb', f'{period}_barcolor']
|
694
694
|
required_cols = set(requiredCols)
|
695
695
|
|
696
696
|
# Close position that fall the below criteria
|
@@ -739,9 +739,9 @@ class BitunixSignal:
|
|
739
739
|
)
|
740
740
|
continue
|
741
741
|
|
742
|
-
# Moving average comparison between fast and medium
|
742
|
+
# Moving average comparison between fast and medium or medium and slow
|
743
743
|
if self.settings.EMA_STUDY and self.settings.EMA_CHECK_ON_CLOSE:
|
744
|
-
if row.side == 'BUY' and self.signaldf_full.at[row.symbol, f'{period}
|
744
|
+
if row.side == 'BUY' and self.signaldf_full.at[row.symbol, f'{period}_ema_close'] == "SELL":
|
745
745
|
last, bid, ask, mtv = await self.GetTickerBidLastAsk(row.symbol)
|
746
746
|
price = (ask if row['side'] == "BUY" else bid if row['side'] == "SELL" else last) if bid<=last<=ask else last
|
747
747
|
|
@@ -758,7 +758,7 @@ class BitunixSignal:
|
|
758
758
|
)
|
759
759
|
continue
|
760
760
|
|
761
|
-
if row.side == 'SELL' and self.signaldf_full.at[row.symbol, f'{period}
|
761
|
+
if row.side == 'SELL' and self.signaldf_full.at[row.symbol, f'{period}_ema_close'] == "BUY":
|
762
762
|
last, bid, ask, mtv = await self.GetTickerBidLastAsk(row.symbol)
|
763
763
|
price = (ask if row['side'] == "BUY" else bid if row['side'] == "SELL" else last) if bid<=last<=ask else last
|
764
764
|
self.notifications.add_notification(
|
@@ -1027,7 +1027,10 @@ class BitunixSignal:
|
|
1027
1027
|
side = data['side']
|
1028
1028
|
positionId = data['positionId']
|
1029
1029
|
event = data['event']
|
1030
|
-
entryValue
|
1030
|
+
if 'entryValue' in data:
|
1031
|
+
entryValue = float(data['entryValue'])
|
1032
|
+
else:
|
1033
|
+
entryValue = 0
|
1031
1034
|
price = entryValue / qty if entryValue != 0 and qty != 0 else 0
|
1032
1035
|
|
1033
1036
|
if event == "OPEN":
|
@@ -19,7 +19,8 @@ class Interval:
|
|
19
19
|
|
20
20
|
#these signals are used to list stocks in the signals sections on the main page
|
21
21
|
self.current_signal="HOLD"
|
22
|
-
self.
|
22
|
+
self.ema_open_signal="HOLD"
|
23
|
+
self.ema_close_signal="HOLD"
|
23
24
|
self.macd_signal="HOLD"
|
24
25
|
self.bbm_signal="HOLD"
|
25
26
|
self.rsi_signal="HOLD"
|
@@ -54,34 +55,55 @@ class Interval:
|
|
54
55
|
df['ma_fast'] = talib.EMA(df['close'], timeperiod=self.settings.MA_FAST)
|
55
56
|
df['ma_fast'] = df['ma_fast'].bfill()
|
56
57
|
df.fillna({'ma_fast':0}, inplace=True)
|
58
|
+
df['ma_fast_slope'] = df['ma_fast'].diff()
|
59
|
+
df['ma_fast_angle'] = np.degrees(np.arctan(df['ma_fast_slope']))
|
60
|
+
df.fillna({'ma_fast_slope':0}, inplace=True)
|
61
|
+
df.fillna({'ma_fast_angle':0}, inplace=True)
|
57
62
|
|
58
|
-
df['ma_slow'] = talib.EMA(df['close'], timeperiod=self.settings.MA_SLOW)
|
59
|
-
df['ma_slow'] = df['ma_slow'].bfill()
|
60
|
-
df.fillna({'ma_slow':0}, inplace=True)
|
61
|
-
|
62
63
|
df['ma_medium'] = talib.EMA(df['close'], timeperiod=self.settings.MA_MEDIUM)
|
63
64
|
df['ma_medium'] = df['ma_medium'].bfill()
|
64
65
|
df.fillna({'ma_medium':0}, inplace=True)
|
65
|
-
|
66
|
-
df['
|
67
|
-
df
|
68
|
-
df.fillna({'
|
69
|
-
df.fillna({'ma_angle':0}, inplace=True)
|
66
|
+
df['ma_medium_slope'] = df['ma_medium'].diff()
|
67
|
+
df['ma_medium_angle'] = np.degrees(np.arctan(df['ma_medium_slope']))
|
68
|
+
df.fillna({'ma_medium_slope':0}, inplace=True)
|
69
|
+
df.fillna({'ma_medium_angle':0}, inplace=True)
|
70
70
|
|
71
|
+
df['ma_slow'] = talib.EMA(df['close'], timeperiod=self.settings.MA_SLOW)
|
72
|
+
df['ma_slow'] = df['ma_slow'].bfill()
|
73
|
+
df.fillna({'ma_slow':0}, inplace=True)
|
74
|
+
df['ma_slow_slope'] = df['ma_slow'].diff()
|
75
|
+
df['ma_slow_angle'] = np.degrees(np.arctan(df['ma_slow_slope']))
|
76
|
+
df.fillna({'ma_slow_slope':0}, inplace=True)
|
77
|
+
df.fillna({'ma_slow_angle':0}, inplace=True)
|
78
|
+
|
71
79
|
if self.settings.EMA_CROSSING:
|
72
|
-
if df['
|
73
|
-
self.
|
74
|
-
|
75
|
-
|
80
|
+
if df['ma_medium'].iloc[-2] <= df['ma_slow'].iloc[-2] and df['ma_medium'].iloc[-1] > df['ma_slow'].iloc[-1]:
|
81
|
+
self.ema_open_signal = "BUY"
|
82
|
+
self.ema_close_signal = "BUY"
|
83
|
+
elif df['ma_medium'].iloc[-2] >= df['ma_slow'].iloc[-2] and df['ma_medium'].iloc[-1] < df['ma_slow'].iloc[-1]:
|
84
|
+
self.ema_open_signal = "SELL"
|
85
|
+
self.ema_close_signal = "SELL"
|
76
86
|
else:
|
77
|
-
self.
|
87
|
+
self.ema_open_signal = "HOLD"
|
88
|
+
self.ema_close_signal = "HOLD"
|
89
|
+
|
90
|
+
if self.settings.EMA_CLOSE_ON_FAST_MEDIUM:
|
91
|
+
if df['ma_fast'].iloc[-2] <= df['ma_medium'].iloc[-2] and df['ma_fast'].iloc[-1] > df['ma_medium'].iloc[-1]:
|
92
|
+
self.ema_close_signal = "BUY"
|
93
|
+
elif df['ma_fast'].iloc[-2] >= df['ma_medium'].iloc[-2] and df['ma_fast'].iloc[-1] < df['ma_medium'].iloc[-1]:
|
94
|
+
self.ema_close_signal = "SELL"
|
95
|
+
else:
|
96
|
+
self.ema_close_signal = "HOLD"
|
78
97
|
else:
|
79
|
-
if df['close'].iloc[-1] > df['
|
80
|
-
self.
|
81
|
-
|
82
|
-
|
98
|
+
if df['close'].iloc[-1] > df['ma_medium'].iloc[-1] and df['ma_medium'].iloc[-1] > df['ma_slow'].iloc[-1]:
|
99
|
+
self.ema_open_signal = "BUY"
|
100
|
+
self.ema_close_signal = "BUY"
|
101
|
+
elif df['close'].iloc[-1] < df['ma_medium'].iloc[-1] and df['ma_medium'].iloc[-1] < df['ma_slow'].iloc[-1]:
|
102
|
+
self.ema_open_signal = "SELL"
|
103
|
+
self.ema_close_signal = "SELL"
|
83
104
|
else:
|
84
|
-
self.
|
105
|
+
self.ema_open_signal = "HOLD"
|
106
|
+
self.ema_close_signal = "HOLD"
|
85
107
|
else:
|
86
108
|
# Drop EMA columns if not used
|
87
109
|
df.drop(['ma_fast', 'ma_medium', 'ma_slow', 'ma_slope', 'ma_angle'], axis=1, inplace=True, errors='ignore')
|
@@ -96,10 +118,10 @@ class Interval:
|
|
96
118
|
df.fillna({'MACD_Signal':0}, inplace=True)
|
97
119
|
df.fillna({'MACD_Histogram':0}, inplace=True)
|
98
120
|
|
99
|
-
df['
|
100
|
-
df['
|
101
|
-
df.fillna({'
|
102
|
-
df.fillna({'
|
121
|
+
df['MACD_Line_slope'] = df['MACD_Line'].diff()
|
122
|
+
df['MACD_Line_angle'] = np.degrees(np.arctan(df['MACD_Line_slope']))
|
123
|
+
df.fillna({'MACD_Line_slope':0}, inplace=True)
|
124
|
+
df.fillna({'MACD_Line_angle':0}, inplace=True)
|
103
125
|
|
104
126
|
if self.settings.MACD_CROSSING:
|
105
127
|
if df['MACD_Line'].iloc[-2] <= df['MACD_Signal'].iloc[-2] and df['MACD_Line'].iloc[-1] > df['MACD_Signal'].iloc[-1]:
|
@@ -156,14 +178,18 @@ class Interval:
|
|
156
178
|
if self.settings.RSI_STUDY:
|
157
179
|
df['rsi_fast'] = talib.RSI(df['close'],timeperiod=self.settings.RSI_FAST)
|
158
180
|
df.fillna({'rsi_fast':0}, inplace=True)
|
181
|
+
df['rsi_fast_slope'] = df['rsi_fast'].diff()
|
182
|
+
df['rsi_fast_angle'] = np.degrees(np.arctan(df['rsi_fast_slope']))
|
183
|
+
df.fillna({'rsi_fast_slope':0}, inplace=True)
|
184
|
+
df.fillna({'rsi_fast_angle':0}, inplace=True)
|
159
185
|
|
160
186
|
df['rsi_slow'] = talib.RSI(df['close'],timeperiod=self.settings.RSI_SLOW)
|
161
187
|
df.fillna({'rsi_slow':0}, inplace=True)
|
188
|
+
df['rsi_slow_slope'] = df['rsi_slow'].diff()
|
189
|
+
df['rsi_slow_angle'] = np.degrees(np.arctan(df['rsi_slow_slope']))
|
190
|
+
df.fillna({'rsi_slow_slope':0}, inplace=True)
|
191
|
+
df.fillna({'rsi_slow_angle':0}, inplace=True)
|
162
192
|
|
163
|
-
df['rsi_slope'] = df['rsi_fast'].diff()
|
164
|
-
df['rsi_angle'] = np.degrees(np.arctan(df['rsi_slope']))
|
165
|
-
df.fillna({'rsi_slope':0}, inplace=True)
|
166
|
-
df.fillna({'rsi_angle':0}, inplace=True)
|
167
193
|
|
168
194
|
if self.settings.RSI_CROSSING:
|
169
195
|
if df['rsi_fast'].iloc[-2] <= df['rsi_slow'].iloc[-2] and df['rsi_fast'].iloc[-1] > df['rsi_slow'].iloc[-1]:
|
@@ -225,7 +251,7 @@ class Interval:
|
|
225
251
|
|
226
252
|
# Check for BUY signal
|
227
253
|
buy_conditions = (
|
228
|
-
(self.settings.EMA_STUDY and self.settings.EMA_CHECK_ON_OPEN and self.
|
254
|
+
(self.settings.EMA_STUDY and self.settings.EMA_CHECK_ON_OPEN and self.ema_open_signal == "BUY") or
|
229
255
|
(self.settings.MACD_STUDY and self.settings.MACD_CHECK_ON_OPEN and self.macd_signal == "BUY") or
|
230
256
|
(self.settings.BBM_STUDY and self.settings.BBM_CHECK_ON_OPEN and self.bbm_signal == "BUY") or
|
231
257
|
(self.settings.RSI_STUDY and self.settings.RSI_CHECK_ON_OPEN and self.rsi_signal == "BUY")
|
@@ -237,7 +263,7 @@ class Interval:
|
|
237
263
|
|
238
264
|
# Check for SELL signal
|
239
265
|
sell_conditions = (
|
240
|
-
(self.settings.EMA_STUDY and self.settings.EMA_CHECK_ON_OPEN and self.
|
266
|
+
(self.settings.EMA_STUDY and self.settings.EMA_CHECK_ON_OPEN and self.ema_open_signal == "SELL") or
|
241
267
|
(self.settings.MACD_STUDY and self.settings.MACD_CHECK_ON_OPEN and self.macd_signal == "SELL") or
|
242
268
|
(self.settings.BBM_STUDY and self.settings.BBM_CHECK_ON_OPEN and self.bbm_signal == "SELL") or
|
243
269
|
(self.settings.RSI_STUDY and self.settings.RSI_CHECK_ON_OPEN and self.rsi_signal == "SELL")
|
@@ -260,7 +286,7 @@ class Interval:
|
|
260
286
|
# ADX is enabled and strong and candle trend is enabled and bullish
|
261
287
|
# then BUY or SELL
|
262
288
|
buy_conditions = (
|
263
|
-
(not self.settings.EMA_STUDY or not self.settings.EMA_CHECK_ON_OPEN or self.
|
289
|
+
(not self.settings.EMA_STUDY or not self.settings.EMA_CHECK_ON_OPEN or self.ema_open_signal == "BUY") and
|
264
290
|
(not self.settings.MACD_STUDY or not self.settings.MACD_CHECK_ON_OPEN or self.macd_signal == "BUY") and
|
265
291
|
(not self.settings.BBM_STUDY or not self.settings.BBM_CHECK_ON_OPEN or self.bbm_signal == "BUY") and
|
266
292
|
(not self.settings.RSI_STUDY or not self.settings.RSI_CHECK_ON_OPEN or self.rsi_signal == "BUY")
|
@@ -272,7 +298,7 @@ class Interval:
|
|
272
298
|
|
273
299
|
# Check for SELL signal
|
274
300
|
sell_conditions = (
|
275
|
-
(not self.settings.EMA_STUDY or not self.settings.EMA_CHECK_ON_OPEN or self.
|
301
|
+
(not self.settings.EMA_STUDY or not self.settings.EMA_CHECK_ON_OPEN or self.ema_open_signal == "SELL") and
|
276
302
|
(not self.settings.MACD_STUDY or not self.settings.MACD_CHECK_ON_OPEN or self.macd_signal == "SELL") and
|
277
303
|
(not self.settings.BBM_STUDY or not self.settings.BBM_CHECK_ON_OPEN or self.bbm_signal == "SELL") and
|
278
304
|
(not self.settings.RSI_STUDY or not self.settings.RSI_CHECK_ON_OPEN or self.rsi_signal == "SELL")
|
@@ -548,7 +574,8 @@ class Tickers:
|
|
548
574
|
if not interval._data is None:
|
549
575
|
args[0].get_interval_ticks(intervalId)._data = interval._data
|
550
576
|
args[0].get_interval_ticks(intervalId).current_signal = interval.current_signal
|
551
|
-
args[0].get_interval_ticks(intervalId).
|
577
|
+
args[0].get_interval_ticks(intervalId).ema_open_signal = interval.ema_open_signal
|
578
|
+
args[0].get_interval_ticks(intervalId).ema_close_signal = interval.ema_close_signal
|
552
579
|
args[0].get_interval_ticks(intervalId).macd_signal = interval.macd_signal
|
553
580
|
args[0].get_interval_ticks(intervalId).bbm_signal = interval.bbm_signal
|
554
581
|
args[0].get_interval_ticks(intervalId).rsi_signal = interval.rsi_signal
|
@@ -584,7 +611,8 @@ class Tickers:
|
|
584
611
|
f"{period}_trend": intervalObj.current_signal,
|
585
612
|
f"{period}_cb": intervalObj.signal_strength,
|
586
613
|
f"{period}_barcolor": lastcandle['barcolor'],
|
587
|
-
f"{period}
|
614
|
+
f"{period}_ema_open": intervalObj.ema_open_signal,
|
615
|
+
f"{period}_ema_close": intervalObj.ema_close_signal,
|
588
616
|
f"{period}_macd":intervalObj.macd_signal,
|
589
617
|
f"{period}_bbm":intervalObj.bbm_signal,
|
590
618
|
f"{period}_rsi":intervalObj.rsi_signal,
|
@@ -18,8 +18,8 @@ class Settings(BaseSettings):
|
|
18
18
|
BARS: int = Field(default=100, ge=1)
|
19
19
|
|
20
20
|
# Technical Indicators Parameters
|
21
|
-
MA_FAST: int = Field(default=
|
22
|
-
MA_MEDIUM: int = Field(default=
|
21
|
+
MA_FAST: int = Field(default=10, ge=1)
|
22
|
+
MA_MEDIUM: int = Field(default=20, ge=1)
|
23
23
|
MA_SLOW: int = Field(default=50, ge=1)
|
24
24
|
RSI_FAST: int = Field(default=6, ge=1)
|
25
25
|
RSI_SLOW: int = Field(default=24, ge=1)
|
@@ -38,6 +38,7 @@ class Settings(BaseSettings):
|
|
38
38
|
EMA_CROSSING: bool = Field(default=False)
|
39
39
|
EMA_CHECK_ON_OPEN: bool = Field(default=True)
|
40
40
|
EMA_CHECK_ON_CLOSE: bool = Field(default=True)
|
41
|
+
EMA_CLOSE_ON_FAST_MEDIUM: bool = Field(default=True)
|
41
42
|
|
42
43
|
MACD_CHART: bool = Field(default=False)
|
43
44
|
MACD_STUDY: bool = Field(default=True)
|
@@ -1,17 +1,17 @@
|
|
1
1
|
bitunix_automated_crypto_trading/AsyncThreadRunner.py,sha256=JDpAUiTZLB9KV4tGPonAvAUJyBqZz2-ehblH6vsunz8,3142
|
2
|
-
bitunix_automated_crypto_trading/BitunixApi.py,sha256=
|
3
|
-
bitunix_automated_crypto_trading/BitunixSignal.py,sha256=
|
2
|
+
bitunix_automated_crypto_trading/BitunixApi.py,sha256=wJhknpmVFrckoL89h-nlWUAMsPxhIacY0nOGJT9M6Vw,11360
|
3
|
+
bitunix_automated_crypto_trading/BitunixSignal.py,sha256=bEC66TY_Rm8gn8VtT7bEVIQ22rimIHzJ5rv5u_qCYEw,63341
|
4
4
|
bitunix_automated_crypto_trading/BitunixWebSocket.py,sha256=mbuvk8UFWKgv4KLV07TgLgxLVTRJnOKuf02mLB-VoCY,11143
|
5
5
|
bitunix_automated_crypto_trading/DataFrameHtmlRenderer.py,sha256=Pqdzhh_nfIxFEZH9L_R5QXB8moDPbgeTGT_hmBkHWMg,2899
|
6
6
|
bitunix_automated_crypto_trading/NotificationManager.py,sha256=pqDquEe-oujD2v8B543524vo62aRMjfB4YW-3DMhVGQ,795
|
7
7
|
bitunix_automated_crypto_trading/ThreadManager.py,sha256=WmYRQu8aNrgp5HwSqpBqX1WESNSEpbD2CznPFpd9HuI,2330
|
8
|
-
bitunix_automated_crypto_trading/TickerManager.py,sha256=
|
8
|
+
bitunix_automated_crypto_trading/TickerManager.py,sha256=eeOK5paiae10XHjKMbucJnVAZkAsEC86N37bRPuCcFc,33427
|
9
9
|
bitunix_automated_crypto_trading/__init__.py,sha256=1hzk6nX8NnUCr1tsq8oFq1qGCNhNwnwldWE75641Eew,78
|
10
10
|
bitunix_automated_crypto_trading/bitunix.py,sha256=ooahU8kEhibVKYbUBdd2yxvTDiXGSvn1ENmepDoqA1g,24671
|
11
|
-
bitunix_automated_crypto_trading/config.py,sha256=
|
11
|
+
bitunix_automated_crypto_trading/config.py,sha256=sZ4pXnpFxdN3rqXSyhYnXsb6dUQzvDYW6A4q7fFNO_k,3628
|
12
12
|
bitunix_automated_crypto_trading/logger.py,sha256=FB5g2ZqTUuaIcqrzaUFtp1ZtQi-4STYL_VHLDuv9Ysg,2930
|
13
|
-
bitunix_automated_crypto_trading-3.0.
|
14
|
-
bitunix_automated_crypto_trading-3.0.
|
15
|
-
bitunix_automated_crypto_trading-3.0.
|
16
|
-
bitunix_automated_crypto_trading-3.0.
|
17
|
-
bitunix_automated_crypto_trading-3.0.
|
13
|
+
bitunix_automated_crypto_trading-3.0.2.dist-info/METADATA,sha256=gLxS2WGK2gpjgslZbx0bcHy8s00dB4jyVMOgaw58MLU,996
|
14
|
+
bitunix_automated_crypto_trading-3.0.2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
15
|
+
bitunix_automated_crypto_trading-3.0.2.dist-info/entry_points.txt,sha256=UXREYHuSl2XYd_tOtLIq0zg3d1kX3lixX5SpN8yGBw4,82
|
16
|
+
bitunix_automated_crypto_trading-3.0.2.dist-info/top_level.txt,sha256=uyFzHUCOsp8elnG2Ovor6xXcf7dxRxY-C-Txiwix64Q,33
|
17
|
+
bitunix_automated_crypto_trading-3.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|