SellVolumeOpen
Esta função retorna o volume total combinado de todas as posições e ordens de venda abertas, considerando os filtros fornecidos.
Parâmetros
| symbol | = REAL; | // Símbolo do ativo. | |
| magic | = MAGIC; | // Número mágico para filtrar as operações. | |
| candle | = -1; | // Índice da vela de inicio (-1 para todas). | |
| timeframe | = CURRENT; | // Tempo gráfico. |
Exemplos
1//Default example:
2SellVolumeOpen[symbol = REAL, magic = MAGIC, candle = -1, timeframe = CURRENT]
3
4//Using aliases:
5SVolO[symbol = REAL, magic = MAGIC, candle = -1, timeframe = CURRENT]
6
7//Other examples
8SellVolumeOpen["ITUB4", 123456, -1, W1]