Metatrader 4

My Post

EA Programming for Metatrader

Hi,

We want to let you know if you are looking for professional support in MetaTrader programming you can deal with us. We are able to turn your most sophisticated ideas into high quality and reliable code. We can create Expert Advisors, Custom Indicators or Scripts. We also can fix any EA, depends on your requirement.

If you interested with our service, please do not hesitate to contact us.
Thank you.

Best Regards,
http://mq4-experts.blogspot.com/
mq4.experts@gmail.com

hc62916


Compiler Procedures

I just want to know. I have been trying to use the metaeditor compiler or by pressing f5 to conver mq4 to ex4 file but it says "compiling .....My EAs name" and it is as if it will continue forever. How do I know when it has finish compiling the file and where can I locate it? Please, if anyone has the idea, he or she should tell me

Need an indicator MACD to ADX

I need an indicator.
If you are a programmer I will pay for such an indicator. Please let me know you can contact me at tigger.gotstripes@gmail.com

Thank you,
tigger

Problems Creating - MetaTrader Extension dll.

I recently created the demo.dll in the MetaTrader development course but when I put the script into my MetaTrader program, I am getting the message "cannot load library 'demo.dll' (error 126). Can someone help me figure out what this message means and why it is occuring?

Greetings, looking for some code

Hello,

I am looking for code that will let this script put on a trade; my understanding is that I need to account
For maximum, minimum and market info mode step in order for it to function correctly.

I am a learning coder, and any help is greatly appreciated, also thank you Coders Guru for this website which will help me learn to code.

Best regards Dale.

The Idea of the script is to use high [1] - low [1] to calculate lots, the account percentage risk is fixed at 1/4 percent.

//+------------------------------------------------------------------+
//| send_pending.mq4 |

Greetings, looking for some code

Hello,

I am looking for code that will let this script put on a trade; my understanding is that I need to account
For maximum, minimum and market info mode step in order for it to function correctly.

I am a learning coder, and any help is greatly appreciated, also thank you Coders Guru for this website which will help me learn to code.

Best regards Dale.

The Idea of the script is to use high [1] - low [1] to calculate lots, the account percentage risk is fixed at 1/4 percent.

//+------------------------------------------------------------------+
//| send_pending.mq4 |

Forexeasycash

Can anyone tell me how to insert this indicator program into metatrader4? I can't find a tutorial on how to use this platform which seems so very complicated. I am told to copy it into program files/experts/indicators, but I just can't seem to do it. Can anyone help?

dll needs float type

The dll I'm using requires a float type. MT4 only uses double types. How do I send a double to a fuinction like

//(code from tradecel.H)
short _stdcall TRADE_ASK(float *ov);

When I try to use this function in mt4 I get an "incompatible type" error

#import "TRADECELGBPOPEN.DLL"
double TRADE_ASK(double& currask[0])
{return(answer);}
//
answer1=TRADE_ASK(currask[0]);

Any ideas anybody?