Friends 1
Geester
Added topic Creating Arrows Displays Differently On Multiple Timeframes
Hello there, The title pretty much says it all. I have the following code (I use similar code to add other things to the chart):- void CArrow::_createArrow( datetime time1, double price1)   {    if (_arrowUp)
Geester
Added topic Compilation Question
Hello there, I've just about completed my first MQ4 OOP application that is triggered by an EA and comprises of various different .mqh files, each containing individual class definitions. So far, I'm just running it locally on a demo
Geester
Added topic Invalid Pointer Access - Distilled ...
My earlier similar titled post refers. I've distilled the issue down to the following:- bool CPivotManager::_getPendingHighBefore( datetime priorToTime, datetime &timeFound)   {    int total=_highPivots.Total();   
Geester
Added topic Invalid Pointer Access - But Why?
class CPivotManager : public CObject   {    CObjVector<CPivotCandidate>_highPivots;    ... void CPivotManager::Tidy()   {    for ( int i= 0 ;i<_highPivots.Total();i++)
Geester
Added topic Overloaded = operator in CList subclass. Not getting Total() result
Hello there, Thanks to @nicholishen , I created the following class:- //+------------------------------------------------------------------+
Geester
Added topic Problem using a copy constructor
Hi there, I have a private class variable _confirmedPivots that I use to contain pivots from a different collection (of the same type) that have "confirmed" (by the rules of my methodology). I create a copy of the source CHiLo object (see below)
Geester
Added topic How To Stop Out of Control Experts Tab from Logging?
Hi there, I added some logging code to my EA and due to an ill thought through change, the logging got caught in a tight loop and now, the Experts Tab is spewing out comments. If I shut down MT4 and MT Editor and go back, it keeps on outputting the
Geester
Added topic General Advice Sought For Creating An Indicator. Encapsulated By Classes or Not?
Hi there, I'm new to MT4/MQ4 and have, with some help from this forum, just created a processing class that effectively produces a collection of values for plotting highs/lows on a chart subject to methodology rules.  When I first started
Geester
Added topic Can't get access to internal object member
Hi there, I have a class CHiLoTracker that is instantiated in a method called from an EA's OnInit. Below is a class that I found on this forum. #define SORT_ASCENDING   1 #define SORT_DESCENDING 2 #include <Arrays\ArrayObj.mqh>
Geester
Registered at MQL5.community
123