mql5/Include/MasterOfPuppetsLib/TradeAction.mqh

23 lines
825 B
MQL5
Raw Permalink Normal View History

2026-03-05 02:12:31 +03:00
//+------------------------------------------------------------------+
//| 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
{
2026-03-05 23:40:04 +03:00
TRADE_ACTION_BUY,
TRADE_ACTION_BUY_LIMIT,
TRADE_ACTION_BUY_STOP,
TRADE_ACTION_SELL,
TRADE_ACTION_SELL_LIMIT,
TRADE_ACTION_SELL_STOP
2026-03-05 02:12:31 +03:00
};
#endif
//+------------------------------------------------------------------+