I have been using the following to find the most current RSI.:

self.rsi = algo.RSI(symbol, 14, MovingAverageType.Simple, Resolution.Daily)

If I wanted to know what the RSI was  two days ago, how would I modify the above code to find what the RSI was two days ago?

Author