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. Its 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.
Hi all traders,
I like to know if someone has a program to refresh the charts at a certain point of time. Like after a candle close. Maybe someone ells also have this request.
As you know that some ind repaint and I trade with one of them that helps me to make the right decision (only confirmation) in the right direction.
If any trader can help I will appreciate it
Hi all traders,
I like to know if someone has a program to refresh the charts at a certain point of time. Like after a candle close. Maybe someone ells also have this request.
As you know that some ind repaint and I trade with one of them that helps me to make the right decision (only confirmation) in the right direction.
If any trader can help I will appreciate it
Tx in advance
8021
Hello!
This depends from your indicator, if you wish to redraw graph objects like arrows, lines, boxes and so on then you need to use WindowRedraw() function. If your indicator is using buffers to draw something on the chart and it refresh after eg. attaching it again on the chart, then you need to recode it by removing IndicatorCounted() function and replacing it with eg 100 bars. In this way indicator will repaint last 100 bars when each new tick will come, but then you can add condition to do this only when new bar is coming eg:
1) define global variable B
2) set by default B = 0;
3) condition like this:
if(Bars>B)
{
//redraw here
//set B parameter
B = Bars;
}
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................ http://www.fxservice.eu/
........................................
Hello!
This depends from your indicator, if you wish to redraw graph objects like arrows, lines, boxes and so on then you need to use WindowRedraw() function. If your indicator is using buffers to draw something on the chart and it refresh after eg. attaching it again on the chart, then you need to recode it by removing IndicatorCounted() function and replacing it with eg 100 bars. In this way indicator will repaint last 100 bars when each new tick will come, but then you can add condition to do this only when new bar is coming eg:
1) define global variable B
2) set by default B = 0;
3) condition like this:
if(Bars>B)
{
//redraw here
//set B parameter
B = Bars;
}
Hi,
thx for the advice.
I will contact you if i strugle with the coding.