siglab-py 0.1.6__tar.gz → 0.1.7__tar.gz
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-0.1.6 → siglab_py-0.1.7}/PKG-INFO +1 -1
- {siglab_py-0.1.6 → siglab_py-0.1.7}/pyproject.toml +1 -1
- {siglab_py-0.1.6 → siglab_py-0.1.7}/setup.cfg +1 -1
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/tests/integration/market_data_util_tests.py +1 -1
- siglab_py-0.1.7/siglab_py/tests/unit/analytic_util_tests.py +41 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/util/aws_util.py +5 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py.egg-info/PKG-INFO +1 -1
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py.egg-info/SOURCES.txt +1 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/constants.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/exchanges/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/exchanges/any_exchange.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/aggregated_orderbook_provider.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/candles_provider.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/candles_ta_provider.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/deribit_options_expiry_provider.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/orderbooks_provider.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/test_provider.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/ordergateway/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/ordergateway/client.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/ordergateway/encrypt_keys_util.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/ordergateway/gateway.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/ordergateway/test_ordergateway.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/tests/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/tests/integration/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/tests/unit/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/util/__init__.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/util/analytic_util.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/util/market_data_util.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/util/retry_util.py +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py.egg-info/dependency_links.txt +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py.egg-info/requires.txt +0 -0
- {siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "siglab_py"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.7"
|
|
8
8
|
description = "Market data fetches, TA calculations and generic order gateway."
|
|
9
9
|
authors = [{name = "r0bbarh00d", email = "r0bbarh00d@gmail.com"}]
|
|
10
10
|
license = {text = "MIT"}
|
|
@@ -12,7 +12,7 @@ from ccxt.deribit import deribit
|
|
|
12
12
|
from ccxt.base.exchange import Exchange
|
|
13
13
|
|
|
14
14
|
# @unittest.skip("Skip all integration tests.")
|
|
15
|
-
class
|
|
15
|
+
class MarketDataUtilTests(unittest.TestCase):
|
|
16
16
|
|
|
17
17
|
def test_fetch_candles_yahoo(self):
|
|
18
18
|
start_date : datetime = datetime(2024, 1,1)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import unittest
|
|
2
|
+
from typing import List
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
|
|
5
|
+
from util.analytic_util import compute_candles_stats
|
|
6
|
+
|
|
7
|
+
import pandas as pd
|
|
8
|
+
|
|
9
|
+
# @unittest.skip("Skip all integration tests.")
|
|
10
|
+
class AnalyticUtilTests(unittest.TestCase):
|
|
11
|
+
|
|
12
|
+
def test_compute_candle_stats(self):
|
|
13
|
+
'''
|
|
14
|
+
Folder structure:
|
|
15
|
+
\ siglab
|
|
16
|
+
\ siglab_py <-- python project root
|
|
17
|
+
\ sigab_py
|
|
18
|
+
__init__.py
|
|
19
|
+
\ util
|
|
20
|
+
__init__.py
|
|
21
|
+
market_data_util.py
|
|
22
|
+
\ tests
|
|
23
|
+
\ unit
|
|
24
|
+
__init__.py
|
|
25
|
+
analytic_util_tests.py <-- Tests here
|
|
26
|
+
|
|
27
|
+
\ siglab_rs <-- Rust project root
|
|
28
|
+
\ data <-- Data files here!
|
|
29
|
+
'''
|
|
30
|
+
data_dir = Path(__file__).parent.parent.parent.parent / "data"
|
|
31
|
+
csv_path = data_dir / "sample_btc_candles.csv"
|
|
32
|
+
pd_candles : pd.DataFrame = pd.read_csv(csv_path)
|
|
33
|
+
compute_candles_stats(
|
|
34
|
+
pd_candles=pd_candles,
|
|
35
|
+
boillenger_std_multiples=2,
|
|
36
|
+
sliding_window_how_many_candles=20,
|
|
37
|
+
pypy_compat=True
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
expected_columns : List[str] = ['exchange', 'symbol', 'timestamp_ms', 'open', 'high', 'low', 'close', 'volume', 'datetime', 'datetime_utc', 'year', 'month', 'day', 'hour', 'minute', 'dayofweek', 'pct_chg_on_close', 'candle_height', 'is_green', 'pct_change_close', 'sma_short_periods', 'sma_long_periods', 'ema_short_periods', 'ema_long_periods', 'ema_close', 'std', 'ema_volume_short_periods', 'ema_volume_long_periods', 'max_short_periods', 'max_long_periods', 'idmax_short_periods', 'idmax_long_periods', 'min_short_periods', 'min_long_periods', 'idmin_short_periods', 'idmin_long_periods', 'h_l', 'h_pc', 'l_pc', 'tr', 'atr', 'hurst_exp', 'boillenger_upper', 'boillenger_lower', 'boillenger_channel_height', 'boillenger_upper_agg', 'boillenger_lower_agg', 'boillenger_channel_height_agg', 'aggressive_up', 'aggressive_up_index', 'aggressive_up_candle_height', 'aggressive_up_candle_high', 'aggressive_up_candle_low', 'aggressive_down', 'aggressive_down_index', 'aggressive_down_candle_height', 'aggressive_down_candle_high', 'aggressive_down_candle_low', 'fvg_low', 'fvg_high', 'fvg_gap', 'fvg_mitigated', 'close_delta', 'close_delta_percent', 'up', 'down', 'rsi', 'ema_rsi', 'typical_price', 'money_flow', 'money_flow_positive', 'money_flow_negative', 'positive_flow_sum', 'negative_flow_sum', 'money_flow_ratio', 'mfi', 'macd', 'signal', 'macd_minus_signal', 'fib_618_short_periods', 'fib_618_long_periods', 'gap_close_vs_ema', 'close_above_or_below_ema', 'close_vs_ema_inflection']
|
|
41
|
+
assert(pd_candles.columns.to_list()==expected_columns)
|
|
@@ -3,6 +3,11 @@ from typing import Union, Dict
|
|
|
3
3
|
'''
|
|
4
4
|
https://gist.github.com/raphaelgabbarelli/bc5a41d93789046f9c71e4685f1463e7
|
|
5
5
|
https://www.youtube.com/watch?v=CFEYKrP0vxs
|
|
6
|
+
|
|
7
|
+
If boto3 import complains: AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'
|
|
8
|
+
python3 -m pip install pip --upgrade
|
|
9
|
+
pip install pyopenssl --upgrade
|
|
10
|
+
https://stackoverflow.com/questions/73830524/attributeerror-module-lib-has-no-attribute-x509-v-flag-cb-issuer-check
|
|
6
11
|
'''
|
|
7
12
|
import boto3
|
|
8
13
|
import base64
|
|
@@ -25,6 +25,7 @@ siglab_py/tests/__init__.py
|
|
|
25
25
|
siglab_py/tests/integration/__init__.py
|
|
26
26
|
siglab_py/tests/integration/market_data_util_tests.py
|
|
27
27
|
siglab_py/tests/unit/__init__.py
|
|
28
|
+
siglab_py/tests/unit/analytic_util_tests.py
|
|
28
29
|
siglab_py/util/__init__.py
|
|
29
30
|
siglab_py/util/analytic_util.py
|
|
30
31
|
siglab_py/util/aws_util.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{siglab_py-0.1.6 → siglab_py-0.1.7}/siglab_py/market_data_providers/aggregated_orderbook_provider.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|