Rafal W.
Rafal W.
- Count how many strategies are active. - Improve performance of ProcessTick().
- 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...
- Input: for each mode, generate X (indi param) amount of outputs. - Each line per timeframe. - Refs:
E.g. build: [1858246422](https://github.com/EA31337/EA31337/runs/1858246422?check_suite_focus=true). 
> The backtest report show maximal drawdown is $111.62 But the journal is written as $32.5.   Refs:
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...
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: