Stochastic Oscillator, the beginning - page 14

 

Thank you!

newdigital:
You may use AllStochastics_v2 indicator from this post: https://www.mql5.com/en/forum/177239/page7

For example, there is the settings namely

SmoothMode

and

SignalMode

Which Stochastic do you want to have?

Hull?

Hull is 8:

So, place 8 for SmoothMode.

Or you can place 8 for SignalMode to smooth the signal line.

Wow!! It's great!

Thank you newdigital!!

I love it!

 
fxbs:
DSS_Bressert.mq4

Thanks fxbs. Good discover/post.

 

that's Rosh - how he discovered site (with f-la) ????? no idea

 
fxbs:
that's Rosh - how he discovered (found it (f-la) ?????

TASC

The original code is available for ES, TS. Also was published on TASC January 1991 if my memory does not fail.

 
Linuxser:
TASC The original code is available for ES, TS. Also was published on TASC January 1991 if my memory does not fail.

right, but why "tradesignalonline.com" well, jus messin with you

 

One more for the collection...

Stochastic drawing the "overbought" and "oversold" region Tradestation style

Files:
 
mladen:
One more for the collection : Smoothed adaptive stochastic Originates from : guppytraders metastock version

thank you

......................................

 

Smoothed adaptive stochastic

One more for the collection : Smoothed adaptive stochastic

Originates from : guppytraders metastock version

A suggestion : play with the Max and Min lengths (after all it adapts its length - see the difference for the same thing with smoothings set to 5 and MaxLength set to 50)

 
:: hi! just to let you know about an error... perhaps you have to shorten your limit bars...

"incorrect start position 5045 for ArrayMinimum function"

IN10TION

 

I know about it (a long time ago)

It affects only the calculation of the first loop (when time frame changes or is placed on the chart)

Solution is to put something like this in the code :

limit = MathMin(Bars-counted_bars,Bars-1);

but it does not make any difference in further calculations so I leave it out

IN10TION:
:: hi! just to let you know about an error... perhaps you have to shorten your limit bars...

"incorrect start position 5045 for ArrayMinimum function"

IN10TION

Reason: