{"id":26755231,"url":"https://github.com/artreex/currency-pattern-detector","last_synced_at":"2025-04-15T02:31:22.718Z","repository":{"id":36907477,"uuid":"230862019","full_name":"ArtReeX/currency-pattern-detector","owner":"ArtReeX","description":"Finding patterns in a temporary financial row.","archived":false,"fork":false,"pushed_at":"2022-11-09T22:31:09.000Z","size":330,"stargazers_count":18,"open_issues_count":8,"forks_count":8,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T14:19:06.384Z","etag":null,"topics":["candlestick","cryptocurrency","currency","detector","pattern","typescript"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/ArtReeX.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":"2019-12-30T06:36:44.000Z","updated_at":"2024-08-16T16:23:11.000Z","dependencies_parsed_at":"2023-01-17T07:08:04.166Z","dependency_job_id":null,"html_url":"https://github.com/ArtReeX/currency-pattern-detector","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtReeX%2Fcurrency-pattern-detector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtReeX%2Fcurrency-pattern-detector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtReeX%2Fcurrency-pattern-detector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtReeX%2Fcurrency-pattern-detector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArtReeX","download_url":"https://codeload.github.com/ArtReeX/currency-pattern-detector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248993892,"owners_count":21195276,"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":["candlestick","cryptocurrency","currency","detector","pattern","typescript"],"created_at":"2025-03-28T14:19:12.172Z","updated_at":"2025-04-15T02:31:22.354Z","avatar_url":"https://github.com/ArtReeX.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# currency-pattern-detector\n\nFinding patterns in a temporary financial row.\n\n## Supported Patterns\n\n- Abandoned Baby.\n- Bearish Engulfing Pattern.\n- Bullish Engulfiing Pattern.\n- Dark Cloud Cover.\n- Downside Tasuki Gap.\n- Doji.\n- DragonFly Doji.\n- GraveStone Doji.\n- BullishHarami.\n- Bearish Harami Cross.\n- Bullish Harami Cross.\n- Bullish Marubozu.\n- Bearish Marubozu.\n- Evening Doji Star.\n- Evening Star.\n- Bearish Harami.\n- Piercing Line.\n- Bullish Spinning Top.\n- Bearish Spinning Top.\n- Morning Doji Star.\n- Morning Star.\n- Three Black Crows.\n- Three White Soldiers.\n- Bullish Hammer.\n- Bearish Hammer.\n- Bullish Inverted Hammer.\n- Bearish Inverted Hammer.\n- Hammer Pattern.\n- Hammer Pattern (Unconfirmed).\n- Hanging Man.\n- Hanging Man (Unconfirmed).\n- Shooting Star.\n- Shooting Star (Unconfirmed).\n- Tweezer Top.\n- Tweezer Bottom.\n\n## Using\n\n```typescript\nimport detector from \"currency-pattern-detector/build\";\n\ninterface ICandle {\n  open: number;\n  close: number;\n  high: number;\n  low: number;\n}\n\nconst candles: ICandle[] = [\n  { open: 45.0, high: 46.2, close: 41.2, low: 38.56 },\n  { open: 33.45, high: 34.7, close: 29.31, low: 28.0 },\n  { open: 30.2, high: 36.63, close: 36.28, low: 29.8 }\n];\n\ndetector(candles);\n```\n\n```typescript\ninterface IResult {\n  bullish: string[];\n  bearish: string[];\n}\n```\n\n**The result contains two arrays listing the patterns found.**\n\n_You can give a complete history of candles, and the detector itself will take as much as it needs (from the last)._\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartreex%2Fcurrency-pattern-detector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartreex%2Fcurrency-pattern-detector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartreex%2Fcurrency-pattern-detector/lists"}