23 lines
825 B
MQL4
23 lines
825 B
MQL4
//+------------------------------------------------------------------+
|
|
//| TradeAction.mqh |
|
|
//| Copyright 2026, MasterOfPuppets |
|
|
//| https://forge.mql5.io/masterofpuppets/mql5 |
|
|
//+------------------------------------------------------------------+
|
|
#ifndef MASTER_OF_PUPPETS_LIB_TRADE_ACTION_MQH
|
|
#define MASTER_OF_PUPPETS_LIB_TRADE_ACTION_MQH
|
|
|
|
#property copyright "Copyright 2026, MasterOfPuppets"
|
|
#property link "https://forge.mql5.io/masterofpuppets/mql5"
|
|
|
|
enum TradeAction
|
|
{
|
|
TRADE_ACTION_BUY,
|
|
TRADE_ACTION_BUY_LIMIT,
|
|
TRADE_ACTION_BUY_STOP,
|
|
TRADE_ACTION_SELL,
|
|
TRADE_ACTION_SELL_LIMIT,
|
|
TRADE_ACTION_SELL_STOP
|
|
};
|
|
|
|
#endif
|
|
//+------------------------------------------------------------------+
|