{"id":26353631,"url":"https://github.com/ronik-v/stock_strategy_testing_api","last_synced_at":"2026-05-19T17:12:24.223Z","repository":{"id":195316127,"uuid":"692682781","full_name":"ronik-v/stock_strategy_testing_api","owner":"ronik-v","description":"Oversimplistic asynchronous web api for receiving data from the Moscow Exchange.","archived":false,"fork":false,"pushed_at":"2023-09-26T20:05:25.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-09-27T03:09:57.105Z","etag":null,"topics":["api","data-parsing","fastapi","investing","investing-api","investment-strategies","moex","moex-data","web-api"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ronik-v.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,"governance":null}},"created_at":"2023-09-17T08:55:36.000Z","updated_at":"2023-09-17T09:15:46.000Z","dependencies_parsed_at":"2023-09-17T13:08:34.353Z","dependency_job_id":null,"html_url":"https://github.com/ronik-v/stock_strategy_testing_api","commit_stats":null,"previous_names":["ronik-v/stock_strategy_testing_api"],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronik-v%2Fstock_strategy_testing_api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronik-v%2Fstock_strategy_testing_api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronik-v%2Fstock_strategy_testing_api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronik-v%2Fstock_strategy_testing_api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronik-v","download_url":"https://codeload.github.com/ronik-v/stock_strategy_testing_api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243858276,"owners_count":20359334,"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":["api","data-parsing","fastapi","investing","investing-api","investment-strategies","moex","moex-data","web-api"],"created_at":"2025-03-16T11:19:14.723Z","updated_at":"2026-05-19T17:12:19.186Z","avatar_url":"https://github.com/ronik-v.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stock strategy testing web api\n\u003cdiv\u003e\n    \u003cul\u003e\n        \u003cdiv class=\"details\"\u003e\n                \u003cli\u003e\n                    \u003ch3\u003eDetails\u003c/h3\u003e\n                    \u003cdiv\u003e\n                        \u003cb\u003eOversimplistic asynchronous web api for receiving data from the Moscow Exchange (\u003ca href=\"https://www.moex.com/\"\u003eMOEX\u003c/a\u003e)\u003c/b\u003e\n                        \u003cp\u003eThrough it you can get data on financial instruments, that is, prices (json): opening, closing, minimum prices, maximum prices.\u003c/p\u003e\n                        \u003cp\u003eYou can also get indicators: \u003cem\u003eMACD, SIGNAL, SMA5, SMA12, EMA5, EMA12, VOLATILITY\u003c/em\u003e.\u003c/p\u003e\n                    \u003c/div\u003e\n                \u003c/li\u003e\n                \u003cli\u003e\n                    \u003ch3\u003eUsing the api\u003c/h3\u003e\n                    \u003cp\u003eRequest for get ticker data at 2022-05-01 to 2023-09-26:\u003c/p\u003e\n                    \u003cdiv\u003e\n                        \u003cpre\u003efrom requests import get\u003cbr\u003edata = get('http://127.0.0.1:9999/api_sst/data/GAZP/2022-05-01/2023-09-26').json()\u003cbr\u003eprint(data)\u003c/pre\u003e\n                    \u003c/div\u003e\n                    \u003cdiv\u003e\n                        \u003cp\u003eRequest for strategy testing at 2022-05-01 to 2023-09-26:\u003c/p\u003e\n                        \u003cpre\u003efrom requests import get\u003cbr\u003esst_strategies = get('http://127.0.0.1:9999/api_sst/strategy/GAZP/2022-05-01/2023-09-26').json()\u003cbr\u003eprint(sst_strategies)\u003c/pre\u003e\n                    \u003c/div\u003e\n                \u003c/li\u003e\n                \u003cli\u003e\n                    \u003ch3\u003eLibraries to install\u003c/h3\u003e\n                    \u003ca href=\"requirements.txt\"\u003erequirements\u003c/a\u003e\n                    \u003cp\u003eYou may use command for install all:\u003c/p\u003e\n                    \u003cpre\u003epip install -r requirements.txt\u003c/pre\u003e\n                \u003c/li\u003e\n                \u003cli\u003e\n                    \u003ch3\u003eDocker\u003c/h3\u003e\n                    \u003ca href=\"Dockerfile\"\u003efile is here\u003c/a\u003e\n                \u003c/li\u003e\n        \u003c/div\u003e\n    \u003c/ul\u003e\n\u003c/div\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronik-v%2Fstock_strategy_testing_api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronik-v%2Fstock_strategy_testing_api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronik-v%2Fstock_strategy_testing_api/lists"}