forked from animatedread/Warrior_EA
Replace old ATR_MULTIPLIER, THRESHOLDS_PRESET enums with new STOP_LOSS_MODE, TAKE_PROFIT_MODE, AI_EXIT_MODE enums that support ATR-based, intelligent confidence-scaled, and swing-anchored modes. Also fix LSTM signal identity string.
10 lines
No EOL
571 B
MQL5
10 lines
No EOL
571 B
MQL5
//+------------------------------------------------------------------+
|
|
//| Trailing.mqh |
|
|
//| AnimateDread |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "AnimateDread"
|
|
#property link "https://www.mql5.com"
|
|
#include <Expert\Trailing\TrailingNone.mqh>
|
|
#include "..\Trailing\TrailingATR.mqh"
|
|
#include "..\Trailing\TrailingIntelligent.mqh" |