29 lines
731 B
Plaintext
29 lines
731 B
Plaintext
# Cursor Rules
|
|
|
|
## Git Remote Configuration
|
|
|
|
- **Remote name**: `all8ai`
|
|
- **URL**: `https://git.all8ai.top/freedak/timesfm.git`
|
|
- **Username**: `freedak`
|
|
- **Password**: `Why_701208`
|
|
- **Default branch**: `master`
|
|
|
|
## Push Commands
|
|
|
|
```bash
|
|
# Push to all8ai remote
|
|
git push all8ai master
|
|
|
|
# Add new remote if needed
|
|
git remote add all8ai https://freedak:Why_701208@git.all8ai.top/freedak/timesfm.git
|
|
```
|
|
|
|
## Project Info
|
|
|
|
- This is a fork of Google Research's TimesFM (Time Series Foundation Model)
|
|
- Added stock prediction experiments (AAPL forecast + backtest)
|
|
- Python virtual environment at `.venv/`
|
|
- Activate: `source .venv/bin/activate`
|
|
- Run forecast: `python stock_forecast.py`
|
|
- Run backtest: `python stock_backtest.py`
|