drl-trading-bot-dev2 / src /brain /__init__.py
DRL Trading Bot
Feature: HTF Agent integration — live trading, API endpoints, UI tab
fc115d5
Raw
History Blame Contribute Delete
274 Bytes
"""
Brain Layer Package
PPO-LSTM agent with self-improvement capabilities.
"""
from .agent import TradingAgent
from .replay_buffer import HighRewardBuffer
from .trainer import SelfImprovementTrainer
__all__ = ['TradingAgent', 'HighRewardBuffer', 'SelfImprovementTrainer']