- Search Crypto Craft
-
magnumfreak replied Aug 21, 2009I started to wonder about something today. I wondered why we seem to be hardwired to overcomplicate simple things. Then I thought back to my days of working with some of the big name motivational speakers. Quite frankly it is fear of loss. I ...
The Ogre's Trading Journal
-
magnumfreak replied Aug 21, 2009//-------------------------------------------------------------------- // dialogue.mq4 // The code should be used for educational purpose only. //--------------------------------------------------------------- 1 -- #include <WinUser32.mqh> // Needed ...
Learning out of desperation----a bit of a blog
-
magnumfreak replied Aug 21, 2009Welcome to the Internet and especially FF. Most people are too lazy which goes for a large number of people on this forum. They can't do it themselves so it is impossible for someone else to be successful. Instead they just hang out in the ...
Exceptional day, will it continue ?
-
magnumfreak replied Aug 21, 2009it will within the start() function. Everywhere else it will just return it back to the point that called the function.
Learning out of desperation----a bit of a blog
-
magnumfreak replied Aug 21, 2009see if they will let you open an account at either their Australian branch or their new UK branch. They offered it to existing customers when the NFA no hedge rule when into effect. Can't hurt to ask.
100% Win Math Grid Ea
-
magnumfreak replied Aug 21, 2009fxsolutions micro lots up to 400:1 ratio. I think the min to open is 250. Customer service is so so but withdrawals are immediate. If I do bank wire it is usually in the account in less than 24 hours.
100% Win Math Grid Ea
-
magnumfreak replied Aug 21, 2009At the end of each trading session I will post the number of pips gained/lost. Maybe a chart or two to show how well the markets do trend even on the 1 min chart. Updates will begin August 24th after the Asian session.
The Ogre's Trading Journal
-
The Ogre's Trading Journal
Started Aug 21, 2009|Trading Journals|147 replies
First, The Rules: 1. This is a trading JOURNAL, it is not my intention to teach anyone how I ...
-
magnumfreak replied Aug 20, 2009I used to have that job around here..... Got fired for my "hands on" approach to my work.

Cesarnc's market talk, gossips, rumours & fun
-
magnumfreak replied Aug 19, 2009You have to see it the same way a computer sees it. Just as an example let's say that GBPJPY's high two bars ago was 156.27 if you subtract 40 from that you would get 116.27 definitely not the number you were looking for. In order for the ...
I'm in trouble with EA
-
magnumfreak replied Aug 19, 2009No. Pricepoint must be converted into pips. You do so by multiplying it by Point. This also assumes that you are using a standard broker and not one that uses fractional pip pricing. Also, you only need one - sign just before pricepoint.
I'm in trouble with EA
-
magnumfreak replied Aug 19, 2009Close of previous bar: Close[1]; High of bar before that: High[2];
I'm in trouble with EA
-
magnumfreak replied Aug 18, 2009Now that the first two questions are out of the way let me go ahead and add the others just to make it official.... 1. Can you post your template? 2. Do you trade this live? 3. Is there an EA for this method?
And somewhere in the next ...Promising 1 hour strategy
-
magnumfreak replied Aug 18, 2009You have a common misconception about leverage and risk management. First off you should never buy 1 standard lot with a 1k account. You would very quickly move into a margin call when price moved against you even a few pips as your available margin ...
Could you introduce any broker base on ECN+MT4+4 decimal??
-
magnumfreak replied Aug 18, 2009I tested it on my computer and everything works as it is supposed to be working. Not sure what sort of problems you are having.
Creating Sound Alert with Timeout and Iterations
-
magnumfreak replied Aug 18, 2009make sure your ticks are coming in faster than every 7 seconds. Set that value to something like 15 or something for testing. There was one little bug I fixed but that should not have impacted how it worked; ...
Creating Sound Alert with Timeout and Iterations
-
magnumfreak replied Aug 18, 2009init when applied deinit when removed start on each tick true for both EA's and indicators.
Learning out of desperation----a bit of a blog
-
magnumfreak replied Aug 18, 2009insert extra code as needed in if statement to control when the alert sounds. This has not been tested but should work fine. extern int maxiterations=500; extern int Delay=7; datetime LastTimeSaved; int AlertCount; if(TimeCurrent() > ...
Creating Sound Alert with Timeout and Iterations