Upload 6 files
Browse files- .gitignore +14 -0
- README.md +2 -3
- requirements.txt +4 -3
.gitignore
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.pyc
|
| 3 |
+
*.pyo
|
| 4 |
+
.ipynb_checkpoints/
|
| 5 |
+
.env
|
| 6 |
+
*.egg-info/
|
| 7 |
+
|
| 8 |
+
# runtime-generated, not source
|
| 9 |
+
data_cache/*.csv
|
| 10 |
+
outputs/*.csv
|
| 11 |
+
outputs/*.png
|
| 12 |
+
|
| 13 |
+
!data_cache/.gitkeep
|
| 14 |
+
!outputs/.gitkeep
|
README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
title: Forex
|
| 3 |
emoji: π
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
-
sdk_version: 6.24.0
|
| 10 |
---
|
| 11 |
|
| 12 |
# π Forex & Crypto Prediction Dashboard
|
|
@@ -155,4 +154,4 @@ This project is for education and research. It does not constitute
|
|
| 155 |
financial advice, and past backtested accuracy is not a promise of future
|
| 156 |
performance. Forex and crypto markets are volatile and you can lose money
|
| 157 |
trading them β always do your own research and consider consulting a
|
| 158 |
-
licensed financial advisor before trading real capital.
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Forex Crypto Prediction
|
| 3 |
emoji: π
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# π Forex & Crypto Prediction Dashboard
|
|
|
|
| 154 |
financial advice, and past backtested accuracy is not a promise of future
|
| 155 |
performance. Forex and crypto markets are volatile and you can lose money
|
| 156 |
trading them β always do your own research and consider consulting a
|
| 157 |
+
licensed financial advisor before trading real capital.
|
requirements.txt
CHANGED
|
@@ -8,19 +8,20 @@ numpy>=1.24
|
|
| 8 |
yfinance>=0.2.40
|
| 9 |
|
| 10 |
# --- UI & charts ---
|
|
|
|
| 11 |
plotly>=5.20
|
| 12 |
|
| 13 |
# --- ARIMA ---
|
| 14 |
statsmodels>=0.14
|
| 15 |
|
| 16 |
-
# --- Moirai (Salesforce) ---
|
| 17 |
uni2ts
|
| 18 |
gluonts
|
| 19 |
|
| 20 |
-
# --- TimesFM 2.5 (Google) ---
|
| 21 |
timesfm[torch]
|
| 22 |
|
| 23 |
# --- shared deep-learning backend ---
|
| 24 |
torch
|
| 25 |
einops
|
| 26 |
-
huggingface_hub
|
|
|
|
| 8 |
yfinance>=0.2.40
|
| 9 |
|
| 10 |
# --- UI & charts ---
|
| 11 |
+
gradio>=4.36
|
| 12 |
plotly>=5.20
|
| 13 |
|
| 14 |
# --- ARIMA ---
|
| 15 |
statsmodels>=0.14
|
| 16 |
|
| 17 |
+
# --- Moirai (Salesforce) β https://github.com/SalesforceAIResearch/uni2ts ---
|
| 18 |
uni2ts
|
| 19 |
gluonts
|
| 20 |
|
| 21 |
+
# --- TimesFM 2.5 (Google) β https://github.com/google-research/timesfm ---
|
| 22 |
timesfm[torch]
|
| 23 |
|
| 24 |
# --- shared deep-learning backend ---
|
| 25 |
torch
|
| 26 |
einops
|
| 27 |
+
huggingface_hub
|