Expert Advisors: MT5 DDE - Server - page 2

 

This post is quite old, but still relevant.

This tool is amazing, and can be used to integrate data even from multiple instances of MT4 or multiple EAs.

If any of the previous questions is still relevant, please re-post them and I will answer.

The same goes for MQL4 questions, since I can help with MQL4 also.

 
fridayda13:

This post is quite old, but still relevant.

This tool is amazing, and can be used to integrate data even from multiple instances of MT4 or multiple EAs.

If any of the previous questions is still relevant, please re-post them and I will answer.

The same goes for MQL4 questions, since I can help with MQL4 also.

Hi, thanks .

I have a problem with alerts.

You could help me with this.

I use MT5.

I update the values in the excel form but this alarm appears.

alarm

 

Would it be possible to get the source code for the DLL and EXE? I am writing my first DLLs for MT5 (32bit and 64bit) and this would be a perfect project.

 
Program Running fine.. But i don't understand where i need to create excelsheet.. or its generate auto? if its auto generate so where i can find it?

Please help

Thanks,
 
Tom Sasson:

This post is quite old, but still relevant.

This tool is amazing, and can be used to integrate data even from multiple instances of MT4 or multiple EAs.

If any of the previous questions is still relevant, please re-post them and I will answer.

The same goes for MQL4 questions, since I can help with MQL4 also.

Hi Tom ,


I would like to export in real time buy and sell tick data to excell, is that possible using this tool?

Thanks

 
MARFE:

Hi Tom ,


I would like to export in real time buy and sell tick data to excell, is that possible using this tool?

Thanks

Sorry for late replying, it was possible of course.

I said "was" because I haven't used this tool for 3 years now, and haven't tried on Windows 10 so you may experiment and report back.

 
Hello
I have a question

How to add the purchase price of a particular currency pair to Excel

This shows only the EMA 21

i need ask & bid currency

 
Check & Add Item DDE
   if(!CheckItem("A","B")) 
     {
      if(!AddItem("A","B")) return; 
     }

   if(!CheckItem("COMPANY","Value")) AddItem("COMPANY","Value");
   if(!CheckItem("TIME","Value")) AddItem("TIME","Value");
    if(!CheckItem("BID","EURUSD")) AddItem("BID","EURUSD");


// Set Item Value DDE  

   SetItem("COMPANY","Value",(string)AccountInfoString(ACCOUNT_COMPANY));
   SetItem("TIME","Value",(string)TimeCurrent());

   

   >>>>>> SetItem("BID","EURUSD",(string) ?????());<<<<<<

                      

HI GUYS IF WANT SHOW EURUSD BID OR ASK PRICE HOW TO MODIFY THIS?

THANK YOU

 
snowking87:

Please edit your post and use the code button (Alt+S) when pasting code.

EDIT your original post, please do not just post the code correctly in a new post.

Please do not make excessive use of capital letters when posting. It is considered shouting and very rude.

 
snowking87:
Check & Add Item DDE
   if(!CheckItem("A","B")) 
     {
      if(!AddItem("A","B")) return; 
     }

   if(!CheckItem("COMPANY","Value")) AddItem("COMPANY","Value");
   if(!CheckItem("TIME","Value")) AddItem("TIME","Value");
    if(!CheckItem("BID","EURUSD")) AddItem("BID","EURUSD");


// Set Item Value DDE  

   SetItem("COMPANY","Value",(string)AccountInfoString(ACCOUNT_COMPANY));
   SetItem("TIME","Value",(string)TimeCurrent());

   

   >>>>>> SetItem("BID","EURUSD",(string) ?????());<<<<<<

                      

HI GUYS IF WANT SHOW EURUSD BID OR ASK PRICE HOW TO MODIFY THIS?

THANK YOU

if(!CheckItem("BID","EURUSD")) AddItem("BID","EURUSD");
if(!CheckItem("ASK","EURUSD")) AddItem("ASK","EURUSD");
SetItem("BID","EURUSD",(double)SymbolInfoDouble(Symbol(),SYMBOL_BID));
SetItem("ASK","EURUSD",(double)SymbolInfoDouble(Symbol(),SYMBOL_ASK));
Reason: