MQL5Book/Scripts/p5/ScriptNoComment.mq5

25 lines
1,009 B
MQL5
Raw Permalink Normal View History

2025-05-30 16:09:41 +02:00
//+------------------------------------------------------------------+
//| ScriptNoComment.mq5 |
//| Copyright 2021, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property description "Clean up comments in the upper left corner of the current chart"
/*
Uncomment one of the next lines to see
how it enforces confirmation message box or
properties dialog during start-up
*/
//#property script_show_confirm
//#property script_show_inputs
input string Text = "";
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
Comment(Text);
}
//+------------------------------------------------------------------+