Esta função retorna o menor preço entre duas posições. Ela realiza uma varredura do índice inicial até o índice final, identificando e retornando o preço da menor vela encontrada nesse intervalo.
Function
Section titled “Function” Name: MinLow Copied!
Aliases: MinL Copied!
Parameters
Section titled “Parameters”Representa um inteiro positivo (0 até 4294967295). | startIndex; | // O index da primeira vela de referência. | |
Representa um inteiro positivo (0 até 4294967295). | endIndex; | // O index da ultima vela de referência. | |
Representa um intervalo de tempo: 'CURRENT', 'M1', 'M2', 'M3', 'M4', 'M5', 'M6', 'M10', 'M12', 'M15', 'M20', 'M30', 'H1', 'H2', 'H3', 'H4', 'H6', 'H8', 'H12', 'D1', 'W1', 'MN1'. | timeframe | = CURRENT; | // O tempo gráfico de referência. |
Representa uma sequência de caracteres Unicode. | symbol | = SYMBOL; | // O ativo de referência. |
Examples
Section titled “Examples”//Default example:
MinLow[startIndex, endIndex, timeframe = CURRENT, symbol = SYMBOL]
//Using aliases:
MinL[startIndex, endIndex, timeframe = CURRENT, symbol = SYMBOL]
//Other examples:
MinLow[0, 20]
MinLow[0, 20, M5, "EURUSD"]