Understanding Default Inputs, Portfolio Deployment & .SET File Philosophy
Introduction
MSX AI Multi Image Scalper was initially designed as a multi-symbol portfolio buying and selling framework reasonably than a single-chart Professional Advisor.
The system can function on a single chart, however its full structure was developed to help a number of impartial EA cases working concurrently throughout totally different symbols, timeframes, and buying and selling instructions inside the identical MetaTrader 5 account.
Typical deployments might embody:
• XAUUSD BUY Engine
• XAUUSD SELL Engine
• BTCUSD BUY Engine
• BTCUSD SELL Engine
• USTEC BUY Engine
• USTEC SELL Engine
and extra charts as much as 16 impartial EA cases or extra, relying on account dimension, obtainable margin, dealer situations, and danger goals.
Necessary Notice About Default Inputs
The default enter values included with the EA are deliberately conservative.
Their major objective is:
• MetaTrader set up security
• MQL5 Market validation compliance
• Preliminary performance testing
• Demonstration of EA structure
The default settings ought to NOT be thought of optimized buying and selling settings.
In lots of circumstances, working the EA utilizing default values might not mirror the supposed portfolio deployment mannequin or the efficiency traits of a correctly configured setup.
Customers are strongly inspired to:
• Be taught the enter structure
• Create their very own configuration
• Or use professionally ready .set recordsdata
in accordance with their account dimension, image choice, danger tolerance, and buying and selling goals.
About Included .SET Recordsdata
As a part of the EA bundle, one full portfolio deployment configuration could also be supplied freed from cost primarily based on the creator’s default technique framework.
These reference .set recordsdata are supposed as a place to begin and academic instance.
Relying on the chosen deployment mannequin, they could embody configurations for:
• Single chart operation
• Multi-symbol operation
• BUY-only deployments
• SELL-only deployments
• Portfolio configurations as much as 16 impartial EA cases
Customized .SET File Service
Some merchants require specialised configurations.
Examples embody:
• Prop agency challenges
• Copy buying and selling techniques
• Sign supplier accounts
• Conservative capital preservation
• Aggressive progress methods
• Dealer-specific optimization
• Customized image portfolios
As a result of these tasks require extra design, testing, danger balancing, and deployment planning, personalized .set recordsdata could also be provided as a separate paid service.
Service availability, complexity, and pricing might fluctuate relying on workload and challenge necessities.
QUICK INPUT REFERENCE GUIDE
The aim of this part is to supply a quick clarification of each obtainable enter.
Future weblog posts will talk about every part in better element.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
GENERAL SETTINGS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_MagicNumber = 20260700
Distinctive identifier utilized by the EA to handle its personal positions.
Inp_TradeComment = “MSX AI Multi Image Scalper”
Commerce remark connected to positions for identification.
Inp_DebugMode = false
Allows detailed inner occasion logging.
Inp_OneTradePerTrend = false
Restricts buying and selling to at least one place per pattern when enabled.
Enable_Hard_Reversal_Exit = true
Closes positions when a confirmed reverse pattern seems.
Enable_Soft_Reversal_Exit = false
Permits earlier exits when pattern power weakens.
Allow_Pullback_ReEntry = false
Permits new entries after reversal exits when enabled.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TRADE DIRECTION CONTROL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_TradeBothSide = true
Permits each BUY and SELL buying and selling.
Inp_TradeOnlyBuy = false
Restricts buying and selling to BUY positions solely.
Inp_TradeOnlySell = false
Restricts buying and selling to SELL positions solely.
Inp_InstanceTag = “DEFAULT”
Offers distinctive identification for particular person EA cases.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SPREAD & SLIPPAGE CONTROL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_Use_MaxSpread = false
Allows unfold filtering when true.
Inp_MaxSpreadPoints = 500
Most allowed unfold earlier than entries are blocked.
Inp_Use_MaxSlippage = false
Allows slippage safety.
Inp_MaxSlippagePts = 30
Most permitted execution deviation.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
LOT SIZING & MONEY MANAGEMENT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_LotMode = LOT_FIXED
Selects Fastened Lot or Threat % sizing.
Inp_FixedLot = 0.01
Fastened quantity used when Fastened Lot mode is energetic.
Inp_RiskPercent = 1.0
Proportion of capital risked per commerce.
Inp_MaxLotCap = 0.10
Most allowed lot dimension no matter calculation.
Inp_FreeMarginReservePct = 30.0
Reserves a proportion of free margin for security.
Inp_MinMarginLevelPct = 150.0
Minimal projected margin degree required earlier than entry.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
MASTER SMOOTHED HMA SETTINGS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_HMA_Period = 14
Main Hull Transferring Common interval.
Inp_HMA_Smooth = 3
Further smoothing utilized to HMA calculations.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
HYBRID HEIKEN ASHI SETTINGS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_DS_Period = 2
Controls Heiken Ashi smoothing sensitivity.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SUPERTREND SETTINGS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ST_Use_HeikinAshi_Source = true
Makes use of Heiken Ashi costs inside SuperTrend calculations.
HA_SourcePrice = PRICE_MEDIAN
Defines worth supply used for Heiken Ashi calculations.
ATRPeriod = 5
ATR interval utilized by the SuperTrend engine.
Multiplier = 1.5
SuperTrend sensitivity multiplier.
SourcePrice = PRICE_MEDIAN
Value supply utilized by the SuperTrend engine.
Use_ATR_Spike_Filter = true
Filters irregular volatility spikes.
Spike_ATR_Fraction = 1.20
Minimal ATR growth required for spike filtering.
Show_Trend_Strength = false
Shows pattern power info when enabled.
ST_Min_Reversal_Strength = 0.7
Minimal power required for SuperTrend reversal.
Use_Reversal_Strength_Filter = false
Allows extra reversal high quality filtering.
Min_Reversal_Strength = 0.4
Minimal reversal power threshold.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
STOP LOSS & TAKE PROFIT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_Use_ATR_SLTP = false
Makes use of ATR-based dynamic stops when enabled.
Inp_ATR_Period = 14
ATR interval used for dynamic cease calculations.
Inp_ATR_SL_Mult = 3.0
ATR multiplier for Cease Loss.
Inp_ATR_TP_Mult = 9.0
ATR multiplier for Take Revenue.
Inp_Fixed_SL_Points = 15000
Fastened Cease Loss distance in factors.
Inp_Fixed_TP_Points = 30000
Fastened Take Revenue distance in factors.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TRADE MANAGEMENT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_Use_PartialClose = false
Allows partial revenue taking.
Inp_Partial_Trigger_Pct = 25.0
Revenue proportion required earlier than partial shut prompts.
Inp_MaxCloseRatio = 50.0
Most proportion of place quantity closed.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
CAPITAL PROTECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_Use_PerTrade_Loss = false
Allows per-trade loss safety.
Inp_MaxLoss_Percent = 2.0
Most allowed floating loss per commerce.
Inp_Use_Daily_Loss = false
Allows each day loss safety.
Inp_Daily_Loss_Pct = 6.0
Most each day loss threshold.
Inp_Use_Daily_Profit = false
Allows each day revenue lock.
Inp_Daily_Profit_Pct = 3.0
Each day revenue goal proportion.
Inp_Use_Max_Drawdown = true
Allows drawdown safety.
Inp_Max_Drawdown_Pct = 6.0
Most allowable drawdown.
Inp_Use_Master_Daily_Loss = false
Prompts account-wide each day loss safety.
Inp_Master_Daily_Loss_Pct = 10.0
Grasp account each day loss threshold.
Inp_Use_Master_Daily_Profit = false
Prompts account-wide each day revenue goal.
Inp_Master_Daily_Profit_Pct = 5.0
Grasp account each day revenue threshold.
Inp_Use_Master_Drawdown = false
Prompts account-wide drawdown safety.
Inp_Master_Drawdown_Pct = 10.0
Most account-wide drawdown allowed.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
MULTI-SESSION CONTROL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_Block_New_Trade_Near_Session_End = false
Blocks new entries close to session shut.
Inp_Session_End_Block_Minutes = 15
Minutes earlier than session finish when entries cease.
Inp_ClosePositionAtSessionEnd = false
Closes positions when buying and selling session ends.
Inp_Session_Tokyo_Enable = true
Allows Tokyo buying and selling session.
Inp_Session_Tokyo_Start = “00:15”
Tokyo session begin time.
Inp_Session_Tokyo_End = “09:00”
Tokyo session finish time.
Inp_Session_London_Enable = true
Allows London buying and selling session.
Inp_Session_London_Start = “09:00”
London session begin time.
Inp_Session_London_End = “17:00”
London session finish time.
Inp_Session_NewYork_Enable = true
Allows New York buying and selling session.
Inp_Session_NewYork_Start = “17:00”
New York session begin time.
Inp_Session_NewYork_End = “20:45”
New York session finish time.
Inp_Session_Other_Enable = true
Allows customized session.
Inp_Session_Other_Start = “20:45”
Customized session begin time.
Inp_Session_Other_End = “21:45”
Customized session finish time.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
WEEKEND PROTECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Inp_Weekend_Filter_Enable = false
Prompts weekend safety system.
Inp_Friday_Weekend_Protection_Start = “20:45”
Time when weekend safety begins.
Inp_Weekend_Entry_Block_Minutes = 15
Minutes earlier than safety begin the place entries are blocked.
Inp_Sunday_Resume_Trading = “21:45”
Time when buying and selling resumes after weekend opening.
Remaining Notes
This weblog serves as a quick-reference information for the entire enter structure of MSX AI Multi Image Scalper.
Future weblog posts will clarify every part in better element, together with:
• Portfolio deployment examples
• Threat allocation fashions
• BUY/SELL engine separation
• Capital safety structure
• Multi-symbol portfolio development
• Advisable deployment constructions from 1 to 16 EA cases
Understanding the aim of every enter is step one towards constructing a steady and disciplined automated buying and selling portfolio.
