Author: Copyright 2024, MetaQuotes Ltd.
0 Views
0 Downloads
0 Favorites
DeleteObj
//+------------------------------------------------------------------+
//|                                                    DeleteObj.mq5 |
//|                                  Copyright 2023, MetaQuotes Ltd. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2024, MetaQuotes Ltd."
#property link      "https://www.mql5.com"
#property version   "1.00"
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
  {
      ObjectsDeleteAll(ChartID());
  }
//+------------------------------------------------------------------+

Comments