mql5/Experts/MasterOfPuppets/DefendModifier.mqh
2026-03-03 01:42:02 +03:00

22 lines
1.1 KiB
MQL5

//+------------------------------------------------------------------+
//| DefendModifier.mqh |
//| Copyright 2026, MasterOfPuppets |
//| https://forge.mql5.io/masterofpuppets/mql5 |
//+------------------------------------------------------------------+
#include <MasterOfPuppetsLib\Modifier.mqh>
#include <MasterOfPuppetsLib\TradeContext.mqh>
#property copyright "Copyright 2026, MasterOfPuppets"
#property link "https://forge.mql5.io/masterofpuppets/mql5"
//+------------------------------------------------------------------+
//| DefendModifier Modifier class |
//+------------------------------------------------------------------+
class DefendModifier : public Modifier
{
public:
DefendModifier(const TradeContext *srcTradeContext, const bool withExpert = false)
: Modifier(srcTradeContext, withExpert) {}
void Modify() override;
};
//+------------------------------------------------------------------+