0
Views
0
Downloads
0
Favorites
s_WaveMarker_DeleteAll.mq4
//+------------------------------------------------------------------+
//| s_WaveMarker_DeleteAll.mq4 |
//| * |
//| * |
//+------------------------------------------------------------------+
#property copyright "Integer"
#property link "for-good-letters@yandex.ru"
//+------------------------------------------------------------------+
//| script program start function |
//+------------------------------------------------------------------+
int start()
{
//----
for(int i = ObjectsTotal() - 1; i >= 0; i--)
{
if(StringFind(ObjectName(i), "WM(", 0) == 0)
{
ObjectDelete(ObjectName(i));
}
}
//----
return(0);
}
//+------------------------------------------------------------------+
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---