{"id":25626675,"url":"https://github.com/coqui123/tradegpt","last_synced_at":"2026-04-11T07:03:43.870Z","repository":{"id":278843104,"uuid":"936949855","full_name":"coqui123/TradeGPT","owner":"coqui123","description":"TradeGPT is a full-stack cryptocurrency trading application that combines a modern Fresh (Deno) frontend with a Python (FASTAPI) backend for Coinbase integration and Azure AI Services for intelligent trading analysis. 💹","archived":false,"fork":false,"pushed_at":"2025-02-22T02:01:42.000Z","size":44,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T03:17:42.213Z","etag":null,"topics":["analytics","automation","cryptocurrency","data","deno","fastapi","fresh","numpy","python","trading-algorithms","trading-strategies","tradingbot","typescript"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coqui123.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-02-22T01:43:13.000Z","updated_at":"2025-02-22T02:18:45.000Z","dependencies_parsed_at":"2025-02-22T03:27:51.372Z","dependency_job_id":null,"html_url":"https://github.com/coqui123/TradeGPT","commit_stats":null,"previous_names":["coqui123/tradegpt"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coqui123%2FTradeGPT","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coqui123%2FTradeGPT/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coqui123%2FTradeGPT/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coqui123%2FTradeGPT/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coqui123","download_url":"https://codeload.github.com/coqui123/TradeGPT/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240206981,"owners_count":19765039,"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":["analytics","automation","cryptocurrency","data","deno","fastapi","fresh","numpy","python","trading-algorithms","trading-strategies","tradingbot","typescript"],"created_at":"2025-02-22T16:57:57.814Z","updated_at":"2026-04-11T07:03:43.864Z","avatar_url":"https://github.com/coqui123.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TradeGPT 🚀 \n\nTradeGPT is a full-stack cryptocurrency trading application that combines a modern Fresh (Deno) frontend with a Python (FastAPI) backend for Coinbase API integration and Azure AI Services for intelligent trading analysis. 💹\n\n## Project Structure 📁\n\n```\ntradegpt/              # Frontend (Fresh/Deno)\n├── islands/           # Interactive components\n├── routes/            # Page routes\n├── components/        # Shared components\n├── static/           # Static assets\n└── ...\n```\n\n```\ntradegpt-backend/             # Frontend (FastAPI/Python)\n├── app/\n│   ├── api/\n│   │   └── routes.py         # API endpoints\n│   ├── core/\n│   │   ├── trade_recommendation.py\n│   │   ├── analysis_engine.py  \n│   │   └── data_fetcher.py   # Market data fetching\n│   ├── models/\n│   │   └── schemas.py        # Pydantic data models\n│   ├── services/\n│   │   ├── coinbase_manager.py  # Coinbase API integration\n│   │   └── llm_manager.py    # Language model integration\n│   ├── technical_indicators/\n│   │   ├── advanced_indicators.py     # Technical indicators\n│   │   └── basic_indicators.py     \n│   └── utils/\n│       └── json_utils.py     # JSON formatting utilities\n├── main.py                   # Application entry point\n└── requirements.txt          # Dependencies\n```\n\n## Prerequisites ✅\n\n- [Deno](https://deno.land/manual/getting_started/installation) for the frontend 🦕\n- [Python 3.x](https://www.python.org/downloads/) for the backend 🐍\n- Coinbase API credentials 🔑\n- Local LLM or API KEY for AI Services (GPT-4o-mini, GPT-3.0-mini, sonar-reasoning, sonar-pro, sonar-reasoning-pro, Phi-3.5-MoE) 🤖\n\n## Frontend Setup 🎨\n\n1. Navigate to the frontend directory:\n```bash\ncd tradegpt\n```\n\n2. Start the development server:\n```bash\ndeno task start\n```\n\nThe frontend will be available at `http://localhost:8000` 🌐\n\n## Backend Setup ⚙️\n\n1. Navigate to the backend directory:\n```bash\ncd tradegpt-backend\n```\n\n2. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n3. Set up your environment variables in `.env`:\n```\n# COINBASE API\nCOINBASE_API_KEY=your_api_key\nCOINBASE_API_SECRET=your_api_secret\n\n# LLM API\nLLM_API_ENDPOINT=your_llm_endpoint\nLLM_API_TOKEN=your_llm_api_key\nLLM_API_MODEL_NAME=your_llm_model_name\n```\n\n4. Run the backend server:\n```bash\npython main.py\n```\n\n## Features ✨\n\n- Real-time cryptocurrency price tracking 📊\n- Interactive trading charts 📈\n- Coinbase integration for live trading 💱\n- Modern UI with Tailwind CSS 🎯\n\n## Development 🛠️\n\nThe project uses:\n- Fresh framework for the frontend 🌟\n- Tailwind CSS for styling 💅\n- Python for backend services 🐍\n- Coinbase API for trading functionality 💰\n\n## Contributing 🤝\n\n1. Fork the repository 🍴\n2. Create your feature branch 🌿\n3. Commit your changes 💾\n4. Push to the branch 🚀\n5. Create a new Pull Request ✅\n\n## Images 📸\n![image](https://github.com/user-attachments/assets/348fdca7-29f2-46d7-b86d-4f49342f0ccd)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoqui123%2Ftradegpt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoqui123%2Ftradegpt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoqui123%2Ftradegpt/lists"}