1
0
Çatalla 0
şundan çatallanmış rosh/MQL5Book
MQL5BookCopy/Scripts/p6/SymbolMonitor.mq5

19 satır
939 B
MQL5
Ham Kalıcı Bağlantı Normal Görünüm Geçmiş

2025-05-30 16:09:41 +02:00
//+------------------------------------------------------------------+
//| SymbolMonitor.mq5 |
//| Copyright 2022, MetaQuotes Ltd. |
//| https://www.mql5.com |
//| List all symbol properties in the log |
//+------------------------------------------------------------------+
#include "..\..\Include\SymbolMonitor.mqh"
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
SymbolMonitor m;
m.list2log<ENUM_SYMBOL_INFO_INTEGER>();
m.list2log<ENUM_SYMBOL_INFO_DOUBLE>();
m.list2log<ENUM_SYMBOL_INFO_STRING>();
}
//+------------------------------------------------------------------+