Stochastic Oscillator, the beginning - page 29

 

!

Look at all the false signals stochastics give

 

Colored slow stochastic like this above. Help will be appreciate

I saw it. It needs some modifications.

Would some one be kind to code a colored slow stochastic indicator

which will look exactly as the above joined picture ?

best regards

efi

 

Colored Slow Stochastic like that above

I know it gives some false signals. It needs some modifications.

But yet....

I'll appreciate if someone coull'd bring up

a colored slow stochastic indicator which will look like the one in the above pic attached.

best regards

Efi

 

Need help finding this kind of colored stochastic - Above

Like the one above (in the pic i've attached above).

 

sto diff modes

(for histo & arrows set line modes to false)

 
efig:
Would some one be kind enough to code a colored slow stochastic indicator which will look exactly as the here joined picture ?

That the color of D% , change matching the direction of D%

(up-green down-red)

Best regards

efi

slight mod of Mladen's color sto 104

if clrLnModeMain = true,- color sto main ln; false sig ln

if showBars = true -histo

p.s lines doesn't hold colors very well, unless it specially programed - (complicated way); simple way - here, but don't trust colors too much, trust direction itself, before making trading decision always check (if colors are correct)

histo - no problem

 

Thank you very much FXBS.

 

Forex_Freedom_Bar_ x MODE_MTF.mq4 (eli)

Modes = "1CCI 2RSI 3 STOchastic 4MACD 5OsMA";

20090309 update

FX_Freedom_Bar_xMODEm_MTF.mq4

momentum added

BarMode = "1CCI 2RSI 3STO 4MACD 5OsMA 6MOM";

---------------

2009 - +sar

"1CCI 2MACD 3OsMA 4MOM 5RSI 6SAR 7STO" ;

 

CciStoch indicator

Hi all,

I am looking for cci stoch combo indicator. Any of you have this one? I got something about its code. Actually it would be grateful if making into mq4 format.

Thank you

Type : Indicator, Name : CCI - Stochastic

{Average(3,(Today's 14-day CCI reading - Lowest 14-day CCI reading

(over the past 5 periods)/Highest 14-day

CCI reading (over the past 5 periods) - Lowest 14-day CCI reading

(over the past 5 periods))*100)

CCI-Stochastic}

inputs:

CCILength( 14 ),

HighLowPeriod( 5 ),

Smooth( 3 ) ;

variables:

TodayCCI( 0 ),

TodayLowCCI( 0 ),

TodayHighCCI( 0 ),

CCISto( 0 ) ;

TodayCCI = CCI( CCILength ) ;

TodayLowCCI = Lowest( TodayCCI, HighLowPeriod ) ;

TodayHighCCI = Highest( TodayCCI, HighLowPeriod ) ;

if CurrentBar > Smooth + HighLowPeriod then

begin

CCISto = Average((TodayCCI - TodayLowCCI)/(TodayHighCCI - TodayLowCCI), Smooth );

Plot1( CCISto, "CCISto");

end ;

 

something like this you looking 4?

Files:
Reason: