Posts

Showing posts from March, 2026

In soft

 # ============================================ # MY QUANT BOT - Phase 18 (SMC Edition) # Full professional entry system: # 1. Multi-timeframe bias (4H + 1H + 15M) # 2. Smart Money Concepts (FVG, BOS, CHOCH) # 3. Liquidity sweep detection # 4. Smart position scaling # 5. Full entry confirmation flow # 6. Everything from Phase 17 still works # ============================================ import os import time import json import numpy as np import MetaTrader5 as mt5 import pandas as pd import requests from dotenv import load_dotenv from sklearn.ensemble import RandomForestClassifier from sklearn.preprocessing import StandardScaler from datetime import datetime, timezone # --- Load credentials --- load_dotenv() LOGIN    = int(os.getenv("MT5_LOGIN")) PASSWORD = os.getenv("MT5_PASSWORD") SERVER   = os.getenv("MT5_SERVER") # --- Pairs to trade --- SYMBOLS = ["EURUSDm", "GBPUSDm", "XAUUSDm"] # --- Timeframes --- TIMEFRAME_M5  = mt5.T...