//+------------------------------------------------------------------+ //| IndicatorResources.mqh | //| AnimateDread | //| | //| How this EA addresses the indicators it does not compute itself. | //| | //| There used to be a WARRIOR_CI(name) macro here that switched | //| between an embedded #resource path and a bare name, because the | //| MQL5 Market build had to ship one self-contained .ex5. That build | //| is gone (2026-08-23) and the macro expanded to its own argument, | //| so it is gone with it - a switch with one position is not a | //| switch. The five AD indicators are named at their call sites in | //| Features.mqh and load from \Indicators\ at call time. | //+------------------------------------------------------------------+ #ifndef WARRIOR_INDICATOR_RESOURCES_MQH #define WARRIOR_INDICATOR_RESOURCES_MQH //--- The ZigZag that ships with every MetaTrader install, addressed by its path under MQL5\Indicators\. //--- Loading MetaQuotes' own copy means any fix they make arrives without a rebuild here; our //--- ZigZag was a byte-identical rename of it. #define WARRIOR_STOCK_ZIGZAG "Examples\\ZigZag" #endif // WARRIOR_INDICATOR_RESOURCES_MQH