new realt module

This commit is contained in:
Dobromir Popov
2025-03-25 12:48:58 +02:00
parent 9e81e86b1c
commit 114ced03b7
9 changed files with 1055 additions and 0 deletions

11
NN/utils/__init__.py Normal file
View File

@ -0,0 +1,11 @@
"""
Neural Network Utilities
======================
This package contains utility functions and classes used in the neural network trading system:
- Data Interface: Connects to realtime trading data and processes it for the neural network models
"""
from NN.utils.data_interface import DataInterface
__all__ = ['DataInterface']