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 got this Stochastic_LSDs_MTF.mq4 which i think is very great.
It has option to show regular 'stepping' MTF and/or smooth line MTF on the
same plot
why haven't we've seen more MTF's in 'this form/style'?
I've look around but can't find this form of MTF on Hull. Maybe you have
or anyone has got smooth Hull MTF already could please point me to the thread..
Thanks a ton in advance!
hi, why? - 'cause traditional step method is good, simple and proven, like a tank, and still there is a plenty of misunderstanding and confusion, i can imagine what will happen with 'deceiving non-step-like line' ("smooth line" - also pretty deceiving term : ))))
don't know about Hull mtf - i'm piled- up with other things to do - but there are many guys around here
hi, why? - 'cause traditional step method is good, simple and proven, like a tank, and still there is a plenty of misunderstanding and confusion, i can imagine what will happen with 'deceiving non-step-like line' ("smooth line" - also pretty deceiving term : ))))
don't know about Hull mtf - i'm piled- up with other things to do - but there are many guys around here
'smooth line'.... lol . you're right i just picked that up out of thin air!
But i think it would not differ so much with the original 'step' mtf as it is evident with Stoch LSDs mtf (i studied the code lil' bit, if i'm not mistaken it's just adding draw_section between values...). The programmer who coded it must've anticipated it as he/she is making it an optional one.
I guess the main advantage would be less clutter when multiple period mtf's is stacked.. and I'm imagining the in-between values is not too significant after all.... Anyway thx for the reply fxbs...!
This is an indicator i modified quite sometime ago it is a MTF Fibo indicator and has preset color and linestyles so all the user has to do is change timeframes and the lines and colors update to the presets. Of course the preset colors etc can all be altered by the user.
extern string ____________________="Change TimeFrames for MTF Display";
extern int TimeFrame =1440;
extern string _____________________=" Preset colors & LineStyle";
extern string ______________________="Monthly";
extern color MN1_Upper_color = Sienna;
extern color MN1_Intra_color = DarkOrange;
extern color MN1_Lower_color = Sienna;
extern int MN1_Hi_LineStyle = 0;
extern int MN1_Mid_LineStyle = 0;
extern int MN1_Lo_LineStyle = 0;
extern string _______________________="Weekly";
extern color W1_Upper_color = Maroon;
extern color W1_Intra_color = Red;
extern color W1_Lower_color = Maroon;
extern int W1_Hi_LineStyle = 0;
extern int W1_Mid_LineStyle = 0;
extern int W1_Lo_LineStyle = 0;
extern string ________________________="Daily";
extern color D1_Upper_color = SteelBlue;
extern color D1_Intra_color = Aqua;
extern color D1_Lower_color = SteelBlue;
extern int D1_Hi_LineStyle = 0;
extern int D1_Mid_LineStyle = 0;
extern int D1_Lo_LineStyle = 0;
extern string _________________________="4 Hourly";
extern color H4_Upper_color = ForestGreen;
extern color H4_Intra_color = YellowGreen;
extern color H4_Lower_color = ForestGreen;
extern int H4_Hi_LineStyle = 0;
extern int H4_Mid_LineStyle = 0;
extern int H4_Lo_LineStyle = 0;
extern string __________________________="1 Hourly";
extern color H1_Upper_color = Gray;
extern color H1_Intra_color = Silver;
extern color H1_Lower_color = Gray;
extern int H1_Hi_LineStyle = 0;
extern int H1_Mid_LineStyle = 0;
extern int H1_Lo_LineStyle = 0;
cja
Fibo_MTF
This is an indicator i modified quite sometime ago it is a MTF Fibo indicator and has preset color and linestyles so all the user has to do is change timeframes and the lines and colors update to the presets. Of course the preset colors etc can all be altered by the user...