Indicators with alerts/signal - page 125

 

I have looked there over and over.

Thank you for your help. However, I have been doing exactly as you have suggested, but have not been successful at this point in finding that performs this seemingly simple task.

Nothing seems to fit the bill exactly enough to work properly.

One MA is an ema and the other an sma both using the close. I need a loud audible alert to wake me up.

Again, nothing is working.

Thanks.

Rico.

 
rwgold:
Thank you for your help. However, I have been doing exactly as you have suggested, but have not been successful at this point in finding that performs this seemingly simple task.

Nothing seems to fit the bill exactly enough to work properly.

One MA is an ema and the other an sma both using the close. I need a loud audible alert to wake me up.

Again, nothing is working.

Thanks.

Rico.

Most indicators posted have the option to set different MA calculations.

FastMA_Mode = 3; //0=sma, 1=ema, 2=smma, 3=lwma

FastPriceMode = 6;//0=close, 1=open, 2=high, 3=low, 4=median(high+low)/2, 5=typical(high+low+close)/3, 6=weighted(high+low+close+close)/4

SlowMA_Mode = 3; //0=sma, 1=ema, 2=smma, 3=lwma

SlowPriceMode = 6;//0=close, 1=open, 2=high, 3=low, 4=median(high+low)/2, 5=typical(high+low+close)/3, 6=weighted(high+low+close+close)/4

 

I don't know if this is the right thread to post this but here goes.

Attached is an EA that works with bar patterns i am looking to display them like the in and out indicator. ie colour the bars when the ea is running.

 

all these arrows are killing me/

Is there a stochastic cross indicator out there that will only signal an arrow when the cross occurs above or below the overbought /oversold settings

If not can this one be modified?

sure could use the help.

Thanks

 
 
 
 
jsmith43:
Linuxser

Thanks for the quick response

the overlay will help by getting the arrows of the price action.

Is ther anyway to eliminate all the arrows except those signal crosses that

occur in overbought or oversold zones keeping the arrows on the chart?

I use these extreme signals off of s/r on 5 min chart its not 100% but works well.

Thanks again

i put switches, so u can choose kind of signals

SoundON=false;

EmailON=false;

KPeriod=5;

DPeriod=3;

Slowing=3;

MA_Method = 0; // SMA 0, EMA 1, SMMA 2, LWMA 3

PriceField = 0; // Low/High 0, Close/Close 1

OverBoughtLevel = 80;

OverSoldLevel = 20;

show_KD_cross = false;

show_K_OBOScross = true;

show_D_OBOScross = false;

default - K(fast line) cross OBOS levels

in your case you can set D=true, K=false

 
fxbs:
i put switches, so u can choose kind of signals

Great Job!!!

 

just mod. - easy staff

Reason: