
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
Here is a version that changes color on slope change
Thanks Mladen.
Once again.
Ish
...
tinus70,
Almost sure that it is this one : https://www.mql5.com/en/forum/179466
Does someone know this indicator? You can see the charts and it give you true information about future signals
Volna
Volna indicatorVinin (Victor Nicolaev) trend indicator
After 7 years of losing, I've finally become successful.
Hi all - After 7 years of winning and then losing, I've finally developed a winning trading scheme. I only use 2 indicators, 1 of which is a trend generator. The only problem is, I'm not a programmer and I'd like some way of having the signals send me an alert either via email or text so that I can prep for the trades. It could also be advantages for the indicator to be ultimately coded into a basic EA with slight oversight just to keep an eye on things. Could any one assist? Thanks.
reversal candles
Can someone make this Indikotor change in mt4
// Project: Pattern Recognition - Umkehrstab
meta: Synopsis ("Umkehrstäbe"),
ShortCode ("Umkehrstäbe"),
Legend ("Umkehrstäbe" ),
SubChart (false);
if (High > High[1]) and
(Close < Open) then
drawcandlestick (open,high,low,close,red,red,black);
if (Low < Low[1]) and
(Close > Open) then
Drawcandlestick (open,high,low,close,green,green,black);
// end of code
thanks mahatma
This would be a metatrader 4 code of what you posted :
//
//------------------------------------------------------------------
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 LimeGreen
#property indicator_color2 OrangeRed
#property indicator_width1 2
#property indicator_width2 2
double up[];
double dn[];
//------------------------------------------------------------------
//
//------------------------------------------------------------------
//
//
//
//
//
int init()
{
SetIndexBuffer(0,up); SetIndexStyle(0,DRAW_HISTOGRAM);
SetIndexBuffer(1,dn); SetIndexStyle(1,DRAW_HISTOGRAM);
return(0);
}
//
//
//
//
//
int start()
{
int counted_bars=IndicatorCounted();
if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
int limit=MathMin(Bars-counted_bars,Bars-1);
//
//
//
//
//
for(int i=limit; i>=0; i--)
{
up = EMPTY_VALUE;
dn = EMPTY_VALUE;
if (High> High && Close < Open) { dn = High; up = Low; }
if (Low Open) { up = High; dn = Low; }
}
return(0);
}
Can someone make this Indikotor change in mt4
// Project: Pattern Recognition - Umkehrstab
meta: Synopsis ("Umkehrstäbe"),
ShortCode ("Umkehrstäbe"),
Legend ("Umkehrstäbe" ),
SubChart (false);
if (High > High[1]) and
(Close < Open) then
drawcandlestick (open,high,low,close,red,red,black);
if (Low < Low[1]) and
(Close > Open) then
Drawcandlestick (open,high,low,close,green,green,black);
// end of code
thanks mahatmaTrendWave indicator
TereshSuperMegaWinner Like.mq4 how to set?
Interesting indicator for trends
Sorry, but I do not understand the question.
It is an indicator with parameters like all the rest of indicators. Maybe just one thing : use longer time frames
TereshSuperMegaWinner Like.mq4 how to set?