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.
If you look at the code you will see that it re-paints past bars on every new tick.
PHP Code:
for(int i=0; i<limit; i++)
The above code statement allows it to re-paint all previous bars. The Loop starts at the current unfinished bar and loops though all history and re-paints them. That’s way when you place it on a chart it looks amazingly accurate not only on the trend direction but the tops and bottoms.
To get a more accurate picture of what this indicator can do for you, you should change the for statement in the code to this
PHP Code:
for(int i=500; i>0; i--)
I have not watched this indicator realtime so I cant comment on how well it shows information for the realtime current bar.
If you would like to dicuss this please respond
Thanks
EK
Last edited by Emerald King; 12-14-2005 at 06:39 AM.
I just tried to change the Nina's indicator...
and now asking for FEEDBACK...(some posts above)
Hello Yur4ik: First of all I would like to thank you for your efforts on fixing the re painted bars on fisher indicator.
I have been trying this indicator (the last version) on a 4hr chart real time and still is re painting the bars after they are closed. This happened to me today when the GBP is has been up and down like crazy.
Is there any way to freeze the fishers' bars colors and sizes after the candle close?
If you look at the code you will see that it re-paints past bars on every new tick.
PHP Code:
for(int i=0; i<limit; i++)
The above code statement allows it to re-paint all previous bars. The Loop starts at the current unfinished bar and loops though all history and re-paints them. That’s way when you place it on a chart it looks amazingly accurate not only on the trend direction but the tops and bottoms.
To get a more accurate picture of what this indicator can do for you, you should change the for statement in the code to this
PHP Code:
for(int i=500; i>0; i--)
I have not watched this indicator realtime so I cant comment on how well it shows information for the realtime current bar.
If you would like to dicuss this please respond
Thanks
EK
Emerald King: I tried to put in your new line of code into the FX_Fish, which is the origianl version, and not Yur4ik's version, but get an error message when i try to compile it. The line of code I tried to change is different from Yur4ik's, so I dont know is that has something to do with it. Here is the line of code so you can compare it: for ( i=0; i<Bars; i++ ) .