mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 03:07:53 +00:00
76df441fbb
✨ CORE ENHANCEMENTS: • Beginner-friendly strategy system with educational framework • ATR-based dynamic risk management with market-adaptive position sizing • Multi-broker support with automatic symbol migration (XM Global optimized) • Advanced crypto trading strategies (SatoshiJakarta & QuantumCrypto bots) • Ultra-conservative XAUUSD protection system preventing account blowouts 🛡️ SAFETY & RISK MANAGEMENT: • Dynamic position sizing based on market volatility (ATR) • Emergency brake system for dangerous trades • Progressive learning path for beginners (Week 1-6 curriculum) • Strategy complexity ratings (2-12 scale) with difficulty-based recommendations • Special gold trading protection with fixed lot sizes 🎓 EDUCATIONAL FEATURES: • Strategy selector with automatic recommendations by experience level • Parameter validation with beginner-safe warnings • Educational explanations for every trading parameter • Market-specific strategy suggestions (FOREX vs GOLD vs CRYPTO) • Complete learning framework from beginner to expert 🔧 TECHNICAL IMPROVEMENTS: • Enhanced backtesting engine with comprehensive history tracking • Quiet logging system (user preference for clean terminal output) • Robust error handling and Windows compatibility fixes • Multi-timeframe analysis support across all strategies • Real-time market data integration with broker detection 📊 NEW STRATEGIES: • QuantumBotX Crypto: Bitcoin-optimized with weekend trading mode • Enhanced Hybrid: Auto-detects crypto vs forex for optimal parameters • Beginner-friendly MA Crossover with educational defaults • Advanced multi-indicator strategies (Mercy Edge, Pulse Sync) 🌐 PLATFORM EXPANSION: • Indonesian market integration planning (XM Indonesia support) • Multi-broker architecture foundation (cTrader, Interactive Brokers) • Comprehensive testing suite with 15+ validation scripts • Professional documentation and troubleshooting guides 📈 BETA READINESS: • Production-grade stability with 4 concurrent trading bots • Professional UI/UX with real-time performance tracking • Comprehensive error handling and user guidance • Windows-optimized deployment with MT5 integration Score: 10/10 Production Ready! 🏆
190 lines
6.7 KiB
Python
190 lines
6.7 KiB
Python
# core/__init__.py
|
|
|
|
import os
|
|
import logging
|
|
from logging.handlers import RotatingFileHandler
|
|
from flask import Flask, render_template, send_from_directory
|
|
from dotenv import load_dotenv
|
|
|
|
class RequestLogFilter(logging.Filter):
|
|
"""Filter untuk menghilangkan noise dari terminal log."""
|
|
def filter(self, record):
|
|
msg = record.getMessage()
|
|
|
|
# Selalu tampilkan log non-HTTP (trading bot activities, errors, dll)
|
|
if not any(x in msg for x in ["GET ", "POST ", "PUT ", "DELETE ", "PATCH "]):
|
|
return True
|
|
|
|
# Selalu tampilkan HTTP errors (4xx, 5xx)
|
|
if any(status in msg for status in [" 4", " 5"]):
|
|
return True
|
|
|
|
# Selalu tampilkan POST, PUT, DELETE (important actions)
|
|
if any(method in msg for method in ["POST ", "PUT ", "DELETE ", "PATCH "]):
|
|
return True
|
|
|
|
# Filter GET requests yang berisik
|
|
noisy_get_paths = [
|
|
# Notification requests (sangat berisik!)
|
|
"GET /api/notifications/unread",
|
|
|
|
# Bot polling requests
|
|
"GET /api/bots/analysis",
|
|
"GET /api/bots/status",
|
|
|
|
# Dashboard polling (hanya jika 200 OK)
|
|
"GET /api/dashboard/stats",
|
|
"GET /api/dashboard/chart-data",
|
|
"GET /api/portfolio/performance",
|
|
|
|
# Market data polling
|
|
"GET /api/forex",
|
|
"GET /api/stocks",
|
|
"GET /api/chart",
|
|
|
|
# Health checks dan favicon
|
|
"GET /api/health",
|
|
"GET /favicon.ico",
|
|
|
|
# Static files
|
|
"GET /static/"
|
|
]
|
|
|
|
# Filter out GET requests yang berisik HANYA jika status 200/304
|
|
if any(path in msg for path in noisy_get_paths):
|
|
if " 200 -" in msg or " 304 -" in msg:
|
|
return False
|
|
|
|
# Tampilkan semua request lainnya (termasuk GET yang error)
|
|
return True
|
|
|
|
# ============================
|
|
# APPLICATION FACTORY FUNCTION
|
|
# ============================
|
|
def create_app():
|
|
"""
|
|
Membuat dan mengkonfigurasi instance aplikasi Flask.
|
|
"""
|
|
load_dotenv()
|
|
|
|
app = Flask(
|
|
__name__,
|
|
instance_relative_config=True,
|
|
template_folder='../templates',
|
|
static_folder='../static'
|
|
)
|
|
app.config['SECRET_KEY'] = os.getenv('SECRET_KEY', 'your-secret-key-here')
|
|
|
|
# Konfigurasi logging yang lebih bersih
|
|
if os.getenv('FLASK_DEBUG', 'false').lower() != 'true':
|
|
log_dir = os.path.join(app.root_path, '..', 'logs')
|
|
os.makedirs(log_dir, exist_ok=True)
|
|
log_file = os.path.join(log_dir, 'app.log')
|
|
file_handler = RotatingFileHandler(log_file, maxBytes=1024 * 1024 * 5, backupCount=5)
|
|
file_handler.setLevel(logging.INFO)
|
|
file_handler.setFormatter(logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s'))
|
|
|
|
app.logger.addHandler(file_handler)
|
|
app.logger.setLevel(logging.INFO)
|
|
|
|
# Filter werkzeug noise secara menyeluruh
|
|
werkzeug_logger = logging.getLogger('werkzeug')
|
|
werkzeug_logger.setLevel(logging.WARNING) # Hanya tampilkan warning dan error
|
|
werkzeug_logger.addFilter(RequestLogFilter())
|
|
|
|
app.logger.info("QuantumBotX dimulai dalam mode PRODUKSI - Log terminal dibersihkan!")
|
|
else:
|
|
# Bahkan dalam debug mode, tetap filter werkzeug noise
|
|
werkzeug_logger = logging.getLogger('werkzeug')
|
|
werkzeug_logger.setLevel(logging.WARNING)
|
|
werkzeug_logger.addFilter(RequestLogFilter())
|
|
|
|
app.logger.info("QuantumBotX dimulai dalam mode DEBUG - Log minimal.")
|
|
|
|
from .routes.api_dashboard import api_dashboard
|
|
from .routes.api_chart import api_chart
|
|
from .routes.api_bots import api_bots
|
|
from .routes.api_profile import api_profile
|
|
from .routes.api_portfolio import api_portfolio
|
|
from .routes.api_history import api_history
|
|
from .routes.api_notifications import api_notifications
|
|
from .routes.api_stocks import api_stocks
|
|
from .routes.api_forex import api_forex
|
|
from .routes.api_fundamentals import api_fundamentals
|
|
from .routes.api_backtest import api_backtest
|
|
|
|
app.register_blueprint(api_dashboard)
|
|
app.register_blueprint(api_chart)
|
|
app.register_blueprint(api_bots)
|
|
app.register_blueprint(api_profile)
|
|
app.register_blueprint(api_portfolio)
|
|
app.register_blueprint(api_history)
|
|
app.register_blueprint(api_notifications)
|
|
app.register_blueprint(api_stocks)
|
|
app.register_blueprint(api_forex)
|
|
app.register_blueprint(api_fundamentals)
|
|
app.register_blueprint(api_backtest)
|
|
|
|
@app.route('/')
|
|
def dashboard():
|
|
return render_template('index.html', active_page='dashboard')
|
|
|
|
@app.route('/trading_bots')
|
|
def bots_page():
|
|
return render_template('trading_bots.html', active_page='trading_bots')
|
|
|
|
@app.route('/bots/<int:bot_id>')
|
|
def bot_detail_page(bot_id):
|
|
return render_template('bot_detail.html', active_page='trading_bots')
|
|
|
|
@app.route('/backtesting')
|
|
def backtesting_page():
|
|
return render_template('backtesting.html', active_page='backtesting')
|
|
|
|
@app.route('/backtest_history')
|
|
def backtest_history_page():
|
|
return render_template('backtest_history.html', active_page='backtesting')
|
|
|
|
@app.route('/portfolio')
|
|
def portfolio_page():
|
|
return render_template('portfolio.html', active_page='portfolio')
|
|
|
|
@app.route('/history')
|
|
def history_page():
|
|
return render_template('history.html', active_page='history')
|
|
|
|
@app.route('/settings')
|
|
def settings_page():
|
|
return render_template('settings.html', active_page='settings')
|
|
|
|
@app.route('/profile')
|
|
def profile_page():
|
|
return render_template('profile.html', active_page='profile')
|
|
|
|
@app.route('/notifications')
|
|
def notifications_page():
|
|
return render_template('notifications.html', active_page='notifications')
|
|
|
|
@app.route('/stocks')
|
|
def stocks_page():
|
|
return render_template('stocks.html', active_page='stocks')
|
|
|
|
@app.route('/forex')
|
|
def forex_page():
|
|
return render_template('forex.html', active_page='forex')
|
|
|
|
@app.errorhandler(404)
|
|
def not_found_error(error):
|
|
return render_template('404.html'), 404
|
|
|
|
@app.errorhandler(500)
|
|
def internal_error(error):
|
|
app.logger.error(f"Internal Server Error: {error}", exc_info=True)
|
|
return render_template('500.html'), 500
|
|
|
|
@app.route('/favicon.ico')
|
|
def favicon():
|
|
return send_from_directory(os.path.join(app.root_path, 'static'),
|
|
'favicon.ico', mimetype='image/vnd.microsoft.icon')
|
|
|
|
return app |