Daily Opening EA (needs improvement ideas!) – EA MetaTrader 4

Daily Opening EA (needs improvement ideas!) - expert for MetaTrader 4
Obviously looking for ideas to improve! Open to comments and code changes. Message me or reply with your ideas/comments. I’ll implement them as fast as possible and get back to you with the results. The Idea: Using an assortment of indicators, we try to predict the general direction of the next day. In the current … Read more

The scripts for opening long positions – script MetaTrader 5

The scripts for opening long positions - script for MetaTrader 5
These scripts are designed to buy with fixed values of Stop Loss and Take Profit in points from the current price. There are four variants of scripts which can be divided into two groups: Scripts for brokers which have nonzero spread and admit the ability to set Stop Loss and Take Profit simultaneously performing a … Read more

The scripts for opening short positions – script MetaTrader 5

The scripts for opening short positions - script for MetaTrader 5
These scripts are designed to sell with fixed values of Stop Loss and Take Profit in points from the current price. There are four variants of scripts which can be divided into two groups: Scripts for brokers which have nonzero spread and admit the ability to set Stop Loss and Take Profit simultaneously performing a … Read more

Opening and Сlosing on time – EA MetaTrader 5

Opening and Сlosing on time - expert for MetaTrader 5
The EA opens and closes positions at a specified time. Only HH:mm are considered in the inputs (time). Inputs: opening time (only HH:mm are considered) — position open time closing time (only HH:mm are considered) — position close time symbol — traded symbol volume transaction — position volume true -> Buy, false -> Sell — if … Read more

Opening and Сlosing on time v2 – EA MetaTrader 5

Opening and Сlosing on time v2 - expert for MetaTrader 5
The EA opens and closes positions at a specified time. The condition is additionally checked: for Buy —  if the fast iMA on the first bar exceeds the slow iMA                if(iMAGet(handle_iMAFast,1)>iMAGet(handle_iMASlow,1))                  {                   if(!RefreshRates())                      return;                   price=m_symbol.Ask();                   if(Extm_sl>0.0)                      sl=m_symbol.Bid()-Extm_sl;                   if(Extm_tp>0.0)                      tp=m_symbol.Bid()+Extm_tp;                   m_trade.Buy(m_lots,InpSymbol,price,sl,tp);                  } for Sell — if the fast iMA on … Read more

Simplified opening of stop orders – EA MetaTrader 5

panel
The EA is intended for opening orders BuyStop and SellStop. On the panel, you can specify the distance to the order and the lot sizes of Stop Loss and Take Profit. The EA uses the delete button to delete all the pending orders. https://www.mql5.com/ru/code/22674 Simplified opening of stop orders – expert for MetaTrader 5

Expert Advisor for Opening Multiple Buy and Sell Orders Based on User Input – EA MetaTrader 5

Expert Advisor for Opening Multiple Buy and Sell Orders Based on User Input - expert for MetaTrader 5
This Expert Advisor (EA) for MetaTrader 5 (MT5) opens multiple buy and sell orders based on user input. The EA has input variables for the number of buy and sell orders, risk percentage per trade, stop loss, take profit, and slippage. It also includes a simple user interface with Buy and Sell buttons that trigger … Read more