거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
스크립트

Prop Firm Rule Checker - MetaTrader 5용 스크립트

ALI RAJPUT
게시자:
Rana Ali
Rana Ali
  • MQL5 Developer & Algorithmic Trading Specialist 에  Freelance
  • 파키스탄
  • 10
Hi, I'm Ali. 24 years old, trading for around 5 years, and developing MQL5/MQL4 tools. I mainly work on automating manual strategies, fixing broken EA logic, and building clean indicators. I care more about clean architecture and proper risk management than over-complicated code. Always down to talk
조회수:
69
평가:
(1)
게시됨:
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
codeProp Firm Rule Checker

A simple diagnostic script that evaluates closed-trade history — from a live/demo account or the Strategy Tester — against the rules typically enforced by proprietary trading firm ("prop firm") evaluation challenges.

Instead of manually calculating drawdown, daily loss, and consistency after every backtest, run this script and get an instant PASS/FAIL breakdown in the Experts/Journal tab.

WHAT IT CHECKS

- Profit Target — did total profit reach the required percentage of starting balance?
- Max Daily Loss — did any single calendar day lose more than the allowed percentage?
- Max Overall Drawdown — how far did the balance drop from its peak, and did it breach the limit?
- Consistency Rule — did any single day generate an outsized share of total profit (a common rule at many firms to prevent one lucky day from carrying the whole challenge)?
- Minimum Trading Days — were enough distinct trading days logged?

HOW TO USE

1. Attach the script to any chart (symbol/timeframe do not matter — it reads deal history, not chart data), or run it right after a Strategy Tester pass.
2. Set the inputs to match the rules of the specific firm/challenge you want to evaluate:
   - InpStartBalance — challenge account size
   - InpProfitTargetPercent — required profit target
   - InpMaxDailyLossPercent — daily loss limit
   - InpMaxTotalDDPercent — overall drawdown limit
   - InpMaxSingleDayPercent — consistency rule threshold
   - InpMinTradingDays — minimum required trading days
   - InpFromDate / InpToDate — the period to evaluate
3. Read the report printed to the Experts/Journal tab. Each rule shows PASS or FAIL, plus an overall verdict.

NOTES

- This is a read-only diagnostic tool. It does not open, modify, or close any trades — it only reads history via HistorySelect().
- Rules vary between prop firms; always confirm the exact numbers from your firm's official rule sheet and set the inputs accordingly. This script does not represent or endorse any specific firm.
- Free to use and modify.
GDS Renko Donchian Demo EA GDS Renko Donchian Demo EA

A small educational Expert Advisor showing how a classic Donchian breakout can be applied directly to completed Renko bricks.

TrueCostReport TrueCostReport

Cost is the one input to a trading system that is knowable exactly, and it is almost always estimated wrongly - always in the direction that flatters the strategy. This EA measures what one round trip really costs on YOUR broker: the live spread sampled from ticks, the swap for both sides including the triple-charge day, and the commission read from your own deals. Most spread figures come from the bar's "spread" field, because that is the easy one to reach. It is a per-bar summary, not the quote at any instant. Measured on XAUUSD: 20 points live across 60 readings against a bar-field median of 6. A factor of 3.3. So a filter set to "skip if spread > 15" never fires - it lets through exactly the moments it exists to block. Swap is the half most custom simulators do not charge at all. It is asymmetric, one side pays while the other collects, and one weekday counts three times. Read-only: it never opens, closes or modifies a position.

Correlation-Aware Lot Size Calculator Correlation-Aware Lot Size Calculator

Sizes your next trade based on the correlated risk you already have open across other positions — not just the trade in isolation.

Risk-Based Lot Size Calculator Risk-Based Lot Size Calculator

A simple MQL5 script that calculates the correct lot size for a trade based on your account risk percentage and stop loss distance in pips, so every trade risks a consistent, controlled amount of your balance.