From bb11cf3bec2e1f016359dc9755970e2137935ab4 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Sat, 25 Oct 2025 19:52:13 +0200 Subject: [PATCH] new files added --- .../Stochastic_Roofing_Slow_Pro.mq5 | 83 +++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 Indicators/MyIndicators/Stochastic_Roofing_Slow_Pro.mq5 diff --git a/Indicators/MyIndicators/Stochastic_Roofing_Slow_Pro.mq5 b/Indicators/MyIndicators/Stochastic_Roofing_Slow_Pro.mq5 new file mode 100644 index 0000000..f7b605d --- /dev/null +++ b/Indicators/MyIndicators/Stochastic_Roofing_Slow_Pro.mq5 @@ -0,0 +1,83 @@ +//+------------------------------------------------------------------+ +//| Stochastic_Roofing_Slow_Pro.mq5 | +//| Copyright 2025, xxxxxxxx| +//+------------------------------------------------------------------+ +#property copyright "Copyright 2025, xxxxxxxx" +#property version "1.00" +#property description "Slow Stochastic pre-filtered with John Ehlers' Roofing Filter." + +#property indicator_separate_window +#property indicator_buffers 2 +#property indicator_plots 2 +#property indicator_label1 "%K" +#property indicator_type1 DRAW_LINE +#property indicator_color1 clrDodgerBlue +#property indicator_label2 "%D" +#property indicator_type2 DRAW_LINE +#property indicator_color2 clrOrangeRed +#property indicator_style2 STYLE_DOT +#property indicator_minimum 0 +#property indicator_maximum 100 +#property indicator_level1 20.0 +#property indicator_level2 80.0 + +#include + +//--- Input Parameters --- +input group "Roofing Filter Settings" +input int InpHighPassPeriod = 48; +input int InpSuperSmootherPeriod = 10; +input group "Stochastic Settings" +input int InpKPeriod = 20; +input int InpDPeriod = 3; +input int InpSlowing = 3; +input group "Source Settings" +input ENUM_APPLIED_PRICE_HA_ALL InpSourcePrice = PRICE_CLOSE_STD; + +//--- Buffers --- +double BufferK[], BufferD[]; +//--- Global object --- +CStochasticRoofingCalculator *g_calculator; + +//+------------------------------------------------------------------+ +int OnInit() + { + SetIndexBuffer(0, BufferK, INDICATOR_DATA); + SetIndexBuffer(1, BufferD, INDICATOR_DATA); + ArraySetAsSeries(BufferK, false); + ArraySetAsSeries(BufferD, false); + + if(InpSourcePrice <= PRICE_HA_CLOSE) + g_calculator = new CStochasticRoofingCalculator_HA(); + else + g_calculator = new CStochasticRoofingCalculator(); + + if(CheckPointer(g_calculator) == POINTER_INVALID || !g_calculator.Init(InpHighPassPeriod, InpSuperSmootherPeriod, InpKPeriod, InpDPeriod, InpSlowing, STOCH_SLOW)) + { + Print("Failed to initialize Stochastic Roofing Calculator."); + return(INIT_FAILED); + } + IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("StochRoof Slow(%d,%d)", InpHighPassPeriod, InpKPeriod)); + return(INIT_SUCCEEDED); + } +//+------------------------------------------------------------------+ +//| | +//+------------------------------------------------------------------+ +void OnDeinit(const int reason) { if(CheckPointer(g_calculator) != POINTER_INVALID) delete g_calculator; } +//+------------------------------------------------------------------+ +//| | +//+------------------------------------------------------------------+ +int OnCalculate(const int rates_total, const int, const datetime&[], const double &open[], const double &high[], const double &low[], const double &close[], const long&[], const long&[], const int&[]) + { + if(CheckPointer(g_calculator) == POINTER_INVALID) + return 0; + ENUM_APPLIED_PRICE price_type; + if(InpSourcePrice <= PRICE_HA_CLOSE) + price_type = (ENUM_APPLIED_PRICE)(-(int)InpSourcePrice); + else + price_type = (ENUM_APPLIED_PRICE)InpSourcePrice; + g_calculator.Calculate(rates_total, price_type, open, high, low, close, BufferK, BufferD); + return(rates_total); + } +//+------------------------------------------------------------------+ +//+------------------------------------------------------------------+