Rafal W.
Rafal W.
@chrisdk2015 It's already implemented. Check `ENUM_REASON_TYPE` in `ea-enums.mqh`. Existing conditions: ``` enum ENUM_REASON_TYPE { ... R_EQUITY_50PC_HIGH = C_EQUITY_50PC_HIGH, // Equity 50% high. R_EQUITY_20PC_HIGH = C_EQUITY_20PC_HIGH, // Equity 20% high. R_EQUITY_10PC_HIGH...
We can add another one for 1% or 5%, if won't help, putting it into variable may also work. But adding separate param controlling only one condition could be confusing,...
Related PRs: - GH-521 - GH-567
Current workaround. In Advanced or Rider, you can try to set Signal open filter to 8, this filter won't open trades when there are already opposite active trades (hedging). However...
I think it's a MT5 platform issue. It's finding the right path for indicator .mq5 files, but it got problem compiling it, despite you've solved the dependencies with includes. My...
Repro steps: 1. Change [`MaxOrdersPerType`](https://github.com/EA31337/EA31337/blob/b3b02ec6e60c2d3e68979ed3c12f2d411e0759d4/src/include/EA31337/advanced/ea-input.mqh#L22). 2. Test whether user changes are applied.
Thanks for the report. - Can you share some of the errors that you're getting in _Journal log_? - Can you give some broker examples which doesn't support Hedging and...
Are you running with the default settings? It could only happen when you set lot size too large. Set 'Lot size' to '0' in EA's parameters, if it's already, otherwise...
- `1000` value for lot size is wrong, so there is some EA's miscalculation based on the broker's market values. - error code 136 sounds like related to _Off quotes_...
> It is still doing multiple orders. Is there a way i can make it only deal with one order at a time? That filter is per each strategy, try...