2026-02-03 06:39:18 +00:00
# MQL5 Trading Robots
2026-02-03 07:47:34 +00:00
git clone https://github.com/A6-9V/NUNA.git
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
This repository contains a collection of MQL5 trading robots (Expert Advisors).
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
## Robots
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
* **DarkCloud PiercingLine CCI ** : This robot uses the Dark Cloud Cover and Piercing Line candlestick patterns in conjunction with the Commodity Channel Index (CCI) to identify trading opportunities.
* **HangingMan Hammer CCI ** : This robot uses the Hanging Man and Hammer candlestick patterns in conjunction with the Commodity Channel Index (CCI) to identify trading opportunities.
* **DarkCloud PiercingLine RSI ** : This robot uses the Dark Cloud Cover and Piercing Line candlestick patterns in conjunction with the Relative Strength Index (RSI) to identify trading opportunities.
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
## Common Parameters
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
All robots share a common set of input parameters for configuration.
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
### Indicator Parameters
* `InpAverBodyPeriod` : Period for calculating the average candlestick size (default: 12).
* `InpMAPeriod` : Trend MA period (default: 5).
* `InpPrice` : Price type to use for calculations (default: `PRICE_CLOSE` ).
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
### Specific Indicator Parameters
* `InpPeriodCCI` (for CCI-based robots): CCI period (default: 37).
* `InpPeriodRSI` (for RSI-based robots): RSI period (default: 37).
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
### Trade Parameters
* `InpDuration` : Position holding time in bars (default: 10).
* `InpSL` : Stop Loss in points (default: 200).
* `InpTP` : Take Profit in points (default: 200).
* `InpSlippage` : Slippage in points (default: 10).
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
### Money Management
* `InpLot` : Lot size for trades (default: 0.1).
2026-02-03 06:17:08 +00:00
2026-02-03 06:39:18 +00:00
### Expert ID
* `InpMagicNumber` : A unique number to identify trades opened by a specific EA.
* `DarkCloud PiercingLine CCI` : 120500
* `HangingMan Hammer CCI` : 124100
* `DarkCloud PiercingLine RSI` : 120700