Files
2026-07-06 03:32:12 +08:00

68 lines
1.7 KiB
JSON

{
"ea_name": "MA Cross Scalper",
"ea_path": "Experts\\\\MA_Cross.ex5",
"description": "Dual MA crossover scalping strategy",
"search_strategy": "grid",
"optimization_criterion": "profit_factor",
"parameters": {
"FastMA_Period": {
"type": "int",
"default": 14,
"min": 5,
"max": 30,
"step": 1,
"description": "Fast MA period"
},
"SlowMA_Period": {
"type": "int",
"default": 50,
"min": 20,
"max": 100,
"step": 5,
"description": "Slow MA period",
"condition": ">FastMA_Period"
},
"StopLoss": {
"type": "int",
"default": 50,
"min": 10,
"max": 200,
"step": 10,
"description": "Stop loss in points"
},
"TakeProfit": {
"type": "int",
"default": 100,
"min": 30,
"max": 300,
"step": 10,
"description": "Take profit in points"
},
"RiskPercent": {
"type": "double",
"default": 1.0,
"min": 0.5,
"max": 3.0,
"step": 0.5,
"precision": 1,
"description": "Risk percentage"
},
"EnableMM": {
"type": "bool",
"default": true,
"description": "Enable money management"
}
},
"test_config": {
"symbol": "EURUSD",
"period": "H1",
"from_date": "2025.01.01",
"to_date": "2025.12.31",
"model": 1,
"deposit": 10000,
"leverage": "1:100"
},
"walk_forward": {
"enabled": false
}
}