siglab-py 0.5.29__py3-none-any.whl → 0.5.31__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.
Potentially problematic release.
This version of siglab-py might be problematic. Click here for more details.
- siglab_py/util/analytic_util.py +13 -11
- {siglab_py-0.5.29.dist-info → siglab_py-0.5.31.dist-info}/METADATA +1 -1
- {siglab_py-0.5.29.dist-info → siglab_py-0.5.31.dist-info}/RECORD +5 -5
- {siglab_py-0.5.29.dist-info → siglab_py-0.5.31.dist-info}/WHEEL +0 -0
- {siglab_py-0.5.29.dist-info → siglab_py-0.5.31.dist-info}/top_level.txt +0 -0
siglab_py/util/analytic_util.py
CHANGED
|
@@ -199,25 +199,27 @@ def compute_candles_stats(
|
|
|
199
199
|
bearish_ema_crosses = (ema_short_periods_prev >= ema_long_periods_prev) & (ema_short_periods_curr < ema_long_periods_curr)
|
|
200
200
|
pd_candles.loc[bullish_ema_crosses, 'ema_cross'] = 1
|
|
201
201
|
pd_candles.loc[bearish_ema_crosses, 'ema_cross'] = -1
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
pd_candles
|
|
205
|
-
|
|
206
|
-
'bullish',
|
|
207
|
-
pd_candles.loc[bullish_ema_crosses, 'ema_cross']
|
|
208
|
-
)
|
|
202
|
+
bullish_indices = pd.Series(pd_candles.index.where(pd_candles['ema_cross'] == 1), index=pd_candles.index).astype('Int64')
|
|
203
|
+
bearish_indices = pd.Series(pd_candles.index.where(pd_candles['ema_cross'] == -1), index=pd_candles.index).astype('Int64')
|
|
204
|
+
pd_candles['ema_bullish_cross_last_id'] = bullish_indices.rolling(window=sliding_window_how_many_candles, min_periods=1).max().astype('Int64')
|
|
205
|
+
pd_candles['ema_bearish_cross_last_id'] = bearish_indices.rolling(window=sliding_window_how_many_candles, min_periods=1).max().astype('Int64')
|
|
209
206
|
pd_candles['ema_cross_last'] = np.where(
|
|
210
|
-
|
|
207
|
+
(pd_candles['ema_bullish_cross_last_id'].notna()) & (
|
|
208
|
+
pd_candles['ema_bearish_cross_last_id'].isna() |
|
|
209
|
+
(pd_candles['ema_bullish_cross_last_id'] > pd_candles['ema_bearish_cross_last_id'])
|
|
210
|
+
),
|
|
211
211
|
'bullish',
|
|
212
212
|
np.where(
|
|
213
|
-
pd_candles['ema_bearish_cross_last_id']
|
|
213
|
+
(pd_candles['ema_bearish_cross_last_id'].notna()) & (
|
|
214
|
+
pd_candles['ema_bullish_cross_last_id'].isna() |
|
|
215
|
+
(pd_candles['ema_bearish_cross_last_id'] > pd_candles['ema_bullish_cross_last_id'])
|
|
216
|
+
),
|
|
214
217
|
'bearish',
|
|
215
218
|
None # type: ignore
|
|
216
219
|
)
|
|
217
220
|
)
|
|
218
|
-
|
|
219
221
|
pd_candles['ema_cross_last'] = pd_candles['ema_cross_last'].where(
|
|
220
|
-
pd_candles['ema_bullish_cross_last_id'].
|
|
222
|
+
pd_candles['ema_bullish_cross_last_id'].isna() & pd_candles['ema_bearish_cross_last_id'].isna(),
|
|
221
223
|
None
|
|
222
224
|
)
|
|
223
225
|
|
|
@@ -26,14 +26,14 @@ siglab_py/tests/unit/analytic_util_tests.py,sha256=5Vic-lwuGvgLfjcP1gmrdBizMn0hX
|
|
|
26
26
|
siglab_py/tests/unit/market_data_util_tests.py,sha256=A1y83itISmMJdn6wLpfwcr4tGola8wTf1D1xbelMvgw,2026
|
|
27
27
|
siglab_py/tests/unit/trading_util_tests.py,sha256=9DZmTZlW55lPtNfTCukgDdiyBiMYv9R4mEFWJIJiTNg,3870
|
|
28
28
|
siglab_py/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
siglab_py/util/analytic_util.py,sha256=
|
|
29
|
+
siglab_py/util/analytic_util.py,sha256=7ln7BCWd55M04ByERu1KcTZTdtGthCsriZ_oIZeK_VM,56229
|
|
30
30
|
siglab_py/util/aws_util.py,sha256=KGmjHrr1rpnnxr33nXHNzTul4tvyyxl9p6gpwNv0Ygc,2557
|
|
31
31
|
siglab_py/util/market_data_util.py,sha256=mUXg4uaiX3b6_klgJWIEgnUQU4IUd6CwTOqKLiQWRlU,31307
|
|
32
32
|
siglab_py/util/notification_util.py,sha256=vySgHjpHgwFDLW0tHSi_AGh9JBbPc25IUgvWxmjAeT8,2658
|
|
33
33
|
siglab_py/util/retry_util.py,sha256=g-UU6pkPouWZZRZEqP99R2Z0lX5xzckYkzjwqqSDpVQ,922
|
|
34
34
|
siglab_py/util/slack_notification_util.py,sha256=G27n-adbT3Q6oaHSMvu_Nom794rrda5PprSF-zvmzkM,1912
|
|
35
35
|
siglab_py/util/trading_util.py,sha256=-TGNgJdy4HMDPgq31KQn_lRawFxuXnFU5NnLRb1XM5o,5757
|
|
36
|
-
siglab_py-0.5.
|
|
37
|
-
siglab_py-0.5.
|
|
38
|
-
siglab_py-0.5.
|
|
39
|
-
siglab_py-0.5.
|
|
36
|
+
siglab_py-0.5.31.dist-info/METADATA,sha256=p_Q7Swt94JsCDnZL15VP4tOV78b0s0P0ZE0FCmF-Rj8,829
|
|
37
|
+
siglab_py-0.5.31.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
|
38
|
+
siglab_py-0.5.31.dist-info/top_level.txt,sha256=AbD4VR9OqmMOGlMJLkAVPGQMtUPIQv0t1BF5xmcLJSk,10
|
|
39
|
+
siglab_py-0.5.31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|