11 lines
331 B
Python
11 lines
331 B
Python
"""
|
|
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'] |