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.
Could anyone make a MTF version of the NonLag MA, but in a 4 timeframe bar format like the 4TF Mega Trend Indicator (red, yellow and blue squares in each of the 4 time bars).
Hi all
For the last few days I have been ereceiving about 10 e-mails, all exactly the same.
They are from tsd-adming, and they are referring to this link. Here is the message below.
Dear spiritbreezer,
A new LinkBack has been recorded for a thread you have participated entitled - Multi Timeframe Indicators - in the Indicators - Metatrader 4 forum of Forex Trading.
It is LinkBack tool installed with default settings of automated email notification.
I think it was stopped already. I am not getting anything. If you will continuing receiving those emails so send PM to me.
But i want to say that those emails are helpjng a lot.
If you subscribe to this thread so you are getting email notifications for the new posts, right? And with this LickBack tool you are getting email notifications from the other forums and places who are linked/discussed this subject.
So you may be fully informed: you are having all the info from this thread and from the other forums as well concerning this subject.
And it is not so much emails: this thread was linked by 15 forums only. It means 15 linked emails only. So, you may get multitimeframe indicators from this our thread, or just visit their forums as well. No need to make a search in the web.
I am gettings all emails from all the threads on the forum and it is always good to see which other forums are discussing the same subject. So this LinkBack is helping a lot and safe my time.
Anyway you may stop it by unsibscribing from the thread.
hi! Everybody,
Does anyone have an indicator called MTF Movingaverages with HIGH/LOW option?
Kindly help and oblige.
Dilip
MTF Movingaverages was posted on the first post of this thread. And you may change the settings in this indicator for high or low price option. See the image attached: white line is MTF_moving_averahges indicator in high mode together with M30 asctrend system.
Open this indicator in MetaEditor and you will see:
Code:
//---- input parameters
/*************************************************************************
PERIOD_M1 1
PERIOD_M5 5
PERIOD_M15 15
PERIOD_M30 30
PERIOD_H1 60
PERIOD_H4 240
PERIOD_D1 1440
PERIOD_W1 10080
PERIOD_MN1 43200
You must use the numeric value of the timeframe that you want to use
when you set the TimeFrame' value with the indicator inputs.
---------------------------------------
PRICE_CLOSE 0 Close price.
PRICE_OPEN 1 Open price.
PRICE_HIGH 2 High price.
PRICE_LOW 3 Low price.
PRICE_MEDIAN 4 Median price, (high+low)/2.
PRICE_TYPICAL 5 Typical price, (high+low+close)/3.
PRICE_WEIGHTED 6 Weighted close price, (high+low+close+close)/4.
You must use the numeric value of the Applied Price that you want to use
when you set the 'applied_price' value with the indicator inputs.
---------------------------------------
MODE_SMA 0 Simple moving average,
MODE_EMA 1 Exponential moving average,
MODE_SMMA 2 Smoothed moving average,
MODE_LWMA 3 Linear weighted moving average.
You must use the numeric value of the MA Method that you want to use
when you set the 'ma_method' value with the indicator inputs.
**************************************************************************/
extern int TimeFrame=0;
extern int MAPeriod=13;
extern int ma_shift=0;
extern int ma_method=MODE_SMA;
extern int applied_price=PRICE_CLOSE;