MQL4 - automated forex trading   /  

Forum

New API MetaTrader 4 AVAILABLE

Back to topics list  | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > >> To post a new topic, please log in or register

avatar
128
Mehmet 2008.07.28 17:35 

thank You for delphi sample . but real account server not found "InterbankFX-MT4 Standard Accounts 2". how do add ?


avatar
62
TradeZone 2008.07.28 18:09 
Mehmet wrote >>

thank You for delphi sample . but real account server not found "InterbankFX-MT4 Standard Accounts 2". how do add ?

Mehmet,

You can add how many srv do you want.

Just put them inside <Program Files\Tradezone\TZMT4API\Source\srv>.

For example:

- Go to <Program Files\Interbanfx Trader\config>, copy "InterbankFX-MT4 Standard Accounts 2.srv"

- Copy to <Program Files\Tradezone\TZMT4API\Source\srv>

Best regards.


avatar
3
MtiQS 2008.07.30 17:09 

@TradeZone,


Hello,


yesterday I've written an email to "mtasso@itevolution.com.br" and CC to "suporte@itevolution.com.br" from "mtiqs@arcor.de". Please could you send me an answer.


Thanks in advance.


MtiQS


avatar
62
TradeZone 2008.08.11 20:07 

The return value of HistoryGet_MT4() is, in Delphi, pchar. The format is a simple csv file. You must split using ';'. CSV's fields: date, open, high, low, close and volume.

Take a look in this simple example:

procedure TForm1.Button1Click(Sender: TObject);

var

pvalor : pchar;

valor : string;

begin

pvalor := HistoryGet_MT4(Handle, 'EURUSD', 0, 0, 60, 0);

valor := string(pvalor);

if (valor <> '') then
Memo1.Lines.Add(valor);

Dispose_MT4(pvalor);

end;

Best regards.


avatar
8
qm00 2008.08.20 11:14 


Hi TradeZone,



Are you currently able to connect the InterbankFx MT4 servers using your API? This is the only server I've been unable to connect to using your API


I've tried several InterbankFx live and demo accounts without any success. The LogIn_MT4() function returns 0.


I tried your Delphi Sample application, and it couldn't connect to the InterbankFx servers either. I am able to connect to other broker servers though.


Regards,


QM


avatar
62
TradeZone 2008.08.20 17:13 
qm00 wrote >>


Hi TradeZone,


Are you currently able to connect the InterbankFx MT4 servers using your API? This is the only server I've been unable to connect to using your API


I've tried several InterbankFx live and demo accounts without any success. The LogIn_MT4() function returns 0.


I tried your Delphi Sample application, and it couldn't connect to the InterbankFx servers either. I am able to connect to other broker servers though.


Regards,


QM

Hi QM:

We tested and still worked.

Look at your mail.

Regards,

TradeZone

avatar
200
igar00 2008.08.24 15:59 
Password change need.

avatar
1515
DxdCn 2008.08.25 10:23 

It is a good idea !

but login from this dll ? How can I use it to contol my Mt terminal except login-logout....., I only want use it to transfer my order information .... not use a mute-terminal.

Is it supplied from MT? or who can sure it is safe?


avatar
62
TradeZone 2008.08.25 17:38 
igar00 wrote >>
Password change need.
We did not understand, please more.

avatar
62
TradeZone 2008.08.25 17:39 
DxdCn wrote >>

It is a good idea !

but login from this dll ? How can I use it to contol my Mt terminal except login-logout....., I only want use it to transfer my order information .... not use a mute-terminal.

Is it supplied from MT? or who can sure it is safe?

is not possible to do this way.
Regards,

TradeZone
Back to topics list   | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > >>  

To add comments, please log in or register