{"id":37197582,"url":"https://github.com/wlm1ke/gomoex","last_synced_at":"2026-01-14T22:57:54.909Z","repository":{"id":57569231,"uuid":"343780642","full_name":"WLM1ke/gomoex","owner":"WLM1ke","description":"Сlient for MOEX ISS","archived":true,"fork":false,"pushed_at":"2025-04-29T12:23:45.000Z","size":219,"stargazers_count":6,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-29T13:43:01.090Z","etag":null,"topics":["iss","moex"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WLM1ke.png","metadata":{"files":{"readme":"README.md","changelog":"history.go","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-03-02T13:16:56.000Z","updated_at":"2025-04-29T12:28:17.000Z","dependencies_parsed_at":"2025-04-29T13:43:43.812Z","dependency_job_id":null,"html_url":"https://github.com/WLM1ke/gomoex","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/WLM1ke/gomoex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WLM1ke%2Fgomoex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WLM1ke%2Fgomoex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WLM1ke%2Fgomoex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WLM1ke%2Fgomoex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WLM1ke","download_url":"https://codeload.github.com/WLM1ke/gomoex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WLM1ke%2Fgomoex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28437629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["iss","moex"],"created_at":"2026-01-14T22:57:54.201Z","updated_at":"2026-01-14T22:57:54.862Z","avatar_url":"https://github.com/WLM1ke.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gomoex\n\n[![Go test](https://github.com/WLM1ke/gomoex/actions/workflows/test.yml/badge.svg)](https://github.com/WLM1ke/gomoex/actions/workflows/test.yml)\n[![Go Report Card](https://goreportcard.com/badge/github.com/WLM1ke/gomoex)](https://goreportcard.com/report/github.com/WLM1ke/gomoex)\n[![codecov](https://codecov.io/gh/WLM1ke/gomoex/branch/main/graph/badge.svg?token=74YYC7H8EC)](https://codecov.io/gh/WLM1ke/gomoex)\n[![Go Reference](https://pkg.go.dev/badge/github.com/WLM1ke/gomoex.svg)](https://pkg.go.dev/github.com/WLM1ke/gomoex)\n\nРеализация части запросов к [MOEX Informational \u0026 Statistical Server](https://www.moex.com/a2193).\n\n# Основные возможности\n\nРеализованы запросы получения:\n\n* списка торгуемых инструментов\n* интервалов дат с доступными свечками и историческими котировками\n* свечек и исторических котировок\n* дивидендов\n\nПри необходимости перечень запросов может быть расширен. [Документация](https://pkg.go.dev/github.com/WLM1ke/gomoex).\n\n# Пример использования\n\nПолучение дневных свечек для AKRN:\n\n```\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"github.com/WLM1ke/gomoex\"\n\t\"net/http\"\n)\n\nfunc main() {\n\tcl := gomoex.NewISSClient(http.DefaultClient)\n\trows, _ := cl.MarketCandles(context.Background(), gomoex.EngineStock, gomoex.MarketShares, \"AKRN\", \"2021-03-01\", \"2021-03-11\", gomoex.IntervalDay)\n\tfor _, row := range rows {\n\t\tfmt.Printf(\"%+v\\n\", row)\n\t}\n}\n```\n\nРезультат:\n\n```\n{Begin:2021-03-01 00:00:00 +0000 UTC End:2021-03-01 23:59:59 +0000 UTC Open:6006 Close:5992 High:6018 Low:5990 Value:5.138208e+06 Volume:856}\n{Begin:2021-03-02 00:00:00 +0000 UTC End:2021-03-02 23:59:59 +0000 UTC Open:6006 Close:6032 High:6046 Low:5990 Value:1.2557102e+07 Volume:2087}\n{Begin:2021-03-03 00:00:00 +0000 UTC End:2021-03-03 23:59:59 +0000 UTC Open:6048 Close:6000 High:6048 Low:5990 Value:7.280306e+06 Volume:1209}\n{Begin:2021-03-04 00:00:00 +0000 UTC End:2021-03-04 23:59:59 +0000 UTC Open:6000 Close:5982 High:6008 Low:5964 Value:8.168796e+06 Volume:1365}\n{Begin:2021-03-05 00:00:00 +0000 UTC End:2021-03-05 23:59:59 +0000 UTC Open:5968 Close:5996 High:6010 Low:5968 Value:4.505082e+06 Volume:752}\n{Begin:2021-03-09 00:00:00 +0000 UTC End:2021-03-09 23:59:59 +0000 UTC Open:6018 Close:6010 High:6018 Low:5960 Value:9.577078e+06 Volume:1597}\n{Begin:2021-03-10 00:00:00 +0000 UTC End:2021-03-10 23:59:59 +0000 UTC Open:6008 Close:6004 High:6010 Low:5982 Value:5.505522e+06 Volume:918}\n{Begin:2021-03-11 00:00:00 +0000 UTC End:2021-03-11 23:59:59 +0000 UTC Open:6006 Close:6000 High:6010 Low:5992 Value:3.228186e+06 Volume:538}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwlm1ke%2Fgomoex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwlm1ke%2Fgomoex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwlm1ke%2Fgomoex/lists"}