mirror of
https://github.com/umaiskhan-ops/ApexFX-High-Fidelity-Quant-Ecosystem..git
synced 2026-08-06 23:37:45 +00:00
116 lines
3.1 KiB
Plaintext
116 lines
3.1 KiB
Plaintext
ApexFX/
|
|
├── analysis/
|
|
│ ├── __init__.py
|
|
│ ├── market_microstructure.py
|
|
│ └── microstructure_analyzer.py
|
|
│
|
|
├── backtesting/
|
|
│ ├── __init__.py
|
|
│ ├── advanced_backtester.py
|
|
│ └── advanced_metrics.py
|
|
│
|
|
├── brokers/
|
|
│ ├── __init__.py
|
|
│ ├── base.py
|
|
│ ├── exness_mt5.py
|
|
│ └── mt5_controller.py
|
|
│
|
|
├── config/
|
|
│ ├── __init__.py
|
|
│ ├── accuracy_optimization.json
|
|
│ ├── backtest_config.json
|
|
│ ├── model_config.json
|
|
│ ├── runtime_config.json
|
|
│ └── settings.json
|
|
│
|
|
├── core/
|
|
│ ├── __init__.py
|
|
│ ├── adaptive_risk_manager.py
|
|
│ ├── cache_manager.py
|
|
│ ├── data_handler.py
|
|
│ ├── data_validator.py
|
|
│ ├── equity_protection.py
|
|
│ ├── error_handler.py
|
|
│ ├── execution_engine.py
|
|
│ ├── hft_optimizer.py
|
|
│ ├── historical_data_manager.py
|
|
│ ├── logger.py
|
|
│ ├── market_data.py
|
|
│ ├── market_regime_detector.py
|
|
│ ├── onchain_analyzer.py
|
|
│ ├── performance_tracker.py
|
|
│ ├── position_manager.py
|
|
│ ├── risk_engine.py
|
|
│ ├── signal_engine.py
|
|
│ ├── smart_order_router.py
|
|
│ └── state.py
|
|
│
|
|
├── deployment/
|
|
│ ├── __init__.py
|
|
│ ├── aws_deploy.py
|
|
│ └── cloud_config.py
|
|
│
|
|
├── features/
|
|
│ ├── __init__.py
|
|
│ └── quantitative_features.py
|
|
│
|
|
├── logs/
|
|
│
|
|
├── models/
|
|
│ ├── __init__.py
|
|
│ ├── ensemble_predictor.py
|
|
│ ├── feature_engineering.py
|
|
│ ├── model_trainer.py
|
|
│ ├── quantum_ml.py
|
|
│ └── rl_agent.py
|
|
│
|
|
├── monitoring/
|
|
│ ├── __init__.py
|
|
│ ├── dashboard.html
|
|
│ └── real_time_dashboard.py
|
|
│
|
|
├── news/
|
|
│ ├── __init__.py
|
|
│ ├── advanced_sentiment.py
|
|
│ ├── economic_calendar.py
|
|
│ ├── event_detector.py
|
|
│ ├── sentiment_analyzer.py
|
|
│ └── social_sentiment.py
|
|
│
|
|
├── optimization/
|
|
│ ├── __init__.py
|
|
│ ├── genetic_optimizer.py
|
|
│ └── portfolio_optimizer.py
|
|
│
|
|
├── risk/
|
|
│ ├── __init__.py
|
|
│ ├── correlation_manager.py
|
|
│ ├── monte_carlo_simulator.py
|
|
│ └── var_calculator.py
|
|
│
|
|
├── scripts/
|
|
│ ├── __init__.py
|
|
│ └── deploy_production.py
|
|
│
|
|
├── security/
|
|
│ ├── __init__.py
|
|
│ ├── api_rate_limiter.py
|
|
│ └── encryption.py
|
|
│
|
|
├── strategies/
|
|
│ ├── __init__.py
|
|
│ ├── deep_learning_strat.py
|
|
│ ├── multi_timeframe_analyzer.py
|
|
│ ├── reinforcement_learning_agent.py
|
|
│ ├── retail_strategies.py
|
|
│ ├── signal_filter.py
|
|
│ ├── signal_schema.py
|
|
│ ├── strategy_selector.py
|
|
│ └── talib_fallback.py
|
|
│
|
|
├── tests/
|
|
│
|
|
├── decision_engine.py
|
|
├── README.md
|
|
└── requirements.txt
|