Add standard file headers to custom library files
This commit is contained in:
@@ -1,3 +1,13 @@
|
||||
//+------------------------------------------------------------------+
|
||||
//| AtrBands.mqh |
|
||||
//| Calculates and visualizes ATR-based dynamic bands |
|
||||
//| |
|
||||
//| 2025 xMattC (github.com/xMattC) |
|
||||
//+------------------------------------------------------------------+
|
||||
#property copyright "2025 xMattC (github.com/xMattC)"
|
||||
#property link "https://github.com/xMattC"
|
||||
#property version "1.00"
|
||||
|
||||
#include <MyLibs/Utils/MarketDataUtils.mqh>
|
||||
#include <MyLibs/Utils/AtrHandleManager.mqh>
|
||||
|
||||
|
||||
@@ -1,11 +1,15 @@
|
||||
//+------------------------------------------------------------------+
|
||||
//| TrendlineAnalyser.mqh |
|
||||
//| Detects price crossovers and trend direction for a ma buffer |
|
||||
//| |
|
||||
//| 2025 xMattC (github.com/xMattC) |
|
||||
//+------------------------------------------------------------------+
|
||||
#property copyright "2025 xMattC (github.com/xMattC)"
|
||||
#property link "https://github.com/xMattC"
|
||||
#property version "1.00"
|
||||
|
||||
#include <MyLibs/Utils/MarketDataUtils.mqh>
|
||||
|
||||
// ---------------------------------------------------------------------
|
||||
// CLASS: TrendlineAnalyser
|
||||
// ---------------------------------------------------------------------
|
||||
// A utility class to detect price crossovers with a trendline buffer.
|
||||
// Supports both crossover detection and trend direction checks.
|
||||
// ---------------------------------------------------------------------
|
||||
class TrendlineAnalyser {
|
||||
private:
|
||||
MarketDataUtils market_data_utils;
|
||||
|
||||
Reference in New Issue
Block a user