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.
This is an email I recieved may be some will be interested in this.
ND you can move it were your feel its appropreate.
Join us online every week as various industry experts review different topics.
Robert, you’re invited to our free, weekly interactive forum for MetaStock users to meet and exchange strategies and ideas. The meetings discuss topics ranging from stock, futures, FOREX, and options to any other current trading topics. The online users group will be hosted by various MetaStock and trading professionals.
Weekly MetaStock Online Users Group presented by various trading professionals
Thanks cockeyedcowboy for sharing this email in here!I think that using more than one TA software platform it's a GOOD thing to do for any trader.
I believe its a promo for there software but its also gets into TA on a more basic level for beginers.
Having a secondary software that one can keep an eye on the other markets is also a good thing. MetaTrader does not give you that ability. Forex is not the end all.
I personally use AmiBroker pro software with seperate data feeds. For the money its the best buy availible. (Hope this is not classified as spam.)
Is there any program to convert the Metastock formula to MT4 formula.Can You help me please to write MT4 formula converting Metastock formula as fallows;
Inputs:
Prix((h+l)/2), Price ((h + l) / 2),
Periode(20), { Periode pour calculer l'ATR et la DEVIATION STD } Period (20), (Period to calculate the ATR and STD DEVIATION)
Fac_Keltner(1.5), { Facteur ATR pour les bandes Keltner } Fac_Keltner (1.5), (ATR factor for bands Keltner)
Fac_Bollinger(2),{ Facteur DEVIATION STD pour les bandes de Bollinger } Fac_Bollinger (2), (STD DEVIATION factor for Bollinger bands)
AlertLine( 1 ), { Niveau d'alerte /cette version ne gre pas les alertes } AlertLine (1), (Alert Level / this version does not gre alerts)
Couleur_Alerte( Blue ), Couleur_Alerte (Blue)
Couleur_Normale(Red); Couleur_Normale (Red);
Variables:
ATR(0), { Average True Range } ATR (0), () Average True Range
StDev(0), { Deviation Standard } StDev (0), () Standard Deviation
BBS_Ind(0), { l'indicateur } BBS_Ind (0), the indicator ()
alertTextID(-1); alertTextID (-1);
if barnumber = 1 and alertTextID = -1 then if Barnumbir = 1 and then alertTextID = -1
alertTextID = Text_New(date,time,0,"dummy"); alertTextID = Text_New (date, time, 0, "dummy");
If BBS_Ind < Alertline then If BBS_Ind <AlertLine then
SetPlotColor(1, Couleur_Normale) SetPlotColor (1, Couleur_Normale)
else
SetPlotColor(1, Couleur_Alerte); SetPlotColor (1, Couleur_Alerte);
value2 = LinearRegValue(Prix-((Highest(H, Periode)+Lowest(L, Periode))/2 value2 = LinearRegValue (Price-((Highest (H, period) + Lowest (L, Period)) / 2
+
xAverage(c,Periode))/2,Periode,0); xAverage (c, Period)) / 2, Period, 0);
var:color(0); color = yellow; var: color (0); color = yellow;
if value2>0 then if value2> 0 then
if value2 > value2[1] then if value2> value2 [1] then
color = green color = green
else
color = darkgreen; color = darkgreen;
if value2<0 then if value2 <0 then
if value2 < value2[1] then if value2 <value2 [1] then
color = red color = red
else
color = darkred; color = darkred;