Estoy buscando una biblioteca de indicadores de AT en python, que ofrezca indicadores que se puedan actualizar con ticks, en contraste con los indicadores que realizan cálculos en un conjunto de datos completo.
Por ejemplo, un indicador RSI permitiría algo así:
rsi_ind = RSI(period=14)
# add a tick
rsi_ind.feed_tick(tick)
# add several ticks as list
rsi_ind.feed_ticks(ticks)
# we get the current value
value = rsi_ind.get_value()
# add another tick
rsi_ind.feed_tick(tick)
# we get new current value
value = rsi_ind.get_value()
¿Existe una biblioteca de este tipo y es recomendable? Gracias.