diff --git a/Indicators/MyIndicators/KeltnerChannel_Pro.mq5 b/Indicators/MyIndicators/KeltnerChannel_Pro.mq5 index 5dd0ad7..a0195f4 100644 --- a/Indicators/MyIndicators/KeltnerChannel_Pro.mq5 +++ b/Indicators/MyIndicators/KeltnerChannel_Pro.mq5 @@ -38,27 +38,6 @@ //--- CORRECTED: The ENUM_ATR_SOURCE is now defined inside the include file. --- //--- No need to declare it here again. --- -//--- Custom Enum for Price Source, including Heikin Ashi --- -enum ENUM_APPLIED_PRICE_HA_ALL - { -//--- Heikin Ashi Prices (negative values for easy identification) - 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 (using built-in ENUM_APPLIED_PRICE values) - 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 group "Middle Line (MA) Settings" input int InpMaPeriod = 20;