DonaldInvest:
I am looking for a kind soul to give me a help. I am looking for a audio signal when my Stochastic indicator (10,5,10) turns up or down in the overbought levels of 70 and 30 respectively. Care to give me a hand and a minute of your time please?
I am looking for a kind soul to give me a help. I am looking for a audio signal when my Stochastic indicator (10,5,10) turns up or down in the overbought levels of 70 and 30 respectively. Care to give me a hand and a minute of your time please?
Maybe this help ?
Files:
stochcrossalert.mq4
3 kb
fxnewbie:
Maybe this help ?
Maybe this help ?
Hi fxnewbie, doesn't help because i just want the signal when the cross happens in overbought or oversold levels 70 or 30
Thanks!
Programmers is this hard to do?
if (stochk1 stochd0 && stochk0<=30)
{
last_cross = Time[0];
PlaySound(Sound1);
Alert("Stoch crosses up!");
}else if(stochk1 >= stochd1 && stochk0 < stochd0 && stochk0>=70){
PlaySound(Sound2);
Alert("Stoch crosses down!");
I added these in red to the indicator, I THINK this is what you are wanting. It is the main line, not signal line. If you want the signal line change the 0 to 1 in the red part.
Files:
I will try first thing next week. Thanks for your time CEO. Have a great weekend!
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
I am looking for a kind soul to give me a help. I am looking for a audio signal when my Stochastic indicator (10,5,10) turns up or down in the overbought levels of 70 and 30 respectively.
Care to give me a hand and a minute of your time please?