From 738ecd723bfcd1f203c3724326642333223170bc Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Sun, 18 Jan 2026 16:18:03 +0100 Subject: [PATCH] new files added --- .../Laguerre_Cyber_Cycle_Pro.mq5 | 117 ++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/Laguerre_Cyber_Cycle_Pro.mq5 diff --git a/Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/Laguerre_Cyber_Cycle_Pro.mq5 b/Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/Laguerre_Cyber_Cycle_Pro.mq5 new file mode 100644 index 0000000..fe1d7c5 --- /dev/null +++ b/Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/Laguerre_Cyber_Cycle_Pro.mq5 @@ -0,0 +1,117 @@ +//+------------------------------------------------------------------+ +//| Laguerre_Cyber_Cycle_Pro.mq5 | +//| Copyright 2026, xxxxxxxx| +//+------------------------------------------------------------------+ +#property copyright "Copyright 2026, xxxxxxxx" +#property version "1.00" +#property description "Laguerre Cyber Cycle. Uses a standard Laguerre Filter for" +#property description "pre-smoothing before applying the Cyber Cycle algorithm." + +#property indicator_separate_window +#property indicator_buffers 2 +#property indicator_plots 2 + +//--- Plot 1: Cycle Line +#property indicator_label1 "Cycle" +#property indicator_type1 DRAW_LINE +#property indicator_color1 clrDodgerBlue +#property indicator_style1 STYLE_SOLID +#property indicator_width1 1 + +//--- Plot 2: Signal Line +#property indicator_label2 "Signal" +#property indicator_type2 DRAW_LINE +#property indicator_color2 clrOrangeRed +#property indicator_style2 STYLE_DOT +#property indicator_width2 1 + +#property indicator_level1 0.0 + +#include + +//--- Input Parameters +input group "Laguerre Pre-Filter" +input double InpGamma = 0.7; // Laguerre Gamma +input ENUM_APPLIED_PRICE_HA_ALL InpSourcePrice = PRICE_MEDIAN_STD; // Price Source + +input group "Cyber Cycle Settings" +input double InpAlpha = 0.07; // Cyber Cycle Alpha + +//--- Buffers +double BufferCycle[]; +double BufferSignal[]; + +//--- Global Object +CLaguerreCyberCycleCalculator *g_calculator; + +//+------------------------------------------------------------------+ +//| OnInit | +//+------------------------------------------------------------------+ +int OnInit() + { + SetIndexBuffer(0, BufferCycle, INDICATOR_DATA); + SetIndexBuffer(1, BufferSignal, INDICATOR_DATA); + ArraySetAsSeries(BufferCycle, false); + ArraySetAsSeries(BufferSignal, false); + +//--- Factory Logic + if(InpSourcePrice <= PRICE_HA_CLOSE) + g_calculator = new CLaguerreCyberCycleCalculator_HA(); + else + g_calculator = new CLaguerreCyberCycleCalculator(); + +//--- Initialize + if(CheckPointer(g_calculator) == POINTER_INVALID || + !g_calculator.Init(InpGamma, InpAlpha)) + { + Print("Failed to initialize Laguerre Cyber Cycle Calculator."); + return(INIT_FAILED); + } + +//--- Shortname + string type = (InpSourcePrice <= PRICE_HA_CLOSE) ? " HA" : ""; + IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("Laguerre Cyber Cycle%s(%.2f, %.2f)", type, InpGamma, InpAlpha)); + + PlotIndexSetInteger(0, PLOT_DRAW_BEGIN, 10); + PlotIndexSetInteger(1, PLOT_DRAW_BEGIN, 11); + IndicatorSetInteger(INDICATOR_DIGITS, 2); + + return(INIT_SUCCEEDED); + } + +//+------------------------------------------------------------------+ +//| OnDeinit | +//+------------------------------------------------------------------+ +void OnDeinit(const int reason) + { + if(CheckPointer(g_calculator) != POINTER_INVALID) + delete g_calculator; + } + +//+------------------------------------------------------------------+ +//| OnCalculate | +//+------------------------------------------------------------------+ +int OnCalculate(const int rates_total, + const int prev_calculated, + const datetime &time[], + const double &open[], + const double &high[], + const double &low[], + const double &close[], + const long &tick_volume[], + const long &volume[], + const int &spread[]) + { + if(rates_total < 10) + return(0); + + ENUM_APPLIED_PRICE price_type = (InpSourcePrice <= PRICE_HA_CLOSE) ? + (ENUM_APPLIED_PRICE)(-(int)InpSourcePrice) : + (ENUM_APPLIED_PRICE)InpSourcePrice; + + g_calculator.Calculate(rates_total, prev_calculated, price_type, open, high, low, close, + BufferCycle, BufferSignal); + + return(rates_total); + } +//+------------------------------------------------------------------+