Qubx 0.1.3__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 +4 -0
- qubx/core/series.cpython-311-x86_64-linux-gnu.so +0 -0
- qubx/core/utils.cpython-311-x86_64-linux-gnu.so +0 -0
- qubx/data/readers.py +323 -325
- qubx/pandaz/__init__.py +4 -0
- qubx/pandaz/ta.py +2527 -0
- qubx/{utils/pandas.py → pandaz/utils.py} +15 -2
- qubx/ta/indicators.cpython-311-x86_64-linux-gnu.so +0 -0
- qubx/utils/marketdata/binance.py +1 -1
- qubx/utils/misc.py +1 -1
- qubx/utils/runner.py +2 -1
- {qubx-0.1.3.dist-info → qubx-0.1.5.dist-info}/METADATA +1 -1
- {qubx-0.1.3.dist-info → qubx-0.1.5.dist-info}/RECORD +14 -12
- {qubx-0.1.3.dist-info → qubx-0.1.5.dist-info}/WHEEL +0 -0
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()
|
|
Binary file
|
|
Binary file
|