- Quick reference for accessing repos from any machine - Uses git.fetcherpay.com (not internal IP) - Includes clone commands and credentials
60 lines
1.7 KiB
Markdown
60 lines
1.7 KiB
Markdown
# Gitea Repositories - Access from Any Machine
|
|
|
|
## Repository URLs (Use These)
|
|
|
|
### 1. MQL Trading Bots
|
|
**Code repository for all trading EAs**
|
|
- **Clone**: `git clone https://git.fetcherpay.com/garfield/mql-trading-bots.git`
|
|
- **Web**: https://git.fetcherpay.com/garfield/mql-trading-bots
|
|
- **Local Path**: `~/mql-trading-bots/`
|
|
|
|
**Contents:**
|
|
- MultiSignal_Confluence_EA.mq5 (v1.11 - fixed)
|
|
- MultiSignal_Confluence.mq5 (indicator)
|
|
- HarmonicPatternFinderV2_Optimized.mq5
|
|
- CandlestickPatternEA_Fixed.mq5
|
|
- FadePivot2_v4_Fixed.mq5
|
|
- Bot series (10001, 10002, EnhancedEA)
|
|
- README.md with full documentation
|
|
|
|
### 2. Conversation History
|
|
**Session logs and project context**
|
|
- **Clone**: `git clone https://git.fetcherpay.com/garfield/conversation-history.git`
|
|
- **Web**: https://git.fetcherpay.com/garfield/conversation-history
|
|
- **Local Path**: `~/conversation-history/`
|
|
|
|
**Contents:**
|
|
- 2026-03-21-mql-trading-bots.md (today's session)
|
|
- README.md (project index)
|
|
- TEMPLATE.md (session template)
|
|
- load-context.sh (helper script)
|
|
|
|
## Access Credentials
|
|
- **Username**: `garfield@fetcherpay.com`
|
|
- **Password**: `onelove01`
|
|
- **Gitea Web**: https://git.fetcherpay.com
|
|
|
|
## Quick Commands
|
|
|
|
### Clone on New Machine
|
|
```bash
|
|
# Trading bots
|
|
git clone https://git.fetcherpay.com/garfield/mql-trading-bots.git
|
|
|
|
# Conversation history
|
|
git clone https://git.fetcherpay.com/garfield/conversation-history.git
|
|
```
|
|
|
|
### Load Context on New Machine
|
|
```bash
|
|
cd ~/conversation-history
|
|
./load-context.sh
|
|
# or
|
|
cat 2026-03-21-mql-trading-bots.md
|
|
```
|
|
|
|
## Network Notes
|
|
- **Domain**: git.fetcherpay.com (works from any network)
|
|
- **Internal IP**: 10.152.183.192:3000 (Ubuntu server only)
|
|
- **Always use domain** for cross-machine compatibility
|