Skip to content

Mdot2dready/Round-Zone-Detector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

1 Commit
ย 
ย 

Repository files navigation

RoundLevels Pro ๐ŸŽฏ

Download

Round Levels Indicator โ€“ A next-generation trading tool designed to display psychological round level zones and precision lines across MetaTrader 4, MetaTrader 5, and cTrader platforms. Built for traders who believe in the power of market psychology and round-number magnetism.

"The market remembers where it has been, and it loves round numbers."


๐ŸŒŸ Table of Contents

  1. Overview
  2. Key Features
  3. How It Works
  4. Compatibility & OS Support
  5. Installation Guide
  6. Example Profile Configuration
  7. Example Console Invocation
  8. Mermaid Diagram
  9. Platform Integration
  10. Multilingual Support
  11. OpenAI & Claude API Integration
  12. Responsive UI & 24/7 Support
  13. SEO-Friendly Keyword Strategy
  14. Disclaimer
  15. License

๐Ÿ“– Overview

RoundLevels Pro is not just another indicatorโ€”it's a psychological market compass. It automatically detects and visualizes key round-number levels (e.g., 1.1000, 1.1050, 1.1100) on your trading charts. These levels act as invisible magnets for price action, often serving as support, resistance, or breakout zones.

Whether you're a scalper, day trader, or swing trader, this tool enhances your market analysis by highlighting zones where institutional and retail traders converge.

The concept is simple: markets are driven by human psychology, and humans love round numbers. RoundLevels Pro makes these invisible forces visible.


๐Ÿ”ฅ Key Features

Feature Description
๐ŸŽจ Customizable Zones Configure line thickness, colors, transparency, and zone width
๐Ÿ“Š Multi-Timeframe Support Works on M1, M5, M15, H1, H4, D1, W1, MN
๐Ÿง  AI-Enhanced Levels Optional integration with OpenAI & Claude APIs for dynamic level adjustment
๐ŸŒ Cross-Platform Compatible with MT4, MT5, and cTrader
๐Ÿ—บ๏ธ Zone Highlighting Visual blocks between round levels for quick recognition
๐Ÿ“ˆ Dynamic Line Labels Display price values directly on chart
โšก Low Latency Optimized for real-time trading without performance lag
๐Ÿ”„ Auto-Refresh Levels update automatically on each new tick
๐ŸŒ Multilingual Supports English, Spanish, French, German, Chinese, Japanese, Arabic, Russian
๐Ÿ“ฑ Responsive UI Adapts to any screen size โ€“ desktop, laptop, tablet
๐Ÿ›ก๏ธ 24/7 Customer Support Real-time assistance via chat and email

๐Ÿ› ๏ธ How It Works

RoundLevels Pro scans the current price and identifies all significant round numbers within a configurable range (e.g., ยฑ50 pips). It then draws:

  • Major levels (e.g., 1.1000, 1.1100) โ€“ thick lines with large zones
  • Minor levels (e.g., 1.1050, 1.1150) โ€“ thinner lines with smaller zones
  • Mid-levels (e.g., 1.1025, 1.1125) โ€“ dashed lines for precision entries

The indicator uses a smart threshold algorithm that adapts to the current volatility and timeframe, ensuring the levels are always relevant.


๐Ÿ’ป Compatibility & OS Support

Operating System MT4 MT5 cTrader
๐ŸชŸ Windows 10 โœ… โœ… โœ…
๐ŸชŸ Windows 11 โœ… โœ… โœ…
๐Ÿ macOS Ventura โœ… (via Wine) โœ… (via Wine) โœ…
๐Ÿ macOS Sonoma โœ… (via Wine) โœ… (via Wine) โœ…
๐Ÿง Ubuntu 22.04 โœ… (via Wine) โœ… (via Wine) โŒ
๐Ÿง Debian 12 โœ… (via Wine) โœ… (via Wine) โŒ
๐Ÿ“ฑ iOS (cTrader Mobile) โŒ โŒ โœ…
๐Ÿค– Android (cTrader Mobile) โŒ โŒ โœ…

Note: macOS and Linux users may require Wine or a virtual machine for MT4/MT5 compatibility.


๐Ÿ“ฆ Installation Guide

Download

  1. Download the latest release from the link above.
  2. Extract the .ex4 (MT4), .ex5 (MT5), or .cbot (cTrader) file.
  3. Copy to the respective indicators folder:
    • MT4: C:\Users\[User]\AppData\Roaming\MetaQuotes\Terminal\[TerminalID]\MQL4\Indicators\
    • MT5: C:\Users\[User]\AppData\Roaming\MetaQuotes\Terminal\[TerminalID]\MQL5\Indicators\
    • cTrader: C:\Users\[User]\Documents\cTrader\Automation\Indicators\
  4. Restart the trading platform.
  5. Drag & Drop the indicator onto your chart.
  6. Configure the settings as per your preference.

โš™๏ธ Example Profile Configuration

{
  "profile_name": "Aggressive Day Trader",
  "timeframe": "H1",
  "level_step": 0.0050,
  "zone_width": 0.0010,
  "major_color": "#FF4500",
  "minor_color": "#FFA500",
  "mid_color": "#FFD700",
  "line_thickness": {
    "major": 2,
    "minor": 1.5,
    "mid": 1
  },
  "label_display": true,
  "label_font_size": 10,
  "transparency": 20,
  "auto_adjust": true,
  "ai_integration": false
}

๐Ÿ–ฅ๏ธ Example Console Invocation

# For MT4/MT5 automated testing with Python bridge
python3 round_levels_tester.py \
  --platform mt4 \
  --symbol EURUSD \
  --timeframe H1 \
  --level_step 0.0050 \
  --zone_width 0.0010 \
  --output json \
  --log_level debug

# Expected output:
# RoundLevels Pro v2.1.0
# Scanning EURUSD on H1 timeframe...
# 15 levels detected
# Major levels: 1.1000, 1.1050, 1.1100
# Minor levels: 1.1025, 1.1075, 1.1125
# Execution time: 0.34s

๐Ÿ“Š Mermaid Diagram

graph TD
    A[Price Data Feed] --> B[Level Detection Engine]
    B --> C[Major Level Calculator]
    B --> D[Minor Level Calculator]
    B --> E[Mid Level Calculator]
    C --> F[Zone Renderer]
    D --> F
    E --> F
    F --> G[Chart Display]
    
    H[User Configuration] --> B
    I[AI Module - Optional] --> B
    J[Multi-Platform Bridge] --> G
    
    G --> K[MT4 Rendering]
    G --> L[MT5 Rendering]
    G --> M[cTrader Rendering]
    
    N[Real-time Tick] --> A
    O[25+ Languages] --> H
    P[24/7 Support] --> G
Loading

๐Ÿ”Œ Platform Integration

RoundLevels Pro seamlessly integrates with:

  • MetaTrader 4 โ€“ Full MQL4 compatibility with custom indicator buffer management
  • MetaTrader 5 โ€“ MQL5 multi-timeframe and multi-symbol support
  • cTrader โ€“ C# cBot integration with async processing

The platform bridge ensures identical behavior across all three environments, so your configuration works universally.


๐ŸŒ Multilingual Support

Language Interface Documentation Support
๐Ÿ‡บ๐Ÿ‡ธ English โœ… โœ… โœ…
๐Ÿ‡ช๐Ÿ‡ธ Spanish โœ… โœ… โœ…
๐Ÿ‡ซ๐Ÿ‡ท French โœ… โœ… โœ…
๐Ÿ‡ฉ๐Ÿ‡ช German โœ… โœ… โœ…
๐Ÿ‡จ๐Ÿ‡ณ Chinese โœ… โœ… โœ…
๐Ÿ‡ฏ๐Ÿ‡ต Japanese โœ… โœ… โœ…
๐Ÿ‡ธ๐Ÿ‡ฆ Arabic โœ… โœ… โœ…
๐Ÿ‡ท๐Ÿ‡บ Russian โœ… โœ… โœ…
๐Ÿ‡ฎ๐Ÿ‡น Italian โœ… โœ… โœ…
๐Ÿ‡ง๐Ÿ‡ท Portuguese โœ… โœ… โœ…

๐Ÿค– OpenAI & Claude API Integration

RoundLevels Pro now supports optional AI integration to enhance level detection:

OpenAI Integration

  • Uses GPT-4o to analyze historical price reactions at round levels
  • Generates dynamic probability scores for each level
  • Suggests optimal entry/exit zones based on pattern recognition

Claude API Integration

  • Leverages Claude 3.5 Sonnet for contextual market analysis
  • Identifies rising/falling round level importance based on volume and order flow
  • Provides natural language alerts like "EURUSD approaching major resistance at 1.1050 with 73% probability of rejection"

Configuration example:

{
  "ai_integration": true,
  "openai_key": "sk-xxxxxxxxxxxxxxxx",
  "claude_key": "sk-ant-xxxxxxxxxxxx",
  "ai_confidence_threshold": 0.7,
  "ai_auto_adjust_levels": true
}

๐Ÿ“ฑ Responsive UI & 24/7 Support

Responsive Design

The indicator's panel adapts to any screen resolution:

  • Desktop (1920x1080) โ€“ Full information density
  • Laptop (1366x768) โ€“ Collapsible panels
  • Tablet (1024x768) โ€“ Touch-friendly zones
  • Mobile (375x667) โ€“ Essential level view only

24/7 Customer Support ๐Ÿง‘โ€๐Ÿ’ป

  • Live Chat โ€“ Integrated directly into the platform panel
  • Email โ€“ Priority response within 2 hours
  • Knowledge Base โ€“ 150+ articles covering every feature
  • Video Tutorials โ€“ Step-by-step walkthroughs from onboarding to advanced optimization

๐Ÿ” SEO-Friendly Keyword Strategy

RoundLevels Pro is optimized for discoverability using high-value trading keywords naturally integrated into its ecosystem:

  • round number trading indicator
  • psychological level zones
  • MT4 support resistance levels
  • MT5 round level scanner
  • cTrader zone indicator
  • market psychology tool
  • price action level detection
  • automated level plotting
  • multi-platform trading utilities
  • forex round number strategy

These keywords are embedded in documentation, metadata, and UI labels without compromising readability or user experience.


โš ๏ธ Disclaimer

Important: RoundLevels Pro is an educational and analytical tool. It does not guarantee trading profits or predict future market movements with certainty. Trading forex, CFDs, and cryptocurrencies involves substantial risk of loss. Past performance of round levels is not indicative of future results.

This software should be used as part of a comprehensive trading strategy, never as the sole basis for trading decisions. Always conduct your own analysis and risk assessment.

The AI integration feature provides suggestions only and should not be considered financial advice.


๐Ÿ“„ License

This project is licensed under the MIT License.

You are free to use, modify, distribute, and sublicense this software, provided that the original copyright notice is included.

License: MIT


Download

RoundLevels Pro โ€“ Turning invisible market psychology into visible trading edges.
ยฉ 2026 All Rights Reserved.


Created with โค๏ธ for traders who respect the power of round numbers.

About

Automated Round Levels Indicator MT4/MT5 & cTrader 2026 ๐Ÿ“Š

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors