{"id":19044240,"url":"https://github.com/arturogonzalezm/realtimebinancemonitor","last_synced_at":"2026-04-18T17:04:36.651Z","repository":{"id":250647880,"uuid":"835040411","full_name":"arturogonzalezm/RealTimeBinanceMonitor","owner":"arturogonzalezm","description":"This project connects to Binance's WebSocket API to process real-time cryptocurrency data using the observer pattern.","archived":false,"fork":false,"pushed_at":"2024-07-31T00:45:42.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-06T06:01:45.740Z","etag":null,"topics":["crypto","cryptocurrency","docker","docker-compose","go","golang","postgresql","real-time","realtime","testify","testify-mocking","testing","websockets"],"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/arturogonzalezm.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,"zenodo":null}},"created_at":"2024-07-29T03:25:05.000Z","updated_at":"2024-07-31T00:45:45.000Z","dependencies_parsed_at":"2024-07-29T05:31:32.406Z","dependency_job_id":"bd850c4e-e1bb-40dc-9374-ab76a0d1016d","html_url":"https://github.com/arturogonzalezm/RealTimeBinanceMonitor","commit_stats":null,"previous_names":["arturogonzalezm/realtimebinancemonitor"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/arturogonzalezm/RealTimeBinanceMonitor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturogonzalezm%2FRealTimeBinanceMonitor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturogonzalezm%2FRealTimeBinanceMonitor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturogonzalezm%2FRealTimeBinanceMonitor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturogonzalezm%2FRealTimeBinanceMonitor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arturogonzalezm","download_url":"https://codeload.github.com/arturogonzalezm/RealTimeBinanceMonitor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturogonzalezm%2FRealTimeBinanceMonitor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31976806,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T16:27:12.723Z","status":"ssl_error","status_checked_at":"2026-04-18T16:27:11.140Z","response_time":103,"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":["crypto","cryptocurrency","docker","docker-compose","go","golang","postgresql","real-time","realtime","testify","testify-mocking","testing","websockets"],"created_at":"2024-11-08T22:45:16.511Z","updated_at":"2026-04-18T17:04:36.632Z","avatar_url":"https://github.com/arturogonzalezm.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![codecov](https://codecov.io/gh/arturogonzalezm/RealTimeBinanceMonitor/graph/badge.svg?token=I4cOxsac0y)](https://codecov.io/gh/arturogonzalezm/RealTimeBinanceMonitor)\n![Go Test and Coverage](https://github.com/arturogonzalezm/RealTimeBinanceMonitor/actions/workflows/workflow.yml/badge.svg)\n[![License: MIT](https://img.shields.io/badge/License-MIT-purple.svg)](https://opensource.org/licenses/MIT)\n\n# RealTime Binance Monitor\n\nRealTime Binance Monitor is a Go application that connects to the Binance WebSocket API to receive real-time cryptocurrency market data. It processes this data and saves it to a CSV file for further analysis.\n\n## Features\n\n- Real-time connection to Binance WebSocket API\n- Processing of ticker data for specified cryptocurrency pairs\n- Buffered writing of data to CSV files\n- Configurable buffer size and flush interval\n- Graceful shutdown handling\n\n## Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/arturogonzalezm/RealTimeBinanceMonitor.git\n   ```\n\n2. Change to the project directory:\n   ```bash\n   cd RealTimeBinanceMonitor\n   ```\n\n3. Build the application:\n   ```bash\n   go build ./cmd/monitor\n   ```\n\n## Usage\n\nRun the application with:\n\n```bash\n./monitor\n```\n\nBy default, it will monitor the BTC/USDT pair. To monitor a different pair, modify the `symbol` variable in `cmd/monitor/main.go`.\n\n## Configuration\n\nYou can adjust the following parameters in `cmd/monitor/main.go`:\n\n- `symbol`: The cryptocurrency pair to monitor (e.g., \"btcusdt\", \"ethusdt\")\n- Buffer size and flush interval in the `NewBufferedCSVWriter` function call\n\n## TODO: \n\n- Add configuration file support\n- Add support for multiple pairs\n- Insert data into a database\n- Add support for more Binance WebSocket API endpoints\n- Add support for more data processing and analysis\n- Add support for Kafka\n- Add support for Vue JS front end\n- Add support for Docker\n- Add support for Kubernetes or doc\n- Add support for CI/CD\n- Add support for more tests\n- Add support for more documentation\n\n\n## License\n\n[MIT License](LICENSE)\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farturogonzalezm%2Frealtimebinancemonitor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farturogonzalezm%2Frealtimebinancemonitor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farturogonzalezm%2Frealtimebinancemonitor/lists"}