Licensing class and script with 256bit Encryption – script MetaTrader 5

Licensing class and script with 256bit Encryption - script for MetaTrader 5
This class loads a licensing file by reading 256bit encrypted account data from a license file into an account array for the purpose of licensing. The Class is initialised with a Filename, a Master Key and whether the file needs to be saved in the common folders or not. Important Methods: m_Write(string m_Acc  = “”, … Read more

Licensing class and script with 64bit Encryption (more Reliable) – library MetaTrader 5

Licensing class and script with 64bit Encryption (more Reliable) - library for MetaTrader 5
This class loads a licensing file by reading 64bit encrypted account data from a license file into an account array for the purpose of licensing. (256 bit Encryption method I last posted, fails decryption on certain strings hence why this method more reliable) The Class is initialised with a Filename, a Master Key (m_hkey -> can … Read more

ChartButton Class MT5 – EA MetaTrader 5

ChartButton Class MT5 - expert for MetaTrader 5
This class allows you to create buttons on the chart as if they were chart objects(have time and price coordinates) these objects can be dragged on the chart and when scrolling they stay at the same place. If you wan’t to learn some Object Oriented Programming or if you wan’t to understand how chartevents work … Read more

Signals and Probability class – library MetaTrader 5

Signals and Probability class - library for MetaTrader 5
The provided code is an MQL include file and an Expert Advisor demonstrating how the classes work.It implements a trading strategy based on various technical indicators and trend analysis. The script defines several custom classes to create and manage trading signals based on different technical conditions. Trend Class : This class is responsible for determining the … Read more

Probability and Signals class – library MetaTrader 4

Probability and Signals class - library for MetaTrader 4
The provided code is an MQL include file and an Expert Advisor demonstrating how the classes work.It implements a trading strategy based on various technical indicators and trend analysis. The script defines several custom classes to create and manage trading signals based on different technical conditions. Trend Class : This class is responsible for determining … Read more