{"id":28347664,"url":"https://github.com/stjepangolemac/inditech","last_synced_at":"2025-09-07T23:42:02.576Z","repository":{"id":57657743,"uuid":"400085376","full_name":"stjepangolemac/inditech","owner":"stjepangolemac","description":"A set of technical indicators","archived":false,"fork":false,"pushed_at":"2021-08-26T07:50:38.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T04:39:07.522Z","etag":null,"topics":["analysis","indicators","series","technical","time"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stjepangolemac.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-08-26T07:48:02.000Z","updated_at":"2021-08-26T07:50:41.000Z","dependencies_parsed_at":"2022-09-07T05:40:33.835Z","dependency_job_id":null,"html_url":"https://github.com/stjepangolemac/inditech","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stjepangolemac/inditech","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjepangolemac%2Finditech","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjepangolemac%2Finditech/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjepangolemac%2Finditech/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjepangolemac%2Finditech/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stjepangolemac","download_url":"https://codeload.github.com/stjepangolemac/inditech/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjepangolemac%2Finditech/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261255458,"owners_count":23131473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analysis","indicators","series","technical","time"],"created_at":"2025-05-27T17:10:49.832Z","updated_at":"2025-09-07T23:42:02.560Z","avatar_url":"https://github.com/stjepangolemac.png","language":"Rust","readme":"# inditech\n\n[![License](https://img.shields.io/badge/license-MIT-green)](https://github.com/stjepangolemac/inditech/main/LICENSE)\n\nA set of technical indicators that can be used for time series analysis.\nThere's only a few of them for now but new ones might be added soon.\n\n## Usage\n\n```rust\nuse inditech::{Frame, Identity, EMA, ROC, RSI, SMA};\n\nfn main() {\n    let mut frame = Frame::new();\n    frame.add(Box::new(Identity::new()));\n    frame.add(Box::new(SMA::new(8)));\n    frame.add(Box::new(EMA::new(8)));\n    frame.add(Box::new(RSI::new(8)));\n    frame.add(Box::new(ROC::new(8)));\n\n    let data: Vec\u003cf32\u003e = generate_data();\n    data.iter().for_each(|item| frame.push(item));\n\n    dbg!(frame.last());\n    // Vec[\u003cdata\u003e, \u003csma8\u003e, \u003cema8\u003e, \u003crsi8\u003e, \u003croc8\u003e]\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstjepangolemac%2Finditech","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstjepangolemac%2Finditech","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstjepangolemac%2Finditech/lists"}