Rafal W.
Rafal W.
Refs: https://forextraininggroup.com/comparing-different-types-pivot-points/ You can utilize the existing method CalcPivotPoints() in Chart class. Related: #244
Refs: - https://www.moneycontrol.com/news/business/markets/how-to-use-money-flow-index-mfi-indicator-for-profitable-trading-3574341.html 
- File: `Indi_Gator.mqh` - Method: `GetEntry()` Lines: ``` _entry.value.SetValue(params.dtype, (double) NULL, LINE_UPPER_HISTCOLOR); _entry.value.SetValue(params.dtype, (double) NULL, LINE_LOWER_HISTCOLOR); ``` See: `ENUM_GATOR_COLOR` We need to compare in MT5 which colors are associated with...
New BufferFXT class to store and export OHCL data. Required features: - [ ] Save OHCL struct entries using DictStruct - [ ] Export to file (`yyyymmdd-yyyymmdd.hst` based on the...
New BufferFXT class to store and export tick data. For example, we're going to save ticks with the following code: ``` void OnTick() { MqlTick _tick = SymbolInfo::GetTick(_Symbol); ticks.Add(_tick); }...