Topics in this digest:
1a. Possible to run a MACD on a foreign symbol?
From: potatosoupz
1b. Re: Possible to run a MACD on a foreign symbol?
From: Mike
1c. Re: Possible to run a MACD on a foreign symbol?
From: Joris M.schuller
1d. Re: Possible to run a MACD on a foreign symbol?
From: Ara Kaloustian
2a. Re: Is there a way to backtest on a minutely basis but still referen
From: Ronald Davis
2b. Re: Is there a way to backtest on a minutely basis but still referen
From: Potato Soup
2c. Re: Is there a way to backtest on a minutely basis but still referen
From: Potato Soup
3a. Re: Results Table ( File ) Import via OLE ?
From: Tomasz Janeczko
4a. exrem(array1,array2) please elaborate it?
From: rink
4b. Re: exrem(array1,array2) please elaborate it?
From: Robert Chevallier
4c. Re: exrem(array1,array2) please elaborate it?
From: rink
4d. Re: exrem(array1,array2) please elaborate it?
From: Robert Chevallier
5. please write this trailing stoploss code thankyou
From: rink
6a. metatrader 3
From: ChrisB
6b. Re: metatrader 3
From: ChrisB
6c. Re: metatrader 3
From: Joris M.schuller
6d. Re: metatrader 3
From: ChrisB
Messages
________________________________________________________________________
1a. Possible to run a MACD on a foreign symbol?
Posted by: "potatosoupz" potatosoupz@yahoo.com potatosoupz
Date: Mon Nov 30, 2009 7:24 pm ((PST))
I have a chart with a Price series and a Price (foreign) series. I also have MACD within the primary symbol's pane, but when I place a MACD within the foreign symbol's pane, it's identical to the primary symbol on the chart.
Is there a way to show a MACD (foreign) for the foreign symbol?
Messages in this topic (4)
________________________________________________________________________
1b. Re: Possible to run a MACD on a foreign symbol?
Posted by: "Mike" sfclimbers@yahoo.com sfclimbers
Date: Mon Nov 30, 2009 8:03 pm ((PST))
Try SetForeign/RestorePriceArrays
Plot(MACD(), "MACD", colorBlue);
Plot(Signal(), "Signal", colorRed);
SetForeign("ORCL");
Plot(MACD(), "Other MACD", colorGreen);
Plot(Signal(), "Other Signal", colorOrange);
RestorePriceArrays();
Mike
--- In amibroker@yahoogroups.com, "potatosoupz" <potatosoupz@...> wrote:
>
> I have a chart with a Price series and a Price (foreign) series. I also have MACD within the primary symbol's pane, but when I place a MACD within the foreign symbol's pane, it's identical to the primary symbol on the chart.
>
> Is there a way to show a MACD (foreign) for the foreign symbol?
>
Messages in this topic (4)
________________________________________________________________________
1c. Re: Possible to run a MACD on a foreign symbol?
Posted by: "Joris M.schuller" jmschuller@charter.net jorisschuller
Date: Tue Dec 1, 2009 7:47 am ((PST))
//Easy to do using SetForeign and RestorePriceArrays.
//Remove the a param line and writeval sections after verification that it
indeed works.
//Current symbol
a=Param("MACD Mult",1,1,1000,1);// only necessary when using Forex symbols
or small stock values to verify
//that indicator values are identical; also compare last values at RHS.
Plot(a*MACD(), WriteVal(a,1.0)+"*MACD", colorGreen);// Current symbol
Plot(a*Signal(), WriteVal(a,1.0)+"*Signal", colorRed);
//Foreign Symbol
Symbol1="EUR.USD-IDEALPRO-CASH";
SetForeign(Symbol1);//redirects to Foreign symbol
Plot(a*MACD(), WriteVal(a,1.0)+"*Other MACD", colorBlue);
Plot(a*Signal(), WriteVal(a,1.0)+"*Other Signal", colorGold);
RestorePriceArrays();// Back to normal
From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf
Of potatosoupz
Sent: Monday, November 30, 2009 9:25 PM
To: amibroker@yahoogroups.com
Subject: [amibroker] Possible to run a MACD on a foreign symbol?
I have a chart with a Price series and a Price (foreign) series. I also have
MACD within the primary symbol's pane, but when I place a MACD within the
foreign symbol's pane, it's identical to the primary symbol on the chart.
Is there a way to show a MACD (foreign) for the foreign symbol?
Messages in this topic (4)
________________________________________________________________________
1d. Re: Possible to run a MACD on a foreign symbol?
Posted by: "Ara Kaloustian" ara1@san.rr.com Akaloustian
Date: Tue Dec 1, 2009 8:03 am ((PST))
yes ... but you have to do it indirectly... if you want MACD(12,26,9)
Issue = Foreign("symbol","C");
EMA1 = EMA(Issue,12);
EMA2 = EMA(Issue,26);
MACD1= EMA1 - EMA2;
MACDsig = EMA(MACD1,9);
----- Original Message -----
From: Joris M.schuller
To: amibroker@yahoogroups.com
Sent: Tuesday, December 01, 2009 7:44 AM
Subject: RE: [amibroker] Possible to run a MACD on a foreign symbol?
//Easy to do using SetForeign and RestorePriceArrays.
//Remove the a param line and writeval sections after verification that it indeed works.
//Current symbol
a=Param("MACD Mult",1,1,1000,1);// only necessary when using Forex symbols or small stock values to verify
//that indicator values are identical; also compare last values at RHS.
Plot(a*MACD(), WriteVal(a,1.0)+"*MACD", colorGreen);// Current symbol
Plot(a*Signal(), WriteVal(a,1.0)+"*Signal", colorRed);
//Foreign Symbol
Symbol1="EUR.USD-IDEALPRO-CASH";
SetForeign(Symbol1);//redirects to Foreign symbol
Plot(a*MACD(), WriteVal(a,1.0)+"*Other MACD", colorBlue);
Plot(a*Signal(), WriteVal(a,1.0)+"*Other Signal", colorGold);
RestorePriceArrays();// Back to normal
From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf Of potatosoupz
Sent: Monday, November 30, 2009 9:25 PM
To: amibroker@yahoogroups.com
Subject: [amibroker] Possible to run a MACD on a foreign symbol?
I have a chart with a Price series and a Price (foreign) series. I also have MACD within the primary symbol's pane, but when I place a MACD within the foreign symbol's pane, it's identical to the primary symbol on the chart.
Is there a way to show a MACD (foreign) for the foreign symbol?
Messages in this topic (4)
________________________________________________________________________
________________________________________________________________________
2a. Re: Is there a way to backtest on a minutely basis but still referen
Posted by: "Ronald Davis" xokie7@yahoo.com xokie7
Date: Mon Nov 30, 2009 9:09 pm ((PST))
Hi potato, I have never used it, but here is a link about changing time frames>http://www.amibroker.com/guide/h_timeframe.html
________________________________
From: potatosoupz <potatosoupz@yahoo.com>
To: amibroker@yahoogroups.com
Sent: Mon, November 30, 2009 7:05:57 PM
Subject: [amibroker] Is there a way to backtest on a minutely basis but still reference hourly data?
I would like to check the signal on every minute bar, but my signals are based on indicators that are setup with hourly bars.
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
Messages in this topic (4)
________________________________________________________________________
2b. Re: Is there a way to backtest on a minutely basis but still referen
Posted by: "Potato Soup" potatosoupz@yahoo.com potatosoupz
Date: Mon Nov 30, 2009 10:27 pm ((PST))
Thanks, but it seems this doesn't work during backtests, am I wrong? When I use this during backtests, it seems the backtest is still using the time series from the interval of the backtest settings, say 30 minutes, even though the series that I am accessing in the backtest is sandwiched between calls to SetTimeFrame/RestoreTimeFrame calls, having set it at 1hr. Is it known that backtests will ignore this function?
________________________________
From: Ronald Davis <xokie7@yahoo.com>
To: amibroker@yahoogroups.com
Sent: Tue, December 1, 2009 12:09:22 AM
Subject: Re: [amibroker] Is there a way to backtest on a minutely basis but still reference hourly data?
Hi potato, I have never used it, but here is a link about changing time frames>http://www.amibroker.com/guide/h_timeframe.html
________________________________
From: potatosoupz <potatosoupz@yahoo.com>
To: amibroker@yahoogroups.com
Sent: Mon, November 30, 2009 7:05:57 PM
Subject: [amibroker] Is there a way to backtest on a minutely basis but still reference hourly data?
I would like to check the signal on every minute bar, but my signals are based on indicators that are setup with hourly bars.
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
Messages in this topic (4)
________________________________________________________________________
2c. Re: Is there a way to backtest on a minutely basis but still referen
Posted by: "Potato Soup" potatosoupz@yahoo.com potatosoupz
Date: Tue Dec 1, 2009 8:05 am ((PST))
Anyone have any ideas?
-----Original Message-----
From: Potato Soup <potatosoupz@yahoo.com>
Date: Mon, 30 Nov 2009 22:27:57
To: <amibroker@yahoogroups.com>
Subject: Re: [amibroker] Is there a way to backtest on a minutely basis but still reference hourly data?
Thanks, but it seems this doesn't work during backtests, am I wrong? When I use this during backtests, it seems the backtest is still using the time series from the interval of the backtest settings, say 30 minutes, even though the series that I am accessing in the backtest is sandwiched between calls to SetTimeFrame/RestoreTimeFrame calls, having set it at 1hr. Is it known that backtests will ignore this function?
________________________________
From: Ronald Davis <xokie7@yahoo.com>
To: amibroker@yahoogroups.com
Sent: Tue, December 1, 2009 12:09:22 AM
Subject: Re: [amibroker] Is there a way to backtest on a minutely basis but still reference hourly data?
Hi potato, I have never used it, but here is a link about changing time frames>http://www.amibroker.com/guide/h_timeframe.html
________________________________
From: potatosoupz <potatosoupz@yahoo.com>
To: amibroker@yahoogroups.com
Sent: Mon, November 30, 2009 7:05:57 PM
Subject: [amibroker] Is there a way to backtest on a minutely basis but still reference hourly data?
I would like to check the signal on every minute bar, but my signals are based on indicators that are setup with hourly bars.
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
Messages in this topic (4)
________________________________________________________________________
________________________________________________________________________
3a. Re: Results Table ( File ) Import via OLE ?
Posted by: "Tomasz Janeczko" groups@amibroker.com amibroker
Date: Tue Dec 1, 2009 1:44 am ((PST))
Hello,
Sure I can add that. Please fill the request at the feedback center.
Best regards,
Tomasz Janeczko
amibroker.com
On 2009-11-30 20:20, DIANE TONETTI wrote:
>
>
> Tomasz,
>
> Any chance of getting OLE for AB / AA / File / Import ?
>
> Thanks, Fred
>
>
>
>
Messages in this topic (2)
________________________________________________________________________
________________________________________________________________________
4a. exrem(array1,array2) please elaborate it?
Posted by: "rink" boyrinku@yahoo.co.in boyrinku
Date: Tue Dec 1, 2009 3:41 am ((PST))
Hello everybody
please elaborate in simple english what is this formula?
i read help file but cant understand it
says removes excessive signals:
returns 1 on the first occurence of "true" signal in Array1
then returns 0 until Array2 is true even if there are "true" signals in
Array1
in this formula i see this
Buy = H > Ref(HHV(H,200),-1);
BuyPrice = Ref(HHV(H,200),-1);
Sell = L < Ref(LLV(L,100),-1);
SellPrice = Ref(LLV(L,100),-1);
Buy = ExRem(Buy,Sell);
Sell = ExRem(Sell,Buy);
Short = L < Ref(LLV(L,200),-1);
ShortPrice = Ref(LLV(L,200),-1);
Cover = H > Ref(HHV(H,100),-1);
CoverPrice = Ref(HHV(H,100),-1);
Messages in this topic (4)
________________________________________________________________________
4b. Re: exrem(array1,array2) please elaborate it?
Posted by: "Robert Chevallier" robert.chevallier@gmail.com robert.chevallier
Date: Tue Dec 1, 2009 4:14 am ((PST))
Suppose you have the following Buy/Sell arrays
Buy: 0 1 1 0 1 0 0 0 0 0 1 1
Sell: 0 0 0 1 0 0 1 1 1 1 0 0
ExRem (Buy, Sell ) = 0 1 0 0 1 0 0 0 0 0 1 0
ExRem (Sell, Buy) = 0 0 0 1 0 0 1 0 0 0 0 0
It will remove redundants signals (ie: if you have multiple Buy signals,
only the 1st one will be keep (until the next Sell signal is raised))
2009/12/1 rink <boyrinku@yahoo.co.in>
>
>
> Hello everybody
> please elaborate in simple english what is this formula?
> i read help file but cant understand it
> says removes excessive signals:
> returns 1 on the first occurence of "true" signal in Array1
> then returns 0 until Array2 is true even if there are "true" signals in
> Array1
>
> in this formula i see this
> Buy = H > Ref(HHV(H,200),-1);
> BuyPrice = Ref(HHV(H,200),-1);
> Sell = L < Ref(LLV(L,100),-1);
> SellPrice = Ref(LLV(L,100),-1);
>
> Buy = ExRem(Buy,Sell);
> Sell = ExRem(Sell,Buy);
>
> Short = L < Ref(LLV(L,200),-1);
> ShortPrice = Ref(LLV(L,200),-1);
> Cover = H > Ref(HHV(H,100),-1);
> CoverPrice = Ref(HHV(H,100),-1);
>
>
>
Messages in this topic (4)
________________________________________________________________________
4c. Re: exrem(array1,array2) please elaborate it?
Posted by: "rink" boyrinku@yahoo.co.in boyrinku
Date: Tue Dec 1, 2009 6:34 am ((PST))
ok
is it like if i buy 200 day high and 100 day low
suppose if i get signal on 10 oct to buy
next day there is another 200 day high so the system won't buy it again
unless next sell signal come
reply me if i am right?
thankyou for your great help
Robert Chevallier wrote:
>
> Suppose you have the following Buy/Sell arrays
>
> Buy: 0 1 1 0 1 0 0 0 0 0 1 1
> Sell: 0 0 0 1 0 0 1 1 1 1 0 0
>
> ExRem (Buy, Sell ) = 0 1 0 0 1 0 0 0 0 0 1 0
> ExRem (Sell, Buy) = 0 0 0 1 0 0 1 0 0 0 0 0
>
> It will remove redundants signals (ie: if you have multiple Buy
> signals, only the 1st one will be keep (until the next Sell signal is
> raised))
>
> 2009/12/1 rink <boyrinku@yahoo.co.in <mailto:boyrinku@yahoo.co.in>>
>
>
>
> Hello everybody
> please elaborate in simple english what is this formula?
> i read help file but cant understand it
> says removes excessive signals:
> returns 1 on the first occurence of "true" signal in Array1
> then returns 0 until Array2 is true even if there are "true"
> signals in
> Array1
>
> in this formula i see this
> Buy = H > Ref(HHV(H,200),-1);
> BuyPrice = Ref(HHV(H,200),-1);
> Sell = L < Ref(LLV(L,100),-1);
> SellPrice = Ref(LLV(L,100),-1);
>
> Buy = ExRem(Buy,Sell);
> Sell = ExRem(Sell,Buy);
>
> Short = L < Ref(LLV(L,200),-1);
> ShortPrice = Ref(LLV(L,200),-1);
> Cover = H > Ref(HHV(H,100),-1);
> CoverPrice = Ref(HHV(H,100),-1);
>
>
>
Messages in this topic (4)
________________________________________________________________________
4d. Re: exrem(array1,array2) please elaborate it?
Posted by: "Robert Chevallier" robert.chevallier@gmail.com robert.chevallier
Date: Tue Dec 1, 2009 7:16 am ((PST))
Yes, that's true.
NB: usually no need to code it explicitely, as during backtesting redundant
signals are automatically removed (except if you use SIGSCALEUP,
SIGSCALEDOWN signals), because AB allows only 1 position of a stock in a
portfolio at any given time.
Just look in the doc for custom back tester info, and/or inspect the
detailed log generated by the back tester.
2009/12/1 rink <boyrinku@yahoo.co.in>
>
>
> ok
> is it like if i buy 200 day high and 100 day low
> suppose if i get signal on 10 oct to buy
> next day there is another 200 day high so the system won't buy it again
> unless next sell signal come
> reply me if i am right?
> thankyou for your great help
>
>
> Robert Chevallier wrote:
>
>
> Suppose you have the following Buy/Sell arrays
>
> Buy: 0 1 1 0 1 0 0 0 0 0 1 1
> Sell: 0 0 0 1 0 0 1 1 1 1 0 0
>
> ExRem (Buy, Sell ) = 0 1 0 0 1 0 0 0 0 0 1 0
> ExRem (Sell, Buy) = 0 0 0 1 0 0 1 0 0 0 0 0
>
> It will remove redundants signals (ie: if you have multiple Buy signals,
> only the 1st one will be keep (until the next Sell signal is raised))
>
> 2009/12/1 rink <boyrinku@yahoo.co.in>
>
>>
>>
>> Hello everybody
>> please elaborate in simple english what is this formula?
>> i read help file but cant understand it
>> says removes excessive signals:
>> returns 1 on the first occurence of "true" signal in Array1
>> then returns 0 until Array2 is true even if there are "true" signals in
>> Array1
>>
>> in this formula i see this
>> Buy = H > Ref(HHV(H,200),-1);
>> BuyPrice = Ref(HHV(H,200),-1);
>> Sell = L < Ref(LLV(L,100),-1);
>> SellPrice = Ref(LLV(L,100),-1);
>>
>> Buy = ExRem(Buy,Sell);
>> Sell = ExRem(Sell,Buy);
>>
>> Short = L < Ref(LLV(L,200),-1);
>> ShortPrice = Ref(LLV(L,200),-1);
>> Cover = H > Ref(HHV(H,100),-1);
>> CoverPrice = Ref(HHV(H,100),-1);
>>
>>
>
>
>
Messages in this topic (4)
________________________________________________________________________
________________________________________________________________________
5. please write this trailing stoploss code thankyou
Posted by: "rink" boyrinku@yahoo.co.in boyrinku
Date: Tue Dec 1, 2009 3:47 am ((PST))
Hello all
i want to move stoploss on r(risk) based if my position reach at profit
of 2r then
automatically my stop should trail at cost
my risk is 2% instance if i buy abc at 100 with sl of 98(risk 2 point
so r is 2), if abc goes at 104(profit of 4 point so 2r gain) then
stoploss should automatically trail at 100rs basic concept is i don't
have to loss money(if position revers)
if once i get 2r profit
thank you for your help
Messages in this topic (1)
________________________________________________________________________
________________________________________________________________________
6a. metatrader 3
Posted by: "ChrisB" kris45mar@iinet.net.au kris45mar
Date: Tue Dec 1, 2009 4:27 am ((PST))
Hi group.
Since the weekend I can no longer access fxdd data using the MT3 plugin.
Tells me unblock port 1950.
ISP tells me this is never blocked.
I have port forwarded this anyway. Still no luck.
Olga from fxdd tells me to try port 443. (? MT3 defaults to 1950).
If this means MT3 is no longer supported I will need to find other
source of Forex data to get into AB.
--
Regards
ChrisB
Messages in this topic (4)
________________________________________________________________________
6b. Re: metatrader 3
Posted by: "ChrisB" kris45mar@iinet.net.au kris45mar
Date: Tue Dec 1, 2009 6:36 am ((PST))
OK
in case anyone else is interested, reply from FXDD:
<quote>
Hello Chris,
This weekend all MT3 demo accounts were disabled (live accounts were
transferred to MT4 servers). We do not support MT3 system anymore. Sorry
about that but you should have received email about that.
Please download MT4 platform installation file, install it and open MT4
account.
I believe we were the last broker which has been supporting MT3 for that
long!
Best regards,
<unquote>
The search is on for new FX data source...
Regards
ChrisB
ChrisB wrote:
>
> Hi group.
>
> Since the weekend I can no longer access fxdd data using the MT3 plugin.
>
> Tells me unblock port 1950.
>
> ISP tells me this is never blocked.
>
> I have port forwarded this anyway. Still no luck.
>
> Olga from fxdd tells me to try port 443. (? MT3 defaults to 1950).
>
> If this means MT3 is no longer supported I will need to find other
> source of Forex data to get into AB.
>
> --
> Regards
>
> ChrisB
>
>
Messages in this topic (4)
________________________________________________________________________
6c. Re: metatrader 3
Posted by: "Joris M.schuller" jmschuller@charter.net jorisschuller
Date: Tue Dec 1, 2009 7:53 am ((PST))
From the trivia department:
1. Wasn't even aware that FXDD still supported MT3. When I opened a demo
account with them the 6 months ago the only option I thought was MT4.
2. Why the search for another broker? Is there a compatibility issue between
MT3 and MT4?
-----Original Message-----
From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf
Of ChrisB
Sent: Tuesday, December 01, 2009 8:37 AM
To: amibroker@yahoogroups.com
Subject: Re: [amibroker] metatrader 3
OK
in case anyone else is interested, reply from FXDD:
<quote>
Hello Chris,
This weekend all MT3 demo accounts were disabled (live accounts were
transferred to MT4 servers). We do not support MT3 system anymore. Sorry
about that but you should have received email about that.
Please download MT4 platform installation file, install it and open MT4
account.
I believe we were the last broker which has been supporting MT3 for that
long!
Best regards,
<unquote>
The search is on for new FX data source...
Regards
ChrisB
ChrisB wrote:
>
> Hi group.
>
> Since the weekend I can no longer access fxdd data using the MT3 plugin.
>
> Tells me unblock port 1950.
>
> ISP tells me this is never blocked.
>
> I have port forwarded this anyway. Still no luck.
>
> Olga from fxdd tells me to try port 443. (? MT3 defaults to 1950).
>
> If this means MT3 is no longer supported I will need to find other
> source of Forex data to get into AB.
>
> --
> Regards
>
> ChrisB
>
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
Messages in this topic (4)
________________________________________________________________________
6d. Re: metatrader 3
Posted by: "ChrisB" kris45mar@iinet.net.au kris45mar
Date: Tue Dec 1, 2009 8:03 am ((PST))
Hi Joris.
No I just used the MT3 plugin to feed FX data into AB over the last few
years.
The MT3 plug was easy to use, easy to set up and hassle free.
The MT4 plug-in from memory was more clunky and I decided to give it a
miss but will need to revisit this.
Or look at FXCM:
Or go to paid data provider.
MT5 is due for release in early 2010: no idea how that might integrate
with AB yet.
(Actually trade with GFT and Oanda.)
Regards
ChrisB
Joris M.schuller wrote:
>
> From the trivia department:
> 1. Wasn't even aware that FXDD still supported MT3. When I opened a demo
> account with them the 6 months ago the only option I thought was MT4.
> 2. Why the search for another broker? Is there a compatibility issue
> between
> MT3 and MT4?
>
> -----Original Message-----
> From: amibroker@yahoogrou ps.com <mailto:amibroker%40yahoogroups.com>
> [mailto:amibroker@yahoogrou ps.com
> <mailto:amibroker%40yahoogroups.com>] On Behalf
> Of ChrisB
> Sent: Tuesday, December 01, 2009 8:37 AM
> To: amibroker@yahoogrou ps.com <mailto:amibroker%40yahoogroups.com>
> Subject: Re: [amibroker] metatrader 3
>
> OK
>
> in case anyone else is interested, reply from FXDD:
> <quote>
> Hello Chris,
>
> This weekend all MT3 demo accounts were disabled (live accounts were
> transferred to MT4 servers). We do not support MT3 system anymore. Sorry
> about that but you should have received email about that.
>
> Please download MT4 platform installation file, install it and open MT4
> account.
>
> I believe we were the last broker which has been supporting MT3 for that
> long!
>
> Best regards,
> <unquote>
>
> The search is on for new FX data source...
>
> Regards
>
> ChrisB
>
> ChrisB wrote:
> >
> > Hi group.
> >
> > Since the weekend I can no longer access fxdd data using the MT3 plugin.
> >
> > Tells me unblock port 1950.
> >
> > ISP tells me this is never blocked.
> >
> > I have port forwarded this anyway. Still no luck.
> >
> > Olga from fxdd tells me to try port 443. (? MT3 defaults to 1950).
> >
> > If this means MT3 is no longer supported I will need to find other
> > source of Forex data to get into AB.
> >
> > --
> > Regards
> >
> > ChrisB
> >
> >
>
> ------------ --------- --------- ------
>
> **** IMPORTANT PLEASE READ ****
> This group is for the discussion between users only.
> This is *NOT* technical support channel.
>
> TO GET TECHNICAL SUPPORT send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
> http://www.amibroke r.com/feedback/ <http://www.amibroker.com/feedback/>
> (submissions sent via other channels won't be considered)
>
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroke r.com/devlog/ <http://www.amibroker.com/devlog/>
>
> Yahoo! Groups Links
>
>
Messages in this topic (4)
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
------------------------------------------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Digest Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-normal@yahoogroups.com
amibroker-fullfeatured@yahoogroups.com
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@yahoogroups.com
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
------------------------------------------------------------------------