Chart Patterns
Reference
Indicators.renko
— Method.Renko chart patterns
Methods
- Traditional (Constant Box Size):
renko(x::Array{Float64}; box_size::Float64=10.0)::Array{Int}
- ATR Dynamic Box Size:
renko(hlc::Matrix{Float64}; box_size::Float64=10.0, use_atr::Bool=false, n::Int=14)::Array{Int}
Output
Array{Int}
object of size Nx1 (where N is the number rows in x
) where each element gives the Renko bar number of the corresponding row in x
.