We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The stochasticfull index is different from the KDJ index of common stock software
stock software RSV1:=(CLOSE-LLV(LOW,55))/(HHV(HIGH,55)-LLV(LOW,55))*100; GSQR3:SMA(RSV1,5,1),COLOR0000FF; GSQR4:SMA(GSQR3,10,1),COLOR00FF00;
python self.kd2 = bt.indicators.StochasticFull(self.data, period=55, period_dfast=5, period_dslow=10)
The curve is wrong
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The stochasticfull index is different from the KDJ index of common stock software
stock software
RSV1:=(CLOSE-LLV(LOW,55))/(HHV(HIGH,55)-LLV(LOW,55))*100;
GSQR3:SMA(RSV1,5,1),COLOR0000FF;
GSQR4:SMA(GSQR3,10,1),COLOR00FF00;
python
self.kd2 = bt.indicators.StochasticFull(self.data, period=55, period_dfast=5, period_dslow=10)
The curve is wrong
The text was updated successfully, but these errors were encountered: