Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Komut dosyaları

Abiroid Switch Templates Script - MetaTrader 4 için komut dosyası

Görüntülemeler:
665
Derecelendirme:
(1)
Yayınlandı:
2024.08.26 23:39
MQL5 Freelance Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

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 = true;  // Apply New Template to All Charts

Change 1.tpl and 2.tpl and 3.tpl to your template names. There can be spaces between comma and names for easier reading. Template names can also contain spaces. There should be at least 2 templates for switching to happen.

Just make sure these template files exist in your Data Folder/templates folder. Follow above Script installation for more help.

If you need to apply template to your current chart only change ApplyAllCharts to false. If you need to apply to all charts leave it to true.

Right click the script in your navigator and Set Hotkey. Choose any keys you need. Now you can use this shortcut to keep switching templates.


How It Works:


It uses Global Variables to remember which Template was specific to which Chart ID.


If you want to reset everything, just go to Global Variables and delete all vars starting with "AbiroidTemplate":

Select all and Delete:



Error Codes:

Error Code 0: Means no error was returned but something is wrong with MT4. You need to go to Scripts in navigator and right click and press refresh. Or restart MT4.
Error Code 5020: Means template tpl file is not found in your "Data Folder/templates" folder
Trend Strength Index Trend Strength Index

The Trend Strength Index indicator measures strength of current trend.

Detect Friday of The First Week of The Month - To Detect NFP Day Detect Friday of The First Week of The Month - To Detect NFP Day

This code can detect if its a friday of the first week of the month. It is usually to detect days with NFP. Sone trader dont want to trade at that day. Maybe this code can help some one who need it

Rotate TEXT Rotate TEXT

The script creates a text object on the chart that continuously rotates and changes its position based on price levels.

PrevDayLines.mq4 - Draw Previous Day's High, Low, and Average Price Lines PrevDayLines.mq4 - Draw Previous Day's High, Low, and Average Price Lines

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.