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.
And the MT4 version is in the attachment. However, it doesn't look like the original one (check the picture), the original one is smoother. Plus, I had to put a fixed period because when it was a variable, it always returned zero.
I'm a bad programmer, so I ask anyone willing to help to check the MT4 code and correct the errors, generally it should be somewhat right.
And, as you can see from the picture, it's worth it to have this indicator in MT4, very useful, so do it for your own good
Thanks!
PolarizedFractaEfficiency.mq4
Developed by Hans Hannula TASC 12:1 "Polarized fractal Efficiency"
this should be good
hi
i need your help
i have a metastock expert code, Please convert this expert to mq4 indicator (for metatrader) and hope me.
highlight buy:
F1:=ValueWhen(1,H<Ref(H,-2) AND
Ref(H,-1)<Ref(H,-2) AND
Ref(H,-3)<Ref(H,-2) AND
Ref(H,-4)<Ref(H,-2),Ref(H,-2));
F2:=ValueWhen(1,L>Ref(L,-2) AND
Ref(L,-1)>Ref(L,-2) AND
Ref(L,-3)>Ref(L,-2) AND
Ref(L,-4)>Ref(L,-2),Ref(L,-2));
a:=Cross(H,F1);
b:=Cross(F2,L);
state:=If(BarsSince(a)<BarsSince(b),1,0);
state=1
+++++++++
highligh sell:
F1:=ValueWhen(1,H<Ref(H,-2) AND
Ref(H,-1)<Ref(H,-2) AND
Ref(H,-3)<Ref(H,-2) AND
Ref(H,-4)<Ref(H,-2),Ref(H,-2));
F2:=ValueWhen(1,L>Ref(L,-2) AND
Ref(L,-1)>Ref(L,-2) AND
Ref(L,-3)>Ref(L,-2) AND
Ref(L,-4)>Ref(L,-2),Ref(L,-2));
Boonc Peak 'n Trough V 1.2 metastock code
from www.chaloke.com, thailand, free system
this is about peak and trough theory... trend following system.... when the chart make a new high and higher high it's going up until it come down to make a new low and lower low until it's going up... sorry, with my english is not good. i hope you understand. this is the code frome metastock, if anyone could convert the code from metastock to mt4,
thanky you
Trend
{ Bullish % Step Variable *trend Peak&trough for Expert Advisor Trends n Symbols = Green }
could anyone help me create a Peak and Trough indicator?
could anyone help me create Peak and Trough indicator but base on this code that i use in my metastock trading, and when it make a new high or a new low the bar is only show in green and red colour all the way until it's end. and also an arrow signal
I also have a MetaStock formula that I hope someone can code to .mq4
It is the indicator that is used in conjunction with RSI(14) in the book Technical Analysis for the Trading Professional by Constance Brown. If you have seen the cover of that book, you will be glad to have this indicator.
It is easy to do with Excel, but I have no experience with MetaEditor coding.
Here's the MetaStock format :
Composite Index = RSI(14)-Ref(RSI(14),-9)+Mov(RSI(3),3,S)