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

Refs: - https://www.moneycontrol.com/news/business/markets/how-to-use-money-flow-index-mfi-indicator-for-profitable-trading-3574341.html ![image](https://user-images.githubusercontent.com/266306/77258033-dd686f00-6c6f-11ea-8257-e38341b61147.png)

enhancement

- 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...

enhancement

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...

enhancement

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); }...

enhancement

Branch: `dev-cpp-support`

enhancement
C++

Branch: `dev-cpp-support`

enhancement
C++

Branch: `dev-cpp-support`

enhancement
C++

Branch: `dev-cpp-support`

enhancement
C++

Adds `GetPointer()` method for `Object` class for non-MQL compilers. Example error: ``` Object.mqh:120:45: error: use of undeclared identifier 'GetPointer' return StringFormat("[Object #%04x]", GetPointer(this)); ``` Refs: - https://www.mql5.com/en/docs/common/getpointer

enhancement
C++

Class: `String` ``` ./../String.mqh:100:19: error: use of undeclared identifier 'StringGetCharacter' ushort usep = StringGetCharacter("\n", 0); ^ ``` Refs: - https://www.mql5.com/en/docs/strings/stringgetcharacter

enhancement
C++