gbeced/basana

how to use a recursive indicators in any strategy

wangadeketan opened this issue · 1 comments

Hi @gbeced,

Can you please guide us on how to use a recursive indicators in any strategy.

Sample Implementation

self._rsi = RSI(period=21)
self._sma_of_rsi = SMA(self._rsi, period=15)

I want to calculate the sma from the RSI values.

gbeced commented

As mentioned in the docs homepage:

Basana doesn’t ship with technical indicators. The examples take advantage of TALIpp which is a good fit for event driven and real time applications, but you’re free to use any other library that you prefer.

I'd recommend to ask this question on TALipp or whatever library you're using.
Last, but not least, the next time please use the discussions area for questions.