Forex Prediction Singlestep Daily
Prediction daily high low price
Time series forecast
AI Trading Signals โ Real-Day
Forex High/Low Prediction with PyTorch + Gradio
๐ Demo of an AI-powered system for forecasting daily high and low prices in Forex markets. Built with PyTorch (ConvGRUTransformerHLV10) and deployed with Gradio Web UI.
โจ Features
๐น Input: OHLC, Tick Volume, Hour, Weekday, Month
๐น Output: Predicted High & Low
๐น Model: ConvGRUTransformerHLV10 (PyTorch)
๐น Interactive Web UI: Powered by Gradio โ no setup required
๐ How to Use
Select a trading symbol (e.g., EURUSDm, GBPUSDm, DXYm, โฆ)
Enter Open, High, Low, Close, Tick Volume, Hour, Weekday, Month
Click Submit
Get Predicted High / Low instantly ๐ฏ
๐ API Access
The model also provides a simple REST API.
Endpoint POST https://CogoHunter-Real-Day.hf.space/run/predict_signal_gradio
Example (Python) import requests
url = "https://CogoHunter-Real-Day.hf.space/run/predict_signal_gradio" payload = { "data": ["EURUSDm", 1.17, 1.18, 1.16, 1.175, 12345, 12, 3, 9] } res = requests.post(url, json=payload).json() print(res)
โ Example Output:
{"data": [1.1823, 1.1642]}
๐งโ๐ป About
This project is a demo showcase to highlight the potential of AI in financial forecasting.
Developer: CogoHunter
Tech Stack: PyTorch ยท Gradio ยท HuggingFace Spaces
Status: ๐ข Live Demo
โก Disclaimer
โ This model is provided for research and educational purposes only. It should not be considered financial advice. Use at your own risk.