Qubx 0.1.4__cp311-cp311-manylinux_2_35_x86_64.whl → 0.1.5__cp311-cp311-manylinux_2_35_x86_64.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 Qubx might be problematic. Click here for more details.

qubx/_nb_magic.py CHANGED
@@ -32,13 +32,17 @@ if runtime_env() in ['notebook', 'shell']:
32
32
  from tqdm.auto import tqdm
33
33
 
34
34
  # - - - - TA stuff and indicators - - - -
35
+ import qubx.pandaz.ta as pta
36
+
35
37
  # - - - - Portfolio analysis - - - -
36
38
  # - - - - Simulator stuff - - - -
37
39
  # - - - - Learn stuff - - - -
38
40
  # - - - - Charting stuff - - - -
39
41
  from matplotlib import pyplot as plt
40
42
  from qubx.utils.charting.mpl_helpers import fig, subplot, sbp
43
+
41
44
  # - - - - Utils - - - -
45
+ from qubx.pandaz.utils import scols, srows, ohlc_resample, continuous_periods, generate_equal_date_ranges
42
46
 
43
47
  # - setup short numpy output format
44
48
  np_fmt_short()
@@ -0,0 +1,4 @@
1
+ from .utils import (
2
+ srows, scols, continuous_periods, ohlc_resample, retain_columns_and_join, dict_to_frame,
3
+ generate_equal_date_ranges, rolling_forward_test_split
4
+ )