-
Notifications
You must be signed in to change notification settings - Fork 786
Closed
Labels
enhancementIssue describing or discussing an enhancement for this libraryIssue describing or discussing an enhancement for this libraryquestion
Description
Hello,
I am trying to build Stochastic RSI indicator. In StochasticRSI there are K, D, Rsi and Stochastic parameters.
I want build StochRSI(14, 9, 3, 3):
- RSI = 14
- Stoch = 9
- K = 3
- D = 3
StochasticOscillatorKIndicator k = new StochasticOscillatorKIndicator(series, 3);
StochasticOscillatorDIndicator d = new StochasticOscillatorDIndicator(k);
RSIIndicator rsi = new RSIIndicator(d, 14); // I think it's wrong
StochasticRSIIndicator stochRsi = new StochasticRSIIndicator(rsi, 9);
Result of the stochRsi calculation is totally wrong when compare to result with exchange's graphs.
How can I construct StochasticRSIIndicator properly?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementIssue describing or discussing an enhancement for this libraryIssue describing or discussing an enhancement for this libraryquestion