From f4631a5866cb67ae0f348348a06bbd05746fe407 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Fri, 24 Oct 2025 16:55:03 +0200 Subject: [PATCH] refactor: ENUM_APPLIED_PRICE_HA_ALL --- .../MyIndicators/Bollinger_Bands_PercentB.mq5 | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/Indicators/MyIndicators/Bollinger_Bands_PercentB.mq5 b/Indicators/MyIndicators/Bollinger_Bands_PercentB.mq5 index 8bb4756..990132c 100644 --- a/Indicators/MyIndicators/Bollinger_Bands_PercentB.mq5 +++ b/Indicators/MyIndicators/Bollinger_Bands_PercentB.mq5 @@ -25,27 +25,6 @@ #property indicator_style1 STYLE_SOLID #property indicator_width1 1 -//--- Custom Enum for Price Source, including Heikin Ashi -enum ENUM_APPLIED_PRICE_HA_ALL - { -//--- Heikin Ashi Prices - PRICE_HA_CLOSE = -1, - PRICE_HA_OPEN = -2, - PRICE_HA_HIGH = -3, - PRICE_HA_LOW = -4, - PRICE_HA_MEDIAN = -5, - PRICE_HA_TYPICAL = -6, - PRICE_HA_WEIGHTED = -7, -//--- Standard Prices - PRICE_CLOSE_STD = PRICE_CLOSE, - PRICE_OPEN_STD = PRICE_OPEN, - PRICE_HIGH_STD = PRICE_HIGH, - PRICE_LOW_STD = PRICE_LOW, - PRICE_MEDIAN_STD = PRICE_MEDIAN, - PRICE_TYPICAL_STD = PRICE_TYPICAL, - PRICE_WEIGHTED_STD = PRICE_WEIGHTED - }; - //--- Input Parameters --- input int InpPeriod = 20; input double InpDeviation = 2.0;