{"id":37134140,"url":"https://github.com/rpanchyk/fxbd","last_synced_at":"2026-01-14T15:38:59.731Z","repository":{"id":57624918,"uuid":"278833980","full_name":"rpanchyk/fxbd","owner":"rpanchyk","description":"Forex Board","archived":false,"fork":false,"pushed_at":"2023-12-24T20:38:31.000Z","size":158,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-21T02:09:07.470Z","etag":null,"topics":["forex","statistics"],"latest_commit_sha":null,"homepage":"","language":"Go","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/rpanchyk.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-11T09:55:19.000Z","updated_at":"2024-01-20T20:54:36.000Z","dependencies_parsed_at":"2024-06-21T00:53:57.382Z","dependency_job_id":null,"html_url":"https://github.com/rpanchyk/fxbd","commit_stats":null,"previous_names":["rpanchyk/fxbd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rpanchyk/fxbd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpanchyk%2Ffxbd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpanchyk%2Ffxbd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpanchyk%2Ffxbd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpanchyk%2Ffxbd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rpanchyk","download_url":"https://codeload.github.com/rpanchyk/fxbd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpanchyk%2Ffxbd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28424374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["forex","statistics"],"created_at":"2026-01-14T15:38:59.275Z","updated_at":"2026-01-14T15:38:59.719Z","avatar_url":"https://github.com/rpanchyk.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Forex Board\n\nThe goal of the project is to provide better monitoring of forex accounts.\n\nYou need only to have registered public monitoring, for example on [myfxbook](https://www.myfxbook.com/) platform.\n\n![Forex Board](fxbd.png)\n\n## Assumptions\n\nThis guide assumes you're using Unix-like operating system, but you can adopt instruction commands for Windows, etc.\n\n## Requirements:\n\n1. Install Golang as described [here](https://golang.org/doc/install).\n```shell script\nwget https://dl.google.com/go/go$GOVERSION.linux-amd64.tar.gz\nsudo tar -C /usr/local -xzf go$GOVERSION.linux-amd64.tar.gz\n```\n\n2. Install `dep` utility as described [here](https://golang.github.io/dep/docs/installation.html).\n```shell script\nsudo curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh\n```\n\n## Installation\n\n1. Download the source code of the project.\n\n2. Unpack the archive and go to the project directory:\n```shell script\n$GOPATH/src/fxbd\n```\n\n3. Create configuration file `$GOPATH/src/fxbd/application_config.json` with your settings:\n```json\n{\n  \"port\": 8080,\n  \"stats_dir\": \"/tmp/fxbd-stats\",\n  \"accounts\": [\n    {\n      \"name\": \"My Account 1\",\n      \"location\": \"https://www.myfxbook.com/members/user1/account1/id\",\n      \"refresh_seconds\": 300,\n      \"currency_divider\": 100\n    }\n  ]\n}\n```\nwhere:\n- `port` - exposed port of application available on.\n- `stats_dir` - folder where downloaded statistics located (must be writable).\n- `accounts` - list of monitored accounts.\n  - `name` - Visible name of account on dashboard.\n  - `location` - url to original Forex monitoring page (currently supports [myfxbook](https://www.myfxbook.com/) only).\n  - `refresh_seconds` - time period to download statistics (in seconds).\n  - `currency_divider` - adjust currency values (for cent accounts use 100).\n\n4. Get dependencies:\n```shell script\ndep init\ndep ensure -v\n```\n\n5. Build the project:\n```shell script\ngo build .\n```\n\n6. Run executable:\n```shell script\n./fxbd\n```\n\n7. Check the page [http://localhost:8080/](http://localhost:8080/).\n\n## Settings for **MyFxBook** monitoring\n\nYou need properly configure you original monitoring platform.\n\n![MyFxBook](myfxbook.png)\n\n## Contribution\n\nFeel free to bring your ideas improving the visual or functionality of the project in \n[Issues](https://github.com/gonamore/fxbd/issues) or [Pull Requests](https://github.com/gonamore/fxbd/pulls).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpanchyk%2Ffxbd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frpanchyk%2Ffxbd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpanchyk%2Ffxbd/lists"}