Hi I am trying to get the Predict tool and defaults to the UltraSmooth Momentum and I'd like to change it to work
with the Slow Stochastic and I keep getting the error message I've attached. Any ideas on how to do this?
Slow Stochastic and Predict
-
- Posts: 7
- Joined: Sat Jan 06, 2024 8:43 am
- Contact:
Slow Stochastic and Predict
- Attachments
-
- _240117092840.jpg (77.42 KiB) Viewed 10922 times
Re: Slow Stochastic and Predict
Stochastics(slow) is the name of an indicator. Here you would need to use the function instead.
If you look at the QScript of the Stochastics Indicator, it has these parts:
So you would either use slowk(10) or slowd(10) in your predict indicator. (Change out 10 to be the length that you want.)
Edit: PS: Welcome to the club!!
If you look at the QScript of the Stochastics Indicator, it has these parts:
Code: Select all
input:length(14),overbought(70),oversold(30),kcolor(red),
dcolor(blue),zonecolor(green),thickness(1);
plot1=slowk(length);
plot2=slowd(length);
[...]
Edit: PS: Welcome to the club!!
-
- Posts: 7
- Joined: Sat Jan 06, 2024 8:43 am
- Contact:
Re: Slow Stochastic and Predict
Awesome!! Thanks it works.
Who is online
Users browsing this forum: No registered users and 0 guests