Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
It can happen that some of the symbols are "missing" from set files (by simply modifying that set file from market watch, for example).
mladen
It's easy way to fix it. Right button click on Market Watch then "Show All". Again right button click, then Sets->Save as... and make the file with full list of currencies.
HELLO EVERYONE,
Can someone please help make this indicator not to repaint past history especially if the bar has been closed,the indicator repaints sometimes 2 to 3 bars in live trading after candles have been closed and if possible an alert be added to it.thanks in anticipation.
I have coded an indi that puts swing highs/lows on the chart and I need to know the last of each of these before continuing. This is my attempt at looking for these two prices (hence I need some help).
Most of the times this works, but today it was saying the last swing high was actually the second last swing high.
Could someone please look at this and see if there is a better way of coding this part?
Thanks for any help.
int highbar,lowbar,i,n;
double curlow=0,curhigh=0;
for (i=200;i>=1;i--)
{
if (High[i+3]<High[i+2] && High[i+1]<High[i+2] && High[i+4<High[i+2] && High[i]<High[i+2])
{
curhigh=High[i+2];
highbar=i+2;
}
if (Low[i+3]>Low[i+2] && Low[i+1]>Low[i+2] && Low[i+4]>Low[i+2] && Low[i]>Low[i+2])
{
curlow=Low[i+2];
lowbar=i+2;
}
}
//----check if there is higher/lower candle since last fractal----------
n=MathMax(highbar,lowbar );
for (int x=n-1;x>=0;x--)
{
if (High[x]> curhigh)
{
curhigh=High[x];
highbar=x;
}
if (Low[x]< curlow)
{
curlow=Low[x];
lowbar=x;
}
}
It looks like the indents didn't paste properly, sorry.