MSLEA – Expert Advisor using Market Structure High/Low – EA MetaTrader 4

MSLEA - Expert Advisor using Market Structure High/Low - expert for MetaTrader 4
MS Lea calculates the last n Local Highs/Lows and waits for a break out. Please see my article at about Local High/Low. We make a long trade if the price moves above the local high. (if the price goes above the green line) We make ashort trade trade if the price goes below the local … Read more

Alphabet structure – script MetaTrader 5

Alphabet structure - script for MetaTrader 5
This structure provides quick access to sets of lowercase and uppercase latin, russian characters, digits, punctuation, brackets, whitespaces, and special sets of symbols after/before which space should be dropped.    Alphabet abc;    /*REPORT*/    Print(“RUSSIAN”);    ArrayPrint(abc.russian.capital.shortitems);    ArrayPrint(abc.russian.capital.stringitems);    ArrayPrint(abc.russian.lowercase.shortitems);    ArrayPrint(abc.russian.lowercase.stringitems);    Print(“LATIN”);    ArrayPrint(abc.latin.capital.shortitems);    ArrayPrint(abc.latin.capital.stringitems);    ArrayPrint(abc.latin.lowercase.shortitems);    ArrayPrint(abc.latin.lowercase.stringitems);    … Read more

Alphabet structure – library MetaTrader 5

Alphabet structure - library for MetaTrader 5
This structure provides quick access to sets of lowercase and uppercase latin, russian characters, digits, punctuation, brackets, whitespaces, and special sets of symbols after/before which space should be dropped. I find this useful in applications where i need to manipulate text data. The Alphabet also contains methods to classify a character/text.    Alphabet abc;    … Read more