
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
Also after a large bar no entry or after a big move from a couple bars.
I forgot to add that if price lingers for 2-3 bars and does not move much I get out and take the small loss or profit..
Quick help with an indicator: BB_MACD
I posted in the wrong place. Sorry.
Edited post because need to describe indicator needed better.
whitemo1
Can anyone tell me if there is any thing called an ABC indicator?
I have seen it used in share trading application.
It was developed by Gann.
Try those threads:
https://www.mql5.com/en/forum/175448
https://www.mql5.com/en/forum/176098
Hello.
Would it be possible to add an audible/email alert to the indicator provided below - when more than one (adjustable) timeframes turn DodgerBlue or Magenta then alarm is sounded. (I changed the colors and line thicknesses of the indicator originally kindly provided by kinonen.
Request MTF EMA dashboard
Hi There,
I am looking for a MTF indicator showing EMA levels in a dashboard or grid.
Personally I would like to enter 3 EMA's and have the dashboard display them for all timeframes, but it may be usefull to allow for upto 6 EMA's.
Cheers
Codex
Look at this thread https://www.mql5.com/en/forum/176023
It is hard to find and I am not sure about 3 EMAs ... but as I remember - it was many similar indicators.
if you may do :Improving RSI histogram for LabTrend
Improving RSI histogram:
Add two indicators, installed & Alert: highest [15bar] (RSI histogram), and Lowest [15bar] (RSI histogram) to Display this, when he breaks the prev. peaks and prev. valleys in the RSI indicator histogram.
Thanks
May someone encode in Metatrader AutoEnvelop_Elder
Can someone encode in Metatrader AutoEnvelop_Elder
encode in Prorealtime
REM CalculoAutoEnvelopeElder
Factor=27
avg=ExponentialAverage[22](close)
csize=(Factor/10)*(STD[100](2*MAX(abs(high-avg),abs(low-avg))/avg))
{csize= Stdev(2*Max(Abs(H-avg) ,Abs(L-avg)) / avg,100)*Factor/10}
if DayOfWeek<DayOfWeek[1] OR DayOfWeek=DayOfWeek[1] and MonthMonth[1] THEN
csize=Csize[1]
ENDIF
channel=csize*avg
c=ExponentialAverage[13](close)
RETURN avg COLOURED(0,0,255) as "EnvelopeMedio", avg+channel/2 COLOURED(0,0,255) as "EnvelopeUp", avg-channel/2 COLOURED(0,0,255) as "EnvelopeDown", c coloured(255,0,0) as "EMA13"
encode in Metastock
EMA:=Input("Base EMA",1,100,22);
Factor:=Input("Factor",1,50,27);
avg:=Mov(C,EMA,E);
csize:= Stdev(2*Max(Abs(H-avg) ,Abs(L-avg)) / avg,100)*Factor/10;
{Use 100 days for stable channel size - default is 2.7 std}
Csize:= ValueWhen(1,
DayOfWeek()<Ref(DayOfWeek() ,-1) OR (
DayOfWeek()=Ref(DayOfWeek(),-1) AND DayOfMonth() Ref(DayOfMonth(),-1))
,Ref(csize,-1));
csize:=LastValue(csize);
{fix to constant using last value}
channel:=csize*avg;
avg+channel/2;
avg-channel/2;
avg;
Thanks