# Initial RSI: 100- (100/(1+(avg up move/avg down move))) # RSI: 100- (100/(1+((previous average up x 13 + current up move)/(previous average down move x 13 + current ...
A simple RSI technical indicator example programmed in Python. This program was based on an old video tutorial on YouTube by @NeuralNine that needed to be updated to work. Full credit to @NeuralNine ...