Finalize EA architecture before strategy development

This commit is contained in:
peter
2026-06-07 16:32:51 -04:00
parent fff49ea9da
commit c88216db03
11 changed files with 1512 additions and 375 deletions
+11
View File
@@ -13,4 +13,15 @@ enum E_SIGNAL
SIGNAL_SELL = -1 // Sell signal
};
struct TradeSetup
{
E_SIGNAL signal;
double entryPrice;
double stopLoss;
double takeProfit;
double riskDistance;
double atrValue;
string reason;
};
#endif //__SIGNAL_MQH__