ZigZag Based on Close PricesThe code is based on indicator ZigZag which is in-built in MT4.
I have changed it so that it isn't calculated on highest Highs and lowest Lows, but instead uses highest Close and lowest Close of chart price history.
See attached chart for differences: ZigZag (red) versus ZigZagClose (yellow).
b-clockShow minutes and seconds left before new candle is appeared.
Grid Template EAGrid Template EA - A ready made expert adviser template to use for further development or use 'as is'
NELODI Trend PainterTrend indicator similar to Ichimoku Kinko Hyo, with a number of drawing options and calculation parameters.
NELODI Trading Terminal for MT5NELODI Trading Terminal is a collection of Indicators and an Expert Advisor, which work together to provide a complete solution for manual Trading, primarily designed for Scalping.
Programming Patters - Builder (classic)Separate the construction of a complex object from its representation so that the same construction process can create different representations.
Basic Rsi Template EAA ready made expert adviser template to use for further development or use 'as is'
Grid Template EAGrid Template EA - A ready made expert adviser template to use for further development or use 'as is'
ZigZag Based on Close PricesThe code is based on indicator ZigZag which is in-built in MT4.
I have changed it so that it isn't calculated on highest Highs and lowest Lows, but instead uses highest Close and lowest Close of chart price history.
See attached chart for differences: ZigZag (red) versus ZigZagClose (yellow).
Programming Patterns - Factory MethodDefine an interface for creating an object, but let subclasses decide which class to instantiate. Lets a class defer instantiation to subclasses.