ta_lib_ffi 0.1.0 → 0.2.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -3
- data/README.md +4 -4
- data/lib/{ta_lib.rb → ta_lib_ffi.rb} +16 -2
- data/ta_lib_ffi.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bce4e063a54d75d182df869d35da723b37949710c6f1c5044c6973cbc96d3004
|
4
|
+
data.tar.gz: f74f344e265e98f8d080c0044a2fb95bac0060d8a664ff6e9930266be850712a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 896f41210adc293d7fe65dc4c7331916780b9e616587315a9671c2bfc76ad4a364492d26db5051efa8f18077a6dfa5535a4fd29cda2664c6e5fcc00452b1b7cb
|
7
|
+
data.tar.gz: 1d3c9ff3389f34cd93822e9136a87aaf5c61f0dfa015b4d5c715b5219898cf87a04f221bd1346f90f7339fda7b93fcd6d39a8a07ad79bb5b1558c321f983f511
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.2.0] - 2025-01-21
|
9
|
+
|
10
|
+
### Added
|
11
|
+
- Added Zeitwerk inflector configuration for proper constant loading
|
12
|
+
|
13
|
+
### Changed
|
14
|
+
- Renamed module from `TALib` to `TALibFFI` for better clarity
|
15
|
+
- Renamed main file from `lib/ta_lib.rb` to `lib/ta_lib_ffi.rb`
|
16
|
+
- Updated require statements in specs and gemspec
|
17
|
+
|
8
18
|
## [0.1.0] - 2024-01-21
|
9
19
|
|
10
20
|
### Added
|
@@ -26,10 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
26
36
|
### Removed
|
27
37
|
- N/A
|
28
38
|
|
29
|
-
### Fixed
|
30
|
-
- N/A
|
31
|
-
|
32
39
|
### Security
|
33
40
|
- N/A
|
34
41
|
|
42
|
+
[0.2.0]: https://github.com/Youngv/ta_lib_ffi/compare/v0.1.0...v0.2.0
|
35
43
|
[0.1.0]: https://github.com/Youngv/ta_lib_ffi/releases/tag/v0.1.0
|
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
#
|
1
|
+
# TALibFFI
|
2
2
|
|
3
3
|

|
4
4
|
|
5
5
|
## Introduction
|
6
6
|
|
7
|
-
|
7
|
+
TALibFFI is a Ruby binding for [TA-Lib](https://ta-lib.org/) (Technical Analysis Library) using FFI (Foreign Function Interface). It provides a comprehensive set of functions for technical analysis of financial market data.
|
8
8
|
|
9
9
|
## Requirements
|
10
10
|
|
@@ -57,13 +57,13 @@ Or install it directly:
|
|
57
57
|
## Usage
|
58
58
|
|
59
59
|
```ruby
|
60
|
-
require '
|
60
|
+
require 'ta_lib_ffi'
|
61
61
|
|
62
62
|
# Initialize data
|
63
63
|
prices = [10.0, 11.0, 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0]
|
64
64
|
|
65
65
|
# Calculate SMA
|
66
|
-
puts
|
66
|
+
puts TALibFFI.sma(prices, time_period: 3)
|
67
67
|
# => [11.0, 11.333333333333334, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0]
|
68
68
|
```
|
69
69
|
|
@@ -4,8 +4,22 @@ require "fiddle"
|
|
4
4
|
require "fiddle/import"
|
5
5
|
|
6
6
|
# Ruby FFI wrapper for TA-Lib (Technical Analysis Library)
|
7
|
-
module
|
8
|
-
VERSION = "0.
|
7
|
+
module TALibFFI
|
8
|
+
VERSION = "0.2.0"
|
9
|
+
|
10
|
+
if defined?(Zeitwerk)
|
11
|
+
# Custom inflector for handling special case module names like TALibFFI
|
12
|
+
class Inflector < Zeitwerk::GemInflector
|
13
|
+
def camelize(basename, _abspath)
|
14
|
+
case basename
|
15
|
+
when "ta_lib_ffi"
|
16
|
+
"TALibFFI"
|
17
|
+
else
|
18
|
+
super
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
9
23
|
|
10
24
|
extend Fiddle::Importer
|
11
25
|
|
data/ta_lib_ffi.gemspec
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative "lib/
|
3
|
+
require_relative "lib/ta_lib_ffi"
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "ta_lib_ffi"
|
7
|
-
spec.version =
|
7
|
+
spec.version = TALibFFI::VERSION
|
8
8
|
spec.authors = ["Victor Yang"]
|
9
9
|
spec.email = ["victor@rt4u.bid"]
|
10
10
|
spec.summary = "Ruby FFI bindings for TA-Lib (Technical Analysis Library)"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ta_lib_ffi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Yang
|
@@ -93,7 +93,7 @@ files:
|
|
93
93
|
- LICENSE.txt
|
94
94
|
- README.md
|
95
95
|
- Rakefile
|
96
|
-
- lib/
|
96
|
+
- lib/ta_lib_ffi.rb
|
97
97
|
- ta_lib_ffi.gemspec
|
98
98
|
homepage: https://github.com/Youngv/ta_lib_ffi
|
99
99
|
licenses:
|