Indicators with alerts/signal - page 134

 
elijahsmithklime:
i am a newbie, how do i install the macd signal please ? and what is the alert i should be wacthing out for ?

Just drop into your indicators folder.

Here are basic instruction to MT https://www.mql5.com/en/forum

 

Wanted:

Wanted: Looking for a programmer that I can pay to attach a popup and sound alert to my manual system.

Please send me a PM along with your price to do same.

Thanks a bunch

 
WHTenn:
Wanted: Looking for a programmer that I can pay to attach a popup and sound alert to my manual system.

Please send me a PM along with your price to do same.

Thanks a bunch

You should post here: https://www.mql5.com/en/forum/178140

 

Thanks a bunch

Linuxser:
You should post here: https://www.mql5.com/en/forum/178140

Thanks for the direction and heads up. Have a great weekend!

 

Williams Percent R

does anybody know if there is a alert or indi that shows when williams percent R line would cross certain moving averages attached onto percent R

TIA

 
martym:
does anybody know if there is a alert or indi that shows when williams percent R line would cross certain moving averages attached onto percent R TIA

if you couldn't find wpr alert - just use stochastic alert, smoothing(slowing) set to 1(fast stochastic)

same thing just scale with minus and upside/down

https://www.mql5.com/en/forum/177239/page5

%D -is your MA of %K

 

CCI ... needs popup and to identify the pair the alert is for

This makes a sound when the 100 level is breached, but what I need is a popup window that identifies the pair as well.

Thanks to anyone that could ADD the popup alert that identifies the pair, with sound.

Thanks

ut2DaMax

 

CCI _Signal with Alert

Hi all members,

I find an indicator from VT Trader that shows on main chart for buy/sell signal and together with alert.

I attach here the VT source code, hoping somebody can convert it into MT4 indicator.

This indicator alerts a buy trade when CCI crosses +40 (user-defined) and alerts a close for the buy trade if: CCI reaches +100, then close when CCI crosses below +40 OR if CCI never reaches +100, then close when CCI crosses below 0.0.

Alerts to open a sell trade are CCI crossing below -40 (user-defined) and alerts to close the sell trade are: if CCI reaches -100, then close when CCI crosses above -40 OR if CCI never reaches -100, then close when CCI crosses above 0.0.

{CCI-Calculation of the base indicator}

{MetaStock Equivalent Calculation}

Diff:= PrcCCI - Mov(PrcCCI,PrCCI,S);

AveDiff:= Mov(Abs(Diff),PrCCI,S);

EquationComp:= Diff/AveDiff;

AdjCon:= 66.66667{equivelant=2/3tds};

MS_CCI:= EquationComp * AdjCon;

{Donald Lambert's Original Formula}

DL_CCI:= CCI(PrcCCI,PrCCI);

{Display CCI Based on User's Choice}

CCIndex:= if(FormulaChoice=0,MS_CCI,DL_CCI);

{Definition of Levels}

Level_Zero:= 0;

Level_Control_Up:= Level_Control; {Input Bookmark = 40}

Level_Extreme_Up:= Level_Extreme; {Input Bookmark = 100}

Level_Control_Down:= -Level_Control_Up;

Level_Extreme_Down:= -Level_Extreme_Up;

{Trend}

Trend_Up:= CCIndex > Level_Zero;

Trend_Down:= CCIndex < Level_Zero;

{Conditions for Positions Up}

Cond_Up_1:= if(CCIndex > Level_Control_Up, 1,

if(Trend_Down,0, Prev));

Cond_Up_2:= if(CCIndex > Level_Extreme_Up, 1,

if(CCIndex < Level_Control_Up,0, Prev));

Cond_Up:= if(Cross(Cond_Up_1, 0.5),1,

if(Cross(0.5, Cond_Up_2) OR Cross(0.5, Cond_Up_1),0,Prev));

{Formation of signals on the basis of conditions for UP}

Signal_Long:= Cross(Cond_Up, 0.5);

Signal_Long_Close:= Cross(0.5, Cond_Up);

{Conditions for Positions DOWN}

Cond_Down_1:= if(CCIndex < Level_Control_Down, 1,

if(Trend_Up,0, Prev));

Cond_Down_2:= if(CCIndex < Level_Extreme_Down, 1,

if(CCIndex > Level_Control_Down,0, Prev));

Cond_Down:= if(Cross(Cond_Down_1, 0.5),1,

if(Cross(0.5, Cond_Down_2) OR Cross(0.5, Cond_Down_1),0,Prev));

{Formation of signals on the basis of conditions for DOWN}

Signal_Short:= Cross(Cond_Down, 0.5);

Signal_Short_Close:= Cross(0.5, Cond_Down);

{OpenBuy and CloseBuy}

OpenBuy:= Signal_Long and (eventCount('OpenBuy')=eventCount('CloseBuy'));

CloseBuy:= Signal_Long_Close and (eventCount('OpenBuy')>eventCount('CloseBuy'));

{OpenSell and CloseSell}

OpenSell:= Signal_Short and (eventCount('OpenSell')=eventCount('CloseSell'));

CloseSell:= Signal_Short_Close and (eventCount('OpenSell')>eventCount('CloseSell'));

And also please look at the chart from VT Trader.

Thanks.

matfx

 
newdigital:
Some indicators with alert/signals with author's comments:

- EMA-Crossover_Signal:

Enter two Exponential Moving Average periods and it'll tell you when they crossed.

- SMA-Crossover_Signal:

Enter two Simple Moving Average periods and it'll tell you when they crossed.

- SMMA-Crossover_Signal:

Enter two Smoothed Moving Average periods and it'll tell you when they crossed.

- LWMA-Crossover_Signal:

Enter two Linear Weighted Moving Average periods and it'll tell you when they crossed.

- 2CCI_ZeroCross_Alert:

Enter your trend indicating cci value and your entry signal cci value (ie 50 and 14) and it'll alert you to when it crossed.

Thanks Jason Robinson (jnrtrading)

I tried the EMA_Crossever_Signal but it doesn't work.

What I need is that the value for both EMAs are adjustable, means we can input any size to suite the trading strategy.

Any help is very much appreciated.

Best Rgds.

 
Reason: