SimpleVolumesExpert

Author: Copyright 2024, Yuriy Bykov
1 Views
0 Downloads
0 Favorites
SimpleVolumesExpert
ÿþ//+------------------------------------------------------------------+

//|                                          SimpleVolumesExpert.mq5 |

//|                                      Copyright 2024, Yuriy Bykov |

//|                            https://www.mql5.com/ru/users/antekov |

//+------------------------------------------------------------------+

#property copyright "Copyright 2024, Yuriy Bykov"

#property link "https://www.mql5.com/ru/articles/14246"

#property description "The Advisor opens a market or pending order at the moment,"

#property description "when the tick volume of the candle exceeds the average volume in the direction of the current candle."

#property description "If the orders have not yet turned into positions, they are deleted at the expiration time."

#property description "Open positions are closed only by SL or TP."



//+------------------------------------------------------------------+

//| Expert initialization function |

//+------------------------------------------------------------------+

int OnInit() {

// Full code see in the archive Articles.en.zip



   return(INIT_SUCCEEDED);

}



//+------------------------------------------------------------------+

//| Expert tick function |

//+------------------------------------------------------------------+

void OnTick() {

}

//+------------------------------------------------------------------+

Comments

Markdown supported. Formatting help

Markdown Formatting Guide

Element Markdown Syntax
Heading # H1
## H2
### H3
Bold **bold text**
Italic *italicized text*
Link [title](https://www.example.com)
Image ![alt text](image.jpg)
Code `code`
Code Block ```
code block
```
Quote > blockquote
Unordered List - Item 1
- Item 2
Ordered List 1. First item
2. Second item
Horizontal Rule ---