13 lines
460 B
Python
13 lines
460 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 .data_interface import DataInterface
|
|
from .trading_env import TradingEnvironment
|
|
from .signal_interpreter import SignalInterpreter
|
|
|
|
__all__ = ['DataInterface', 'TradingEnvironment', 'SignalInterpreter'] |