- Search Crypto Craft
-
magnumfreak replied Mar 10, 2009Here are some details regarding the series 3 and other testing requirements. url
Considering a career in trading
-
magnumfreak replied Mar 10, 2009the one I have draws boxes on the screen for each session, asia, London and U.S. Not sure if that is what you need but it is one solution.
Market times indi ?
-
magnumfreak replied Mar 9, 2009some of our managed account clients have their account with Saxo and I have seen it run pip for pip most of the time with several MT4 brokers. ODL, MIG and a few others. Not saying that is definitely where it comes from and I haven't compared ...
Anyone ever want these before?
-
magnumfreak replied Mar 9, 2009FXCM, MBTrading, and Interactive Brokers offer API's which will allow you to access price feeds, historical data, etc. Their API's are free.
[Ask] Automatically Update forex datafeed from Real-time!
-
magnumfreak replied Mar 9, 2009Too many curly brackets. void OpenMarketOrders() { double MA_Line=iCustom(NULL,0,"MA+StdDev",MA_Period, 1, 6, 0, 0,0); double S_Line1=iCustom(NULL,0,"MA+StdDev",MA_Period, 1, 6, 0, 1,0); double S_Line2=iCustom(NULL,0,"MA+StdDev",MA_Period, 1, 6, 0, ...
Syntax Help Needed
-
magnumfreak replied Mar 9, 2009I would just have it stop scanning at bar 2 or 3. That will give the fractal time to settle out before drawing the line. Should the alert go when a new line is formed?
Support and Resistance (Barry) indicator
-
magnumfreak replied Mar 9, 2009why does it have to be a metatrader account? Take advantage of FXCM's free 25 dollar micro accounts. You open the account and they will put the first 25 bucks in for you. That's zero risk to you what more could you ask for? They run ads all over the ...
Forex Without a Job (College/Uni Student)
-
magnumfreak replied Mar 9, 2009nope. you can right click and change the periodicity or click on the button M5 at the top, but no shortcut keys.
MT4 Shortcut timeframe change.
-
magnumfreak replied Mar 9, 2009Work on getting your Series 3 completed. The exam isn't that tough.
Considering a career in trading
-
magnumfreak replied Mar 9, 2009this is most likely do to the indicator using the fractals, if you watch how fractals draws, it is based on the high or low, if a new high or low is formed on the next candle it will just move it over to that candle. It is possible to make the ...
Support and Resistance (Barry) indicator
-
magnumfreak replied Mar 9, 2009because the code has not been identified as a library in the preprocessor directives. Near the top there are a few listed that start with #property, add #property library there is a ton of information in the help files that can answer about 99% of ...
Symbols Check Function
-
magnumfreak replied Mar 9, 2009change it from (1) to [1] and (2) to [2]
need help on programming 2 SMAs on an indicator
-
magnumfreak replied Mar 9, 2009could be a poorly written indicator or two also. Those can cause a major draw on computer resources.
MT4 and Computer Performance
-
magnumfreak replied Mar 9, 2009Based on their demo platform it doesn't look like it. 0.1 is the lowest it will accept. That's not to say it won't be offered when they go live.
MB Trading Futures - Introduction
-
magnumfreak replied Mar 9, 2009I would do cross over. Sometimes price will jump 2 pips or more and just leap over being equal. You could check for cross over and then make sure price is within 1-2 pips of the line.
Order Opening Logic and Best Practice
-
magnumfreak replied Mar 9, 2009if you are looking for it to cross over going up..... if(Open[0] < the line && Close[0] >= the line) it crossed up going down if(Open[0] > the line && Close[0] <= the line) it crossed down
Order Opening Logic and Best Practice
-
magnumfreak replied Mar 9, 2009Several things: 1. If that first block of code is from your EA. Get rid of the while loop. It isn't needed. Either assign i=0 for the current bar or i=1 for the previous bar. No need to loop back in time because your EA really doesn't care what ...
Order Opening Logic and Best Practice
-
magnumfreak replied Mar 9, 2009you can hold your mouse directly over the trendline and a box will appear that will show you the value at that particular point. Otherwise, it can be done in an indicator to show you the value of the trendline.
Do I need an indicator for showing me the value of the trendline??
-
magnumfreak replied Mar 8, 2009your assumption is that you will never miss, never have a losing streak, etc. Based on your calculations you would need to purchase 1 standard lot and get 10 pips positive in order to see 1% gain daily. you make no mention of stop size do you even ...
[survey] scapling 10pips avg a day, do u think possible?
-
magnumfreak replied Mar 8, 20091. Keep it for yourself. Never publish it anywhere. 2. Nothing. My current EA is up to 3 accounts, the only thing I am running into is finding enough brokers who are willing to share their API since this EA doesn't run in MT4.
A couple of EA questions.