tungman commited on
Commit
cb8039f
Β·
verified Β·
1 Parent(s): 3355b92

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -1
README.md CHANGED
@@ -7,4 +7,66 @@ sdk: gradio
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ AI Trading Signals – Real-Day
11
+
12
+ Forex High/Low Prediction with PyTorch + Gradio
13
+
14
+ πŸš€ Demo of an AI-powered system for forecasting daily high and low prices in Forex markets.
15
+ Built with PyTorch (ConvGRUTransformerHLV10) and deployed with Gradio Web UI.
16
+
17
+ ✨ Features
18
+
19
+ πŸ”Ή Input: OHLC, Tick Volume, Hour, Weekday, Month
20
+
21
+ πŸ”Ή Output: Predicted High & Low
22
+
23
+ πŸ”Ή Model: ConvGRUTransformerHLV10 (PyTorch)
24
+
25
+ πŸ”Ή Interactive Web UI: Powered by Gradio – no setup required
26
+
27
+ πŸš€ How to Use
28
+
29
+ Select a trading symbol (e.g., EURUSDm, GBPUSDm, DXYm, …)
30
+
31
+ Enter Open, High, Low, Close, Tick Volume, Hour, Weekday, Month
32
+
33
+ Click Submit
34
+
35
+ Get Predicted High / Low instantly 🎯
36
+
37
+ πŸ”Œ API Access
38
+
39
+ The model also provides a simple REST API.
40
+
41
+ Endpoint
42
+ POST https://CogoHunter-Real-Day.hf.space/run/predict_signal_gradio
43
+
44
+ Example (Python)
45
+ import requests
46
+
47
+ url = "https://CogoHunter-Real-Day.hf.space/run/predict_signal_gradio"
48
+ payload = {
49
+ "data": ["EURUSDm", 1.17, 1.18, 1.16, 1.175, 12345, 12, 3, 9]
50
+ }
51
+ res = requests.post(url, json=payload).json()
52
+ print(res)
53
+
54
+
55
+ βœ… Example Output:
56
+
57
+ {"data": [1.1823, 1.1642]}
58
+
59
+ πŸ§‘β€πŸ’» About
60
+
61
+ This project is a demo showcase to highlight the potential of AI in financial forecasting.
62
+
63
+ Developer: CogoHunter
64
+
65
+ Tech Stack: PyTorch Β· Gradio Β· HuggingFace Spaces
66
+
67
+ Status: 🟒 Live Demo
68
+
69
+ ⚑ Disclaimer
70
+
71
+ ❗ This model is provided for research and educational purposes only.
72
+ It should not be considered financial advice. Use at your own risk.