Forex
Google

Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-30-2006, 09:30 PM
Thruline's Avatar
Thruline Thruline is offline
Senior Member
 
Join Date: Dec 2005
Posts: 123
Thruline is on a distinguished road
Cynthia Kase

Anyone know of any MT4 indicators that approximate Kase's MACD, peak out oscillator? It's pretty effective for showing divergence setups I think and she's done a lot of research showing it's superiority over other indicators--for what it's worth.

Thru
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 06-06-2006, 07:34 PM
DanielTyrkiel's Avatar
DanielTyrkiel DanielTyrkiel is offline
Senior Member
 
Join Date: Nov 2005
Posts: 176
DanielTyrkiel is on a distinguished road
I'd like to get some kase indicators myself. Most of them have been made for tradestation, but not for mt4. Anyone know of her s/r levels for mt4?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 06-06-2006, 07:58 PM
fx-programmer's Avatar
fx-programmer fx-programmer is offline
Senior Member
 
Join Date: Apr 2006
Location: europe
Posts: 118
fx-programmer is on a distinguished road
I will translate any interesting Tradestation indicator to mt4.
Just post them
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 06-06-2006, 08:40 PM
DanielTyrkiel's Avatar
DanielTyrkiel DanielTyrkiel is offline
Senior Member
 
Join Date: Nov 2005
Posts: 176
DanielTyrkiel is on a distinguished road
I'll have them tomorrow thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 06-06-2006, 09:22 PM
formor formor is offline
Junior Member
 
Join Date: Feb 2006
Posts: 10
formor is on a distinguished road
Kase CD

The KaseCD is a sensitive, second derivative indicator, the derivative of the PeakOscillator. It is calculated in the same way as the MACD histogram is calculated from a moving average oscillator. That is, it is the difference between the PeakOscillator and the average of the PeakOscillator, where the MACD is the difference between an exponential moving average oscillator and its average. However, because its basis is statistical, it generates cleaner crossover signals and more reliable divergences.




Kase CD

Per1:=Input("max length",1,100,8);
RWH:=(H-Ref(L,-Per1))/(ATR(Per1)*Sqrt(Per1));
RWL:=(Ref(H,-Per1)-L)/(ATR(Per1)*Sqrt(Per1));
Pk:=Mov(Mov((RWH-RWL),3,W),3,S);
KCD:=PK-Mov(PK,8,S);
MN:=Mov(KCD,Per1,S);
SD:=Stdev(KCD,Per1);
Val1:=If(MN+(1.33*SD)>2.08,MN+(1.33*SD),2.08);
Val2:=If(MN-(1.33*SD)<-1.92,MN-(1.33*SD),-1.92);
LN:=If(Ref(KCD,-1)>=0 AND KCD>0,Val1,If(Ref(KCD,-1)<=0 AND
KCD<0,Val2,0));
Red:=If(Ref(KCD,-1)>KCD,KCD,0);
Green:=If(KCD>Ref(KCD,-1),KCD,0);
Red;Green;LN;

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 06-06-2006, 09:23 PM
formor formor is offline
Junior Member
 
Join Date: Feb 2006
Posts: 10
formor is on a distinguished road
Kase Peak Oscillator by Cynthia Kase

The PeakOscillator plot is used similarly to traditional oscillators but is derived from a mathematically sound, statistical evaluation of trend that evaluates over 50 different trend lengths, rather than just two as the traditional oscillator does. It automatically adapts for cycle length and volatility changes.

The PeakOscillator is "universal" in that it scales to volatility, and can be compared over differing commodities and time frames.

Two other features of the PeakOscillator are the PeakMax and PeakMin lines.

The PeakMax line is the maximum of the 2 standard deviations of the local PeakOscillator reading and the 90th percentile of momentum, historically. The PeakMin is the minimum of the two.




Kase Peak Oscillator

Per1:=Input("max length",10,100,30);
RWH:=(H-Ref(L,-Per1))/(ATR(Per1)*Sqrt(Per1));
RWL:=(Ref(H,-Per1)-L)/(ATR(Per1)*Sqrt(Per1));
Pk:=Mov((RWH-RWL),3,W);
MN:=Mov(Pk,Per1,S);
SD:=Stdev(Pk,Per1);
Val1:=If(MN+(1.33*SD)>2.08,MN+(1.33*SD),2.08);
Val2:=If(MN-(1.33*SD)<-1.92,MN-(1.33*SD),-1.92);
LN:=If(Ref(Pk,-1)>=0 AND Pk>0,Val1,If(Ref(Pk,-1)<=0 AND Pk<0,Val2,0));
Red:=If(Ref(Pk,-1)>Pk,Pk,0);
Green:=If(Pk>Ref(Pk,-1),Pk,0);
Red;
Green;
LN;

More Kase indicators: http://trader.online.pl/MSZ/e-0-tytulowa-k.html

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 06-07-2006, 08:42 PM
coyan's Avatar
coyan coyan is offline
Member
 
Join Date: Jan 2006
Posts: 94
coyan is on a distinguished road
Quote:
Originally Posted by fx-programmer
I will translate any interesting Tradestation indicator to mt4.
Just post them
This indicator can help you. NO RUN OK

Coyan
Attached Files
File Type: mq4 KaseCD Peak Oscilator.mq4 (3.9 KB, 209 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 06-07-2006, 10:05 PM
increase's Avatar
increase increase is offline
Senior Member
 
Join Date: May 2006
Posts: 605
increase is on a distinguished road
Quote:
Originally Posted by coyan
This indicator can help you. NO RUN OK

Coyan
Did I fix it correctly?

But it does not look like the one above
Attached Files
File Type: mq4 KaseCD Peak Oscilator.mq4 (3.9 KB, 128 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 06-08-2006, 12:59 AM
coyan's Avatar
coyan coyan is offline
Member
 
Join Date: Jan 2006
Posts: 94
coyan is on a distinguished road
Quote:
Originally Posted by increase
Did I fix it correctly?

But it does not look like the one above
Yes the indicator has a problem. Maybe fx-programmer can do something.

Coyan.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 06-08-2006, 04:06 AM
jerseydevil20 jerseydevil20 is offline
Junior Member
 
Join Date: Nov 2005
Posts: 25
jerseydevil20 is on a distinguished road
Kase Oscillator

I got this somewhere...

Just noticed it's the same name - I didn't look to see if the code is different.
Attached Files
File Type: mq4 KaseCD Peak oscilator.mq4 (4.4 KB, 194 views)

Last edited by jerseydevil20 : 06-08-2006 at 04:08 AM. Reason: oops
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cynthia Kase - Kase Peak Oscillator secxces Indicators - Metatrader 4 27 07-15-2007 07:25 PM
Kase Peak Mq4 Kalenzo Commercial Trading Systems and indicators 0 03-16-2006 06:18 PM


All times are GMT. The time now is 09:11 AM.