PrevDayLines.mq4 – Draw Previous Day’s High, Low, and Average Price Lines – script MetaTrader 4

PrevDayLines.mq4 - Draw Previous Day's High, Low, and Average Price Lines - script for MetaTrader 4
The PrevDayLines.mq4 script is a tool for MetaTrader 4 that automatically draws three critical price levels from the previous trading day on your chart. These levels include the highest price (Max), the lowest price (Min), and the average price (Avg), providing traders with a clear visual reference for key support and resistance points. The script … Read more

Rotate TEXT – script MetaTrader 4

Rotate TEXT - script for MetaTrader 4
The script creates a text object on the chart that continuously rotates and changes its position based on price levels. While running, the text changes color and content depending on its position, adding a dynamic visual element to the chart. This can be particularly useful for traders who want to add annotations or dynamic markers … Read more

Abiroid Switch Templates Script – script MetaTrader 4

Abiroid Switch Templates Script - script for MetaTrader 4
Features: Switch sequentially between multiple Templates (as many as you want) Switch template in current chart OR for all charts Video Tutorial: How to Use: Open mq4 file in Metaeditor. Change the template names with any you like. Template names should be comma separated. extern string Templates = “1.tpl, 2.tpl, 3.tpl”; extern bool   ApplyAllCharts = … Read more

Total Active / Closed orders by order type in MT4 – script MetaTrader 4

Total Active / Closed orders by order type in MT4 - script for MetaTrader 4
There are six different type of active or closed  orders which is  OP_BUY OP_SELL OP_BUYSTOP OP_SELLSTOP OP_BUYLIMIT OP_SELLLIMIT This script will find the count of active /closed orders based on the types Total Active / Closed orders by order type in MT4 – script MetaTrader 4

Close or delete orders based on type in MT4 – script MetaTrader 4

Close or delete orders based on type in MT4 - script for MetaTrader 4
This simple script will close /delete a order based on the input value passed on the script. for example if user pass OP_BUY then it will close all the buy trades. Similarly if someone pass OP_SELL_LIMIT then it will delete all sell limit orders  Close or delete orders based on type in MT4 – script … Read more

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 … Read more