Place Hedge Order of unbalanced positions in MT4 – script MetaTrader 4

Place Hedge Order of unbalanced positions in MT4 - script for MetaTrader 4
This script calculates the total unbalanced postion of hedged or non hedged postions and then place hedge trades accordingly. Example  trader places 0.01 lot then 0.02 lot buy trade if then try to run the script , it will place 0.03 lot sell trade if again a sell trade is placed of lot size 0.05

Positions Change Informer – EA MetaTrader 5

Positions Change Informer
The Expert Advisor doesn’t generate the deals independently, but is a “helper” designed to control positions’ state. This Expert Advisor is a kind of a simplified variation of the Expert Advisor described in the article about processing of the events, with the difference that the OnTradeTransaction() function is used and there is a processing of

Сlose positions by result, time passed or at specific time – EA MetaTrader 4

Сlose positions by result, time passed or at specific time - expert for MetaTrader 4
Description: This EA will watch your open positions and close the ones that meet the preset conditions. You can filter positions by: Magic Number By side: Short or Long By result By time: for how long are opened It can be used for hidden Stop Loss and Take Profit as well. Recommendations: Please note: EA

1 Click Button To Close All Open Positions – EA MetaTrader 4

1 Click Button To Close All Open Positions - expert for MetaTrader 4
Click “Close All” button to close all your open positions (regardless of the pair) at once. This new version doesn’t contain the code written below that previous versions had which may cause an infinite loop. if(checkOrderClose==false) continue; but instead brings an error control system to prevent an infinite loop while still closing all trades. if(checkOrderClose

1 Click To Close All Open Positions at Current Attached Chart – EA MetaTrader 4

1 Click To Close All Open Positions at Current Attached Chart - expert for MetaTrader 4
Click “Close All” button to close all your open positions at current attached chart. Select CloseOnlyManualTrades = true to close only manual trades. Select CloseOnlyManualTrades = false to close manual trades and/or other trades opened by an Expert Advisor. This new version doesn’t contain the code written below that previous versions had which may cause