Just made an IDE for MQL4
-
garyfritz
Re: Just made an IDE for MQL4
Nice to see you're still around, w633! This is only your 2nd post in about 8 months. You made a big contribution and then disappeared. 
-
w633
- Trader
- Posts: 82
- Joined: Sat Mar 10, 2012 1:49 pm
Re: Just made an IDE for MQL4
got pretty busy with family & work, plus not much work has been done on this project and the next version, therefore i only occasionally visit the site nowadays. hopefully after summer i'll have more time to work on next version.
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: Just made an IDE for MQL4
We understand and sympathise. Family and work have to come first.w633 wrote:got pretty busy with family & work, plus not much work has been done on this project and the next version, therefore i only occasionally visit the site nowadays. hopefully after summer i'll have more time to work on next version.
Many of us are using your current offering with great pleasure. We are most grateful to you for it.
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
-
phaholj
- Trader
- Posts: 25
- Joined: Thu Aug 16, 2012 6:25 am
Re: Just made an IDE for MQL4
This is great
I have been using it for long time.
Waiting for the next release.
I have been using it for long time.
Waiting for the next release.
- kwanann
- Trader
- Posts: 948
- Joined: Thu Nov 29, 2012 1:53 am
Re: Just made an IDE for MQL4
Just found it and LOVING it, great stuff!!
Thanks w633
Thanks w633
I've been trading using OM Dual N EA for the past 2 years, live results can be found over at https://www.fxblue.com/users/kwanann
-
Jimdandy
- Trader
- Posts: 22
- Joined: Fri Jul 20, 2012 3:14 am
Re: Just made an IDE for MQL4
Just installed the editor in the terminal directory and renamed metaeditor and named Scite-mql metaeditor.exe and did the mklink thing .....like i usually do and I'm getting this..
"Upgrade MQL4 editor to the latest 509 build or reinstall" in the journal.
Is 509 screwing us? Or am I just stupid...
I figure it's probably both of the above.....
"Upgrade MQL4 editor to the latest 509 build or reinstall" in the journal.
Is 509 screwing us? Or am I just stupid...
I figure it's probably both of the above.....
-
jjasper7
- Trader
- Posts: 87
- Joined: Mon Mar 19, 2012 11:44 pm
- Location: Mesa,AZ (near Phoenix)
Re: compiler challenge
where do i find operating rules? If anyone sees what my error is, please help. i am getting an error trying to compile a couple of programs where it says"expression on global scope not allowed" when i have variables first defined. for instance: double m13s; is placed before init(), and then the program also alarms: "'m13' - variable not defined" when i try to use it. I am not seeing any difference between the statement of that and the next variable (int m13o), which works fine. both are then referenced ibolow the 'start()' statement.
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: compiler challenge
This is a classic example of how unhelpful CrapQl4 is and is nowt to do with the ide.jjasper7 wrote:where do i find operating rules? If anyone sees what my error is, please help. i am getting an error trying to compile a couple of programs where it says"expression on global scope not allowed" when i have variables first defined. for instance: double m13s; is placed before init(), and then the program also alarms: "'m13' - variable not defined" when i try to use it. I am not seeing any difference between the statement of that and the next variable (int m13o), which works fine. both are then referenced ibolow the 'start()' statement.
Somewhere earlier in your code, you have made a mistake that CrapQl4 has not reported accurately. Instead, it generates an error further down the line where you have no chance of finding the actual error. You will have missed out an ; or confused } with a ) or something.
That is why I do a recompile every time I add a line of code, or initially create a construct such as:
Code: Select all
if (some condition)
{
}Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
-
Jimdandy
- Trader
- Posts: 22
- Joined: Fri Jul 20, 2012 3:14 am
Re: Just made an IDE for MQL4
sounds like you have a closing curly bracket in the wrong place.. once you put an extra } in there you are out of the function and then the code below it is in the global area between functions.. happy hunting...oh.. and M13 is not the same as M13s.. and why is this in this thread?
...on another note... Steve.. are you able to get the Scite-mql to work with the latest mtcrap version 509?.. I like being able to fool it into using the good editor.... is that a thing of the past?...
...on another note... Steve.. are you able to get the Scite-mql to work with the latest mtcrap version 509?.. I like being able to fool it into using the good editor.... is that a thing of the past?...
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: Just made an IDE for MQL4
I appear to be on build 507 - GP live account and coding demo.Jimdandy wrote:sounds like you have a closing curly bracket in the wrong place.. once you put an extra } in there you are out of the function and then the code below it is in the global area between functions.. happy hunting...oh.. and M13 is not the same as M13s.. and why is this in this thread?
...on another note... Steve.. are you able to get the Scite-mql to work with the latest mtcrap version 509?.. I like being able to fool it into using the good editor.... is that a thing of the past?...
Every time I started up my coding machine, I found my metaeditorcrap replaced by Scite was re-replaced by metaeditorcrap. I have discovered from this that creating a desktop shortcut to Scite is a better alternative to using the F4 key from within Empty4 - Scite reloads with my exit files in place and with all their formatting/bookmarks etc.
To open a different file, ctrl-O from within Scite is a better alternative to trying to open it via the Navigator window in Empty4.
These are wonderful examples of those bloody morons at CrapperTrader forcing me to use alternative software in a more constructive fashion. Stupid bastards.
Re:
Jim, I would usually agree with you in your implied criticism, but this thread rarely raises a mention and so many newcomers who are also coders, must miss this fantastic piece of software. Perhaps better to encourage as much discussion here so it comes to peoples' attention, even if the discussion is not actually relevant to Scite?.. and why is this in this thread?
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.