tulip-rs 0.1.0__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.
- tulip_rs-0.1.0/.gitignore +61 -0
- tulip_rs-0.1.0/Cargo.lock +322 -0
- tulip_rs-0.1.0/Cargo.toml +32 -0
- tulip_rs-0.1.0/LICENSE +21 -0
- tulip_rs-0.1.0/PKG-INFO +445 -0
- tulip_rs-0.1.0/README.md +406 -0
- tulip_rs-0.1.0/examples/ti_ad_example.py +251 -0
- tulip_rs-0.1.0/examples/ti_adosc_example.py +353 -0
- tulip_rs-0.1.0/examples/ti_adx_example.py +300 -0
- tulip_rs-0.1.0/examples/ti_adxr_example.py +316 -0
- tulip_rs-0.1.0/examples/ti_ao_example.py +216 -0
- tulip_rs-0.1.0/examples/ti_apo_example.py +229 -0
- tulip_rs-0.1.0/examples/ti_aroon_example.py +273 -0
- tulip_rs-0.1.0/examples/ti_aroonosc_example.py +264 -0
- tulip_rs-0.1.0/examples/ti_atr_example.py +292 -0
- tulip_rs-0.1.0/examples/ti_avgprice_example.py +230 -0
- tulip_rs-0.1.0/examples/ti_bbands_example.py +243 -0
- tulip_rs-0.1.0/examples/ti_bop_example.py +228 -0
- tulip_rs-0.1.0/examples/ti_candlestick_example.py +210 -0
- tulip_rs-0.1.0/examples/ti_cci_example.py +288 -0
- tulip_rs-0.1.0/examples/ti_cmo_example.py +221 -0
- tulip_rs-0.1.0/examples/ti_cvi_example.py +268 -0
- tulip_rs-0.1.0/examples/ti_dema_example.py +209 -0
- tulip_rs-0.1.0/examples/ti_di_example.py +296 -0
- tulip_rs-0.1.0/examples/ti_dm_example.py +253 -0
- tulip_rs-0.1.0/examples/ti_dpo_example.py +235 -0
- tulip_rs-0.1.0/examples/ti_dx_example.py +293 -0
- tulip_rs-0.1.0/examples/ti_ema_example.py +210 -0
- tulip_rs-0.1.0/examples/ti_emv_example.py +224 -0
- tulip_rs-0.1.0/examples/ti_fisher_example.py +273 -0
- tulip_rs-0.1.0/examples/ti_fosc_example.py +233 -0
- tulip_rs-0.1.0/examples/ti_hma_example.py +250 -0
- tulip_rs-0.1.0/examples/ti_kama_example.py +237 -0
- tulip_rs-0.1.0/examples/ti_kvo_example.py +335 -0
- tulip_rs-0.1.0/examples/ti_linreg_example.py +245 -0
- tulip_rs-0.1.0/examples/ti_macd_example.py +245 -0
- tulip_rs-0.1.0/examples/ti_marketfi_example.py +244 -0
- tulip_rs-0.1.0/examples/ti_mass_example.py +273 -0
- tulip_rs-0.1.0/examples/ti_max_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_md_example.py +244 -0
- tulip_rs-0.1.0/examples/ti_medprice_example.py +214 -0
- tulip_rs-0.1.0/examples/ti_mfi_example.py +319 -0
- tulip_rs-0.1.0/examples/ti_min_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_mom_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_msw_example.py +244 -0
- tulip_rs-0.1.0/examples/ti_natr_example.py +300 -0
- tulip_rs-0.1.0/examples/ti_nvi_example.py +212 -0
- tulip_rs-0.1.0/examples/ti_obv_example.py +212 -0
- tulip_rs-0.1.0/examples/ti_pivotpoint_example.py +125 -0
- tulip_rs-0.1.0/examples/ti_ppo_example.py +245 -0
- tulip_rs-0.1.0/examples/ti_psar_example.py +269 -0
- tulip_rs-0.1.0/examples/ti_pvi_example.py +212 -0
- tulip_rs-0.1.0/examples/ti_qstick_example.py +272 -0
- tulip_rs-0.1.0/examples/ti_roc_example.py +244 -0
- tulip_rs-0.1.0/examples/ti_rocr_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_rsi_example.py +246 -0
- tulip_rs-0.1.0/examples/ti_sma_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_stddev_example.py +241 -0
- tulip_rs-0.1.0/examples/ti_stoch_example.py +304 -0
- tulip_rs-0.1.0/examples/ti_stochrsi_example.py +246 -0
- tulip_rs-0.1.0/examples/ti_tema_example.py +250 -0
- tulip_rs-0.1.0/examples/ti_tr_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_trima_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_trix_example.py +242 -0
- tulip_rs-0.1.0/examples/ti_tsf_example.py +247 -0
- tulip_rs-0.1.0/examples/ti_typprice_example.py +242 -0
- tulip_rs-0.1.0/examples/ti_ultosc_example.py +298 -0
- tulip_rs-0.1.0/examples/ti_vhf_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_vidya_example.py +246 -0
- tulip_rs-0.1.0/examples/ti_volatility_example.py +242 -0
- tulip_rs-0.1.0/examples/ti_vosc_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_vwma_example.py +271 -0
- tulip_rs-0.1.0/examples/ti_wad_example.py +242 -0
- tulip_rs-0.1.0/examples/ti_wcprice_example.py +242 -0
- tulip_rs-0.1.0/examples/ti_wilders_example.py +242 -0
- tulip_rs-0.1.0/examples/ti_willr_example.py +298 -0
- tulip_rs-0.1.0/examples/ti_wma_example.py +240 -0
- tulip_rs-0.1.0/examples/ti_zlema_example.py +242 -0
- tulip_rs-0.1.0/pyproject.toml +75 -0
- tulip_rs-0.1.0/rust-toolchain.toml +2 -0
- tulip_rs-0.1.0/src/bulk_register.rs +188 -0
- tulip_rs-0.1.0/src/indicator_template.rs +277 -0
- tulip_rs-0.1.0/src/indicators/ad.rs +362 -0
- tulip_rs-0.1.0/src/indicators/adosc.rs +468 -0
- tulip_rs-0.1.0/src/indicators/adx.rs +501 -0
- tulip_rs-0.1.0/src/indicators/adxr.rs +455 -0
- tulip_rs-0.1.0/src/indicators/ao.rs +331 -0
- tulip_rs-0.1.0/src/indicators/apo.rs +440 -0
- tulip_rs-0.1.0/src/indicators/aroon.rs +491 -0
- tulip_rs-0.1.0/src/indicators/aroonosc.rs +435 -0
- tulip_rs-0.1.0/src/indicators/atr.rs +495 -0
- tulip_rs-0.1.0/src/indicators/avgprice.rs +334 -0
- tulip_rs-0.1.0/src/indicators/bbands.rs +484 -0
- tulip_rs-0.1.0/src/indicators/bop.rs +333 -0
- tulip_rs-0.1.0/src/indicators/candlestick.rs +388 -0
- tulip_rs-0.1.0/src/indicators/cci.rs +495 -0
- tulip_rs-0.1.0/src/indicators/cmo.rs +430 -0
- tulip_rs-0.1.0/src/indicators/cvi.rs +434 -0
- tulip_rs-0.1.0/src/indicators/dema.rs +478 -0
- tulip_rs-0.1.0/src/indicators/di.rs +444 -0
- tulip_rs-0.1.0/src/indicators/dm.rs +434 -0
- tulip_rs-0.1.0/src/indicators/dpo.rs +430 -0
- tulip_rs-0.1.0/src/indicators/dx.rs +444 -0
- tulip_rs-0.1.0/src/indicators/ema.rs +505 -0
- tulip_rs-0.1.0/src/indicators/emv.rs +329 -0
- tulip_rs-0.1.0/src/indicators/fisher.rs +410 -0
- tulip_rs-0.1.0/src/indicators/fosc.rs +408 -0
- tulip_rs-0.1.0/src/indicators/hma.rs +408 -0
- tulip_rs-0.1.0/src/indicators/kama.rs +408 -0
- tulip_rs-0.1.0/src/indicators/kvo.rs +420 -0
- tulip_rs-0.1.0/src/indicators/linreg.rs +407 -0
- tulip_rs-0.1.0/src/indicators/macd.rs +483 -0
- tulip_rs-0.1.0/src/indicators/marketfi.rs +303 -0
- tulip_rs-0.1.0/src/indicators/mass.rs +409 -0
- tulip_rs-0.1.0/src/indicators/max.rs +407 -0
- tulip_rs-0.1.0/src/indicators/md.rs +407 -0
- tulip_rs-0.1.0/src/indicators/medprice.rs +297 -0
- tulip_rs-0.1.0/src/indicators/mfi.rs +472 -0
- tulip_rs-0.1.0/src/indicators/min.rs +407 -0
- tulip_rs-0.1.0/src/indicators/mod.rs +444 -0
- tulip_rs-0.1.0/src/indicators/mom.rs +389 -0
- tulip_rs-0.1.0/src/indicators/msw.rs +389 -0
- tulip_rs-0.1.0/src/indicators/natr.rs +399 -0
- tulip_rs-0.1.0/src/indicators/nvi.rs +278 -0
- tulip_rs-0.1.0/src/indicators/obv.rs +280 -0
- tulip_rs-0.1.0/src/indicators/pivotpoint.rs +153 -0
- tulip_rs-0.1.0/src/indicators/ppo.rs +437 -0
- tulip_rs-0.1.0/src/indicators/psar.rs +391 -0
- tulip_rs-0.1.0/src/indicators/pvi.rs +277 -0
- tulip_rs-0.1.0/src/indicators/qstick.rs +468 -0
- tulip_rs-0.1.0/src/indicators/roc.rs +506 -0
- tulip_rs-0.1.0/src/indicators/rocr.rs +458 -0
- tulip_rs-0.1.0/src/indicators/rsi.rs +534 -0
- tulip_rs-0.1.0/src/indicators/sma.rs +529 -0
- tulip_rs-0.1.0/src/indicators/stddev.rs +465 -0
- tulip_rs-0.1.0/src/indicators/stoch.rs +547 -0
- tulip_rs-0.1.0/src/indicators/stochrsi.rs +495 -0
- tulip_rs-0.1.0/src/indicators/tema.rs +520 -0
- tulip_rs-0.1.0/src/indicators/tr.rs +356 -0
- tulip_rs-0.1.0/src/indicators/trima.rs +446 -0
- tulip_rs-0.1.0/src/indicators/trix.rs +487 -0
- tulip_rs-0.1.0/src/indicators/tsf.rs +445 -0
- tulip_rs-0.1.0/src/indicators/typprice.rs +342 -0
- tulip_rs-0.1.0/src/indicators/ultosc.rs +457 -0
- tulip_rs-0.1.0/src/indicators/vhf.rs +436 -0
- tulip_rs-0.1.0/src/indicators/vidya.rs +433 -0
- tulip_rs-0.1.0/src/indicators/volatility.rs +434 -0
- tulip_rs-0.1.0/src/indicators/vosc.rs +433 -0
- tulip_rs-0.1.0/src/indicators/vwma.rs +441 -0
- tulip_rs-0.1.0/src/indicators/wad.rs +336 -0
- tulip_rs-0.1.0/src/indicators/wcprice.rs +330 -0
- tulip_rs-0.1.0/src/indicators/wilders.rs +433 -0
- tulip_rs-0.1.0/src/indicators/willr.rs +486 -0
- tulip_rs-0.1.0/src/indicators/wma.rs +500 -0
- tulip_rs-0.1.0/src/indicators/zlema.rs +434 -0
- tulip_rs-0.1.0/src/lib.rs +111 -0
- tulip_rs-0.1.0/src/utils.rs +28 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# -------------------------
|
|
2
|
+
# Rust build artifacts
|
|
3
|
+
# -------------------------
|
|
4
|
+
target/
|
|
5
|
+
Cargo.lock
|
|
6
|
+
|
|
7
|
+
# If you want Cargo.lock tracked for libraries, remove the line above.
|
|
8
|
+
# For Python bindings, it's usually better ignored.
|
|
9
|
+
|
|
10
|
+
# -------------------------
|
|
11
|
+
# Python virtual environments
|
|
12
|
+
# -------------------------
|
|
13
|
+
.env/
|
|
14
|
+
venv/
|
|
15
|
+
.venv/
|
|
16
|
+
|
|
17
|
+
# -------------------------
|
|
18
|
+
# Python cache files
|
|
19
|
+
# -------------------------
|
|
20
|
+
__pycache__/
|
|
21
|
+
*.pyc
|
|
22
|
+
*.pyo
|
|
23
|
+
*.pyd
|
|
24
|
+
|
|
25
|
+
# -------------------------
|
|
26
|
+
# PyO3 / maturin build outputs
|
|
27
|
+
# -------------------------
|
|
28
|
+
*.so
|
|
29
|
+
*.dll
|
|
30
|
+
*.dylib
|
|
31
|
+
*.pyd
|
|
32
|
+
*.abi3.so
|
|
33
|
+
|
|
34
|
+
# Wheels
|
|
35
|
+
*.whl
|
|
36
|
+
|
|
37
|
+
# -------------------------
|
|
38
|
+
# Maturin build directories
|
|
39
|
+
# -------------------------
|
|
40
|
+
build/
|
|
41
|
+
dist/
|
|
42
|
+
|
|
43
|
+
# -------------------------
|
|
44
|
+
# IDE / editor files
|
|
45
|
+
# -------------------------
|
|
46
|
+
.vscode/
|
|
47
|
+
.idea/
|
|
48
|
+
*.swp
|
|
49
|
+
*.swo
|
|
50
|
+
|
|
51
|
+
# -------------------------
|
|
52
|
+
# Misc
|
|
53
|
+
# -------------------------
|
|
54
|
+
*.log
|
|
55
|
+
*.tmp
|
|
56
|
+
*.bak
|
|
57
|
+
|
|
58
|
+
# Type stubs generated by PyO3/maturin
|
|
59
|
+
tulip_rs.pyi
|
|
60
|
+
*.md
|
|
61
|
+
!README.md
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "autocfg"
|
|
7
|
+
version = "1.5.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "heck"
|
|
13
|
+
version = "0.5.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "itoa"
|
|
19
|
+
version = "1.0.18"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "libc"
|
|
25
|
+
version = "0.2.186"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "matrixmultiply"
|
|
31
|
+
version = "0.3.10"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"autocfg",
|
|
36
|
+
"rawpointer",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "memchr"
|
|
41
|
+
version = "2.8.0"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "ndarray"
|
|
47
|
+
version = "0.17.2"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"matrixmultiply",
|
|
52
|
+
"num-complex",
|
|
53
|
+
"num-integer",
|
|
54
|
+
"num-traits",
|
|
55
|
+
"portable-atomic",
|
|
56
|
+
"portable-atomic-util",
|
|
57
|
+
"rawpointer",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "num-complex"
|
|
62
|
+
version = "0.4.6"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"num-traits",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "num-integer"
|
|
71
|
+
version = "0.1.46"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"num-traits",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "num-traits"
|
|
80
|
+
version = "0.2.19"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"autocfg",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "numpy"
|
|
89
|
+
version = "0.28.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"libc",
|
|
94
|
+
"ndarray",
|
|
95
|
+
"num-complex",
|
|
96
|
+
"num-integer",
|
|
97
|
+
"num-traits",
|
|
98
|
+
"pyo3",
|
|
99
|
+
"pyo3-build-config",
|
|
100
|
+
"rustc-hash",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "once_cell"
|
|
105
|
+
version = "1.21.4"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "portable-atomic"
|
|
111
|
+
version = "1.13.1"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "portable-atomic-util"
|
|
117
|
+
version = "0.2.7"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"portable-atomic",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "proc-macro2"
|
|
126
|
+
version = "1.0.106"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"unicode-ident",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "pyo3"
|
|
135
|
+
version = "0.28.3"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"libc",
|
|
140
|
+
"once_cell",
|
|
141
|
+
"portable-atomic",
|
|
142
|
+
"pyo3-build-config",
|
|
143
|
+
"pyo3-ffi",
|
|
144
|
+
"pyo3-macros",
|
|
145
|
+
]
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "pyo3-build-config"
|
|
149
|
+
version = "0.28.3"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"target-lexicon",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "pyo3-ffi"
|
|
158
|
+
version = "0.28.3"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"libc",
|
|
163
|
+
"pyo3-build-config",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "pyo3-macros"
|
|
168
|
+
version = "0.28.3"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"proc-macro2",
|
|
173
|
+
"pyo3-macros-backend",
|
|
174
|
+
"quote",
|
|
175
|
+
"syn",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "pyo3-macros-backend"
|
|
180
|
+
version = "0.28.3"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"heck",
|
|
185
|
+
"proc-macro2",
|
|
186
|
+
"pyo3-build-config",
|
|
187
|
+
"quote",
|
|
188
|
+
"syn",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "quote"
|
|
193
|
+
version = "1.0.45"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"proc-macro2",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "rawpointer"
|
|
202
|
+
version = "0.2.1"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "rustc-hash"
|
|
208
|
+
version = "2.1.2"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "serde"
|
|
214
|
+
version = "1.0.228"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"serde_core",
|
|
219
|
+
"serde_derive",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "serde_core"
|
|
224
|
+
version = "1.0.228"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"serde_derive",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "serde_derive"
|
|
233
|
+
version = "1.0.228"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"proc-macro2",
|
|
238
|
+
"quote",
|
|
239
|
+
"syn",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "serde_json"
|
|
244
|
+
version = "1.0.150"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"itoa",
|
|
249
|
+
"memchr",
|
|
250
|
+
"serde",
|
|
251
|
+
"serde_core",
|
|
252
|
+
"zmij",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "syn"
|
|
257
|
+
version = "2.0.117"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"proc-macro2",
|
|
262
|
+
"quote",
|
|
263
|
+
"unicode-ident",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "target-lexicon"
|
|
268
|
+
version = "0.13.5"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "tulip_rs"
|
|
274
|
+
version = "0.1.0"
|
|
275
|
+
source = "git+https://github.com/me60732/tulip_rs.git#5fa7fe437ef6b5f1a71eee3696172eda0fe4c6f7"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"libc",
|
|
278
|
+
"serde",
|
|
279
|
+
"serde_json",
|
|
280
|
+
"tulip_rs_macros",
|
|
281
|
+
"tulip_rs_shared",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "tulip_rs_macros"
|
|
286
|
+
version = "0.1.0"
|
|
287
|
+
source = "git+https://github.com/me60732/tulip_rs.git#5fa7fe437ef6b5f1a71eee3696172eda0fe4c6f7"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"proc-macro2",
|
|
290
|
+
"quote",
|
|
291
|
+
"syn",
|
|
292
|
+
"tulip_rs_shared",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "tulip_rs_python"
|
|
297
|
+
version = "0.1.0"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"numpy",
|
|
300
|
+
"pyo3",
|
|
301
|
+
"pyo3-build-config",
|
|
302
|
+
"serde",
|
|
303
|
+
"serde_json",
|
|
304
|
+
"tulip_rs",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "tulip_rs_shared"
|
|
309
|
+
version = "0.1.0"
|
|
310
|
+
source = "git+https://github.com/me60732/tulip_rs.git#5fa7fe437ef6b5f1a71eee3696172eda0fe4c6f7"
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "unicode-ident"
|
|
314
|
+
version = "1.0.24"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "zmij"
|
|
320
|
+
version = "1.0.21"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "tulip_rs_python"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
edition = "2021"
|
|
5
|
+
description = "Python bindings for TulipRS - Technical Analysis Library"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
authors = ["Your Name <me60732@gmail.com>"]
|
|
8
|
+
repository = "https://github.com/me60732/tulip_rs_python"
|
|
9
|
+
homepage = "https://github.com/me60732/tulip_rs_python"
|
|
10
|
+
documentation = "https://docs.rs/tulip_rs_python"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
|
|
13
|
+
[lib]
|
|
14
|
+
name = "tulip_rs"
|
|
15
|
+
crate-type = ["cdylib"]
|
|
16
|
+
|
|
17
|
+
[dependencies]
|
|
18
|
+
pyo3 = { version = "0.28", features = ["extension-module"] }
|
|
19
|
+
numpy = "0.28"
|
|
20
|
+
serde = { version = "1.0", features = ["derive"] }
|
|
21
|
+
serde_json = "1.0"
|
|
22
|
+
tulip_rs = { git = "https://github.com/me60732/tulip_rs.git", default-features = true, features = ["portable_simd"] }
|
|
23
|
+
|
|
24
|
+
[build-dependencies]
|
|
25
|
+
pyo3-build-config = "0.28"
|
|
26
|
+
|
|
27
|
+
[dev-dependencies]
|
|
28
|
+
pyo3 = { version = "0.28", features = ["auto-initialize"] }
|
|
29
|
+
|
|
30
|
+
[features]
|
|
31
|
+
default = []
|
|
32
|
+
extension-module = ["pyo3/extension-module"]
|
tulip_rs-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 me60732
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|