Pipswanted - Latest published articles in Programming
1
pips

Simple MetaTrader MQL4 helper functions

published 159 days, 2 hours, 8 minutes ago posted by SheriffSheriff 168 days, 16 hours, 14 minutes ago
Sunday, April 04, 2010 8:53:35 PM GMT Friday, March 26, 2010 6:48:00 AM GMT
Here are some simple functions that you can use in your forex expert advisors and custom indicators written in MQL4 for MetaTrader. If you split out commonly used functionality into separate functions with logical names (as I’ve done here) then you should find that your MQL4 code becomes more readable. (more)
category: Programming | clicked: 11 | comment | | source: www.tradingdiary.co.uk
tags: functions, metatrader, mql
1
pips

How to Exchange Data: A DLL for MQL5 in 10 Minutes - MQL5 Articles

published 211 days, 6 hours, 10 minutes ago posted by adminadmin 212 days, 2 hours, 32 minutes ago
Thursday, February 11, 2010 4:51:13 PM GMT Wednesday, February 10, 2010 8:29:47 PM GMT
As a matter of fact, there are not many developers who remember exactly how to write a simple DLL library and what are features of binding different systems. Using several examples, I will try to show the entire process of the simple DLL's creation in 10 minutes, as well as to discuss some technical details of our binding implementation. We will use Visual Studio 2005/2008; its Express versions are free ... (more)
category: Programming | clicked: 22 | comment | | source: www.mql5.com
tags: dll, mt5
1
pips

Data Exchange between Indicators: It's Easy - MQL5 Articles

published 211 days, 6 hours, 10 minutes ago posted by adminadmin 212 days, 2 hours, 31 minutes ago
Thursday, February 11, 2010 4:51:13 PM GMT Wednesday, February 10, 2010 8:30:45 PM GMT
Why we appreciate newbies, is because they are stubbornly unwilling to use search, and there are many topics like "FAQ", "For newbies" or "The one who asks a question from this list, will burn in hell". Their true mission is to ask questions, like "How to...", "Is it possible to..." and often get answers like "No way", "It's impossible". The eternal phrase "never say never again" has been stimulating scien... (more)
category: Programming | clicked: 6 | comment | | source: www.mql5.com
tags: mql, mt5
1
pips

Interaction between MetaTrader 4 and Matlab via CSV Files - MQL4 Articles

published 211 days, 6 hours, 10 minutes ago posted by SheriffSheriff 213 days, 4 hours, 48 minutes ago
Thursday, February 11, 2010 4:51:13 PM GMT Tuesday, February 09, 2010 6:13:51 PM GMT
Interaction between MetaTrader 4 and Matlab via CSV Files. The Matlab environment's computational power is known to be considerably superior to that of any programming language ... (more)
category: Programming | clicked: 21 | comment | | source: articles.mql4.com
tags: csv, matlab, mt4
1
pips

How Not to Fall into Optimization Traps? - MQL4 Articles

published 213 days, 1 hour, 56 minutes ago posted by SheriffSheriff 213 days, 4 hours, 29 minutes ago
Tuesday, February 09, 2010 9:05:14 PM GMT Tuesday, February 09, 2010 6:32:03 PM GMT
Creation of a trading system, first of all, consists in formulation of rules that would open and close a long or a short position. These rules usually contain some indicators and parameters. If they are changed, the profitability of the trading system will change, too. The question occurs very frequently: Is there any necessity to optimize trading systems or is this just fitting the system to historical data? This most probably attaches to the fact that different people may mean absolutely different proc... (more)
category: Programming | clicked: 8 | comment | | source: articles.mql4.com
tags: mql, optimalization
1
pips

Interaction between MetaTrader 4 and Matlab via DDE - MQL4 Articles

published 213 days, 3 hours, 42 minutes ago posted by SheriffSheriff 213 days, 4 hours, 49 minutes ago
Tuesday, February 09, 2010 7:19:32 PM GMT Tuesday, February 09, 2010 6:12:36 PM GMT
Articles  Features  Interaction between MetaTrader 4 and Matlab via DDE. I have already published an article about data exchange between MetaTrader 4 and Matlab via CSV files... (more)
category: Programming | clicked: 22 | comment | | source: articles.mql4.com
tags: matlab, mt4
1
pips

Interaction between MеtaTrader 4 and MATLAB Engine (Virtual MATLAB Machine) - MQL4 Articles

published 213 days, 3 hours, 42 minutes ago posted by SheriffSheriff 213 days, 4 hours, 47 minutes ago
Tuesday, February 09, 2010 7:19:32 PM GMT Tuesday, February 09, 2010 6:14:59 PM GMT
Interaction between MеtaTrader 4 and MATLAB Engine (Virtual MATLAB Machine). MetaTrader 4 and the MATLAB mathematical package have gained high popularity am... (more)
category: Programming | clicked: 18 | comment | | source: articles.mql4.com
tags: matlab, mt4
1
pips

CodeGuru | Integration Visual Studio .NET DLLs with Metatrader 4

published 213 days, 3 hours, 52 minutes ago posted by SheriffSheriff 213 days, 4 hours, 53 minutes ago
Tuesday, February 09, 2010 7:10:00 PM GMT Tuesday, February 09, 2010 6:08:57 PM GMT
This article will explain how to create a wrapper for a .NET DLL and import it in MetaTrader 4. I used Visual Studio 2005 and wrote the example .NET DLL in C# and the wrapper in C++. The wrapper is again a DLL, which implements the Stdcall calling convention (MetaTrader 4 supports only this convention but you can produce a DLL with any calling convention as long as .NET supports it). The .NET DLL can be easily written in any other .NET language. The techniq... (more)
category: Programming | clicked: 23 | comment | | source: www.codeguru.com
tags: mt4, visual studio