Spaces:
No application file
A newer version of the Gradio SDK is available: 6.12.0
title: README
emoji: π
colorFrom: blue
colorTo: gray
sdk: gradio
pinned: false
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.