
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
kase osilator signal ?? anyone have ?
kase osilator signal ?? anyone have ?
Hi kaanyatirim,
I have these two:
Kase Indicator Oscillator
Kase Peak Oscillator
Both done by Mladen...so you can trust the coding.
Don't know the difference between them so please share what you find and let us know how you are using them.
Hope this helps,
Robert
kase_indicator_oscillator.mq4
kase_peak_oscillator.mq4
Also. there are some Kase indicators at this thread : https://www.mql5.com/en/forum/179924
i was wondering if somebody could help me to find these indicators
Any serious
It could be any of the "stops" indicator repeated 3 times with different parameters : BB stops, Volty channel stop, ... Hard to know exactly from one picture
Thankx M., but i couldn't mimic this bar by bar movement with any of the above Indi's, i tried them all, the step MA gave me the best result but not as accurate as this.
Another links for the same indicator:
ttt qqq | Jan Arps' Traders' Toolbox
aRPS tRENDER | Jan Arps' Traders' Toolbox
es 12813 | Jan Arps' Traders' Toolbox
nq12813 | Jan Arps' Traders' Toolbox
ttt qqq | Jan Arps' Traders' Toolbox
This is the metastock code for the Arps triple trender.
-----------------------------------------------------------------------------------
{_Test}
Pds:=Input("Period",2,50,10);
Sensitivity:=Input("Std Dev",.5,5,1);
UseClose:=Input("Use Close",0,1,0);
maMP:=mov(mp(),Pds,e);
maATR:=mov(ATR(1),Pds,e);
ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;
Entry:=if(UseClose,Close>ADM,High>ADM);
Exit:=if(UseClose,ADM>Close,ADM>Low);
{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }
Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }
Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }
entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }
exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }
entry:=(exit=0)*entry; { favor EXIT }
Signal:=Entry-Exit; { Signal }
Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }
{ PLOT }
ADM;
------------------------------------------------------------------------------------------
thankx anyway.
Thankx M., but i couldn't mimic this bar by bar movement with any of the above Indi's, i tried them all, the step MA gave me the best result but not as accurate as this.
Another links for the same indicator:
ttt qqq | Jan Arps' Traders' Toolbox
aRPS tRENDER | Jan Arps' Traders' Toolbox
es 12813 | Jan Arps' Traders' Toolbox
nq12813 | Jan Arps' Traders' Toolbox
ttt qqq | Jan Arps' Traders' Toolbox
This is the metastock code for the Arps triple trender.
-----------------------------------------------------------------------------------
{_Test}
Pds:=Input("Period",2,50,10);
Sensitivity:=Input("Std Dev",.5,5,1);
UseClose:=Input("Use Close",0,1,0);
maMP:=mov(mp(),Pds,e);
maATR:=mov(ATR(1),Pds,e);
ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;
Entry:=if(UseClose,Close>ADM,High>ADM);
Exit:=if(UseClose,ADM>Close,ADM>Low);
{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }
Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }
Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }
entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }
exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }
entry:=(exit=0)*entry; { favor EXIT }
Signal:=Entry-Exit; { Signal }
Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }
{ PLOT }
ADM;
------------------------------------------------------------------------------------------
thankx anyway.BASSRAMY
Was going to tell that it resembles to Arps trender and that Arps trender is actually one version of atr stops, but I see that you already edited your post
Thanks for the formula. Let see if we can cook an exactly the same one as that formula
Thankx M., but i couldn't mimic this bar by bar movement with any of the above Indi's, i tried them all, the step MA gave me the best result but not as accurate as this.
Another links for the same indicator:
ttt qqq | Jan Arps' Traders' Toolbox
aRPS tRENDER | Jan Arps' Traders' Toolbox
es 12813 | Jan Arps' Traders' Toolbox
nq12813 | Jan Arps' Traders' Toolbox
ttt qqq | Jan Arps' Traders' Toolbox
This is the metastock code for the Arps triple trender.
-----------------------------------------------------------------------------------
{_Test}
Pds:=Input("Period",2,50,10);
Sensitivity:=Input("Std Dev",.5,5,1);
UseClose:=Input("Use Close",0,1,0);
maMP:=mov(mp(),Pds,e);
maATR:=mov(ATR(1),Pds,e);
ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;
Entry:=if(UseClose,Close>ADM,High>ADM);
Exit:=if(UseClose,ADM>Close,ADM>Low);
{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }
Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }
Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }
entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }
exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }
entry:=(exit=0)*entry; { favor EXIT }
Signal:=Entry-Exit; { Signal }
Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }
{ PLOT }
ADM;
------------------------------------------------------------------------------------------
thankx anyway.I am afraid that that formula is lacking something
The value it is supposed to draw on chart is not the expected (from the pictures you posted). Here is an indicator that calculates that ADM value as it is specified in that formula, but you will see that it is not one of those stops
Thanks M., really appreciated your effort but its not even close, this one looks like an MA more than a ATR Stop, i have better results experimenting with other stops, i'm getting close.
Best,
B.R.
Thanks M., really appreciated your effort but its not even close, this one looks like an MA more than a ATR Stop, i have better results experimenting with other stops, i'm getting close.
Best,
B.R.Yes, the formula that is there for the ADM is simply a value for an average shifted vertically by atr + deviation of that atr. As I said - it obviously is not a formula for a stop like indicator