| / | Forum |
|
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 ? |
|
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. |
|
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 |
|
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 Dispose_MT4(pvalor); end;
Best regards. |
|
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 |
|
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 |
|
igar00
2008.08.24 15:59
Password change need.
|
|
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? |
|
TradeZone
2008.08.25 17:38
We did not understand, please more. |
|
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 |