View Single Post
  #3 (permalink)  
Old 09-23-2007, 06:56 AM
lepiricus's Avatar
lepiricus lepiricus is offline
Senior Member
 
Join Date: Jun 2007
Posts: 210
lepiricus is on a distinguished road
Quote:
Originally Posted by Manxxx View Post
The word "convert" may be a bit loose.
The MQL4 language is a C construct, meaning it uses a syntax & structure that's loosly based on C. I would be surprised if you could find a "Converter" for it but it would be reletively simple although time consuming to "Translate" the MQL4 Code to VB.

Example:
MQL4 For loop;
for(i=0;i==15;i++)
{
do something here;
}

Translation to VB;
i=0
For i=1 to 15
Do something here
Next

Hope that helps answer your question.

Manx
Yes it does thanks. It appears on the surface that visual basic is easier language to code in, but I understand now how a "converter" wouldn't work.
__________________
All your pips are belong to us!
Reply With Quote