EA31337-classes icon indicating copy to clipboard operation
EA31337-classes copied to clipboard

📦📈 EA31337 framework (MQL library for writing trading Expert Advisors, indicators and scripts)

Results 167 EA31337-classes issues
Sort by recently updated
recently updated
newest added

- Create `Indicators/Special/Indi_Diff.mqh` (wrapper for `Indi_Math`). - Modes: 1 - The purpose of it is to calculate differences between mode values. - Parameters: `index1`, `index2`, `shift1`, `shift2`. - By default...

enhancement
high-pri
indicators

- Input: for each mode, generate X (indi param) amount of outputs. - Each line per timeframe. - Refs:

enhancement

E.g. build: [1858246422](https://github.com/EA31337/EA31337/runs/1858246422?check_suite_focus=true). ![image](https://user-images.githubusercontent.com/266306/107283698-a8663600-6a54-11eb-8a76-ae54d9cdde29.png)

enhancement

New `Indicators/Special/Indi_Over.mqh` indicator.

enhancement

> The backtest report show maximal drawdown is $111.62 But the journal is written as $32.5. ![](https://www.forexfactory.com/attachment.php?attachmentid=2834618&d=1528016345) ![](https://www.forexfactory.com/attachment.php?attachmentid=2834624&d=1528016524) Refs:

bug

Currently sl/tp are set on any change. Ideally we should update precision how accurate stop should be set, to avoid too many requests. Relevant code: ``` } else if (_sl...

enhancement

To avoid conflict with indicator enum IDs (ENUM_INDICATOR_TYPE), we can use UUIDs instead. E.g. ``` DictStruct indicators; indicators[Indi_TMA_True::uuid] = new Indi_TMA_True(...); Indicator *_indi_tma = _strat.GetIndicator(Indi_TMA_True::uuid); ``` See:

enhancement
question

Related: EA31337/EA31337/issues/183

enhancement

Refs: https://forextraininggroup.com/comparing-different-types-pivot-points/ You can utilize the existing method CalcPivotPoints() in Chart class. Related: #244

enhancement