@seanrarey:
I can explain what is happening...
First lets look at the RSI itself. Like i wrote down at the help the RSI indicator is interval based. This means the RSI indicator is using interval based prices as a reference instead of the day based prices. This is the main cause why the RSI indicator responses so fast and why there are 2 indicators inside the st bot.
The RSI stand for Relative Strength Index and it means it gives you a indication to where the currency is going. If the currency is going up then the indicator should go up too. When the currency is dropping the indicator will do down. The interval based RSI uses the last known prices for each calculation. So the RSI-30 uses the last 30 interval prices and the RSI-60 uses 60 interval prices.
I have made some graphs to show you the signal of the RSI bot.
The first graph is the graph of the currency, in this case it is Bitstamp at BtcUsd. The green line is the buy price and the red line is the sell price. The second graph is a graph of the RSI-30 its response. The blue line is the RSI value. The red line (70 = 70%) indicates from where the bot begins to send the signal to sell*. In this case it is at 70 and up. The same applies to the green line, but then its 30% and less. The third graph is one of the RSI-60 bot. Notice the slower response to the currency of the RSI-60 compared to the one of RSI-30.
* ) The sell signal is visible in the logbook as: Sell level reached xx %
Once the RSI indicates the buy or sell signal the trade bot will look to your last prices and wanted drop or raise. The difference is called the "calculated drop" or "calculated raise". This part will also be visible in the logbook as:
RSI-30 Bot: Profit is too low.
Calculated profit -0.19 Usd (without fee) (last buy value 123.6 Usd, current sell price xxxxx Usd).
So this message only shows that if the coins are sold right now, as the RSI indicator wants, then you will be making losses on the trade. So the result is that the trade is blocked until the amount of profit is found too.
Only and only if both signals tell to sell or buy the trade bot will react on it.
BTW These graphs are produced by the software. So what you see here is exactly the response of the software and its calculations.
Your exact problem are your last buy and sell prices and possibly your drop** and profit**. Looking at your entice description i think the sell level is never found. The solution is to lower the last buy or sell prices or to set them to 0.
** ) The need to be multiplied by the trade amount.
I hope this clear up all the questions you have asked.