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.
I just wanted to say thanks and let you know that I now have steps one and two working properly. Now I am working on steps 3 and +++. It's turning into a great exercise in learning.
Step 3 is trying to find out which indicator is the best to use to find the long term trend. I'm looking at Daily for now as it seems to work best for my system.
The one thing that I want to try is to find a way to confirm the change of trend as it seems that many times, most indicators show a change of thread, it reverses at that point and turns out to be nothing more than a retracement. I think that I would like to confirm the trend when the price passes the high or the low of the previous bar by x number of pips. I'm sure that somebody has already coded this but I have not been able to find it yet. If anybody has any suggestions, I would appreciate it.
Hi there,
I created my first indicator and really happy about it. What I have is a 2map (1hour and daily) for trading only with the major trend.
On the 1hour chart it works perfectly, but if I lower the TF the signals change....can anybody tell me how to make the signal appear on the close of the 1hour candle even on a lower TF chart ? Is that possible ?
Hi there,
I created my first indicator and really happy about it. What I have is a 2map (1hour and daily) for trading only with the major trend.
On the 1hour chart it works perfectly, but if I lower the TF the signals change....can anybody tell me how to make the signal appear on the close of the 1hour candle even on a lower TF chart ? Is that possible ?
As usual, you can only discover bar opening, i.e. that it is the first tick on a new bar, and then you can use a predicate like the following:
PHP Code:
bool atHourBarOpen()
{
if ( TimeCurrent() != Time[0] )
return( false ); // Not the first tick of the bar
return( TimeHour( Time[1] ) != TimeHour( Time[0] ) );
}
As usual, you can only discover bar opening, i.e. that it is the first tick on a new bar, and then you can use a predicate like the following:
PHP Code:
bool atHourBarOpen()
{
if ( TimeCurrent() != Time[0] )
return( false ); // Not the first tick of the bar
return( TimeHour( Time[1] ) != TimeHour( Time[0] ) );
}
thanks for your help, but i can't get my head around the issue. I am attacching the indicator, if you could have a look at it I would appreciate it very much. Would it be possible to have the signal come on the close of the TF specified in First_Map and not hard conditioned on the 1hr? This way if I change the TF in first map it will work on that one.
Dear all trader,
I want to know how to put an expiration date in indicator or EA, so that it has an expiration days like picture below. What string code should be added in .mtq?
Dear all trader,
I want to know how to put an expiration date in indicator or EA, so that it has an expiration days like picture below. What string code should be added in .mtq?
Thanks in advance.
Hi ANCOLL
Good to hear from you again, I have just got back from the Christmas holidays and am ready to get back into it. I use this code I hope you find it works for you.