Pseudo Code

Building an Automated FOREX System: Writing the Pseudo Code

By Mark | Published April 12th, 2010

In our last article we examined the basics of writing pseudo code and briefly looked at strategy design. If you have not read Designing a simple strategy and Pseudo Code you will need read that before continuing. In this article we will be translating the original Turtle Trader rules into pseudo code. This will ensure…

Exporting Data From MetaTrader

By Mark | Published April 6th, 2009

I received an email today from a reader wanting to know if there was an expert advisor available that would export data to a csv file. although I have not myself seen an EA that does this it is a trivial matter to code such an EA shown below: int handlFile; handlFile = FileOpen(“symbol.csv”, FILE_CSV…

Pseudo Code for Automated Trading Systems

By Mark | Published May 7th, 2008

When it comes to writing computer programs or in this case automated trading systems translating English into programming code can be fraught with danger. Pseudo Code on the other hand refers to a more structured English for describing a process or program. It is important that you learn to write quality pseudo code as it…