- Search Crypto Craft
-
magnumfreak replied Feb 14, 2008Can you post your OrderFind function? I need to make sure your are using the orderselect function.
S/L won't adjust
-
magnumfreak replied Feb 14, 2008couldn't find one in my list of indicators. I have seen one that works with horizontal lines but not a standard trendline. You could write an indicator that places two trendlines on the screen (one for trendline breaks up and one for breaks down). ...
Trendline violation alert?
-
magnumfreak replied Feb 14, 2008Check the current time if it is not 0000,0400,0800,1200,1600 or 2000 then don't execute the EA. Your 4 hour candles will always fall on those timeframes. Place the following code at the beginning of your Start function. If the current time does not ...
Controlling the Time an EA Works - help needed
-
magnumfreak replied Feb 13, 2008Even if they have a limited time on their account, when it expires just click File, create account and off you go again. MIG provides a good feed on their demo account. Check the preferred brokers section of this web site for other choices.
Brokers for technical trading that have demo accounts. MT4
-
magnumfreak replied Feb 12, 2008as long as you have complete details on what the criteria are then it shouldn't be too hard to re-create. As the other poster said, post this in the metatrader section you will get more responses. I would help you but I am bogged down working on ...
Professional Help Needed with EA
-
magnumfreak replied Feb 12, 2008do you have the original source code? There will be two files if you do. One will be listed as .MQ4 and the other .EX4 Who ever alters it for you will need the MQ4 otherwise you will need to completely re-write the ea.
Professional Help Needed with EA
-
magnumfreak replied Feb 12, 2008Here are all the free ones you can stand: url Some good, some so so, some questionable.
trading programs/software
-
magnumfreak replied Feb 12, 2008Here is an exerpt from a web site that explains how to caculate pip values. And yes, the pip value is constantly recalculated for currency pairs that you have bought or sold. How to Calculate Pip Values A "pip" is the smallest increment in any ...
Pip value in Currenex
-
magnumfreak replied Feb 10, 2008try just setting limit to 100 or whatever. It will give you something to test it with. limit=50;
Someone fix these indicators please
-
magnumfreak replied Feb 10, 2008This statement: int limit=Bars-counted_bars; will have a large value on initial startup since none of the bars have been calculated. The limit statement is used here: for(i=0, i1=0, i2=0, i3=0, i4=0;i<limit;i++) change the limit value to something ...
Someone fix these indicators please
-
magnumfreak replied Feb 8, 2008use the random number generator in MT4. You will need to seed the generator first to give a better result. Use something like local time to seed it then generate a random number. int randomnumber; MathSrand(TimeLocal()); randomnumber = MathRand(); ...
Coin-Toss Trading Strategy
-
magnumfreak replied Feb 7, 2008if your system is based purely from calculable values and doesn't rely on non-programmable nuances then an ea (or blackbox system) can be the most profitable of all trading methods. Mainly due to the fact the computer can be online and monitoring ...
BEST EAs
-
magnumfreak replied Feb 7, 2008if you have the original mq4 file it would help. coding an alert shouldn't take too much time.
Bollinger Squeeze Alert (ps for the coders)
-
magnumfreak replied Feb 7, 2008there are a number of pivot calculators out there that work really well. pivot4x is one that will do 4hr, daily, weekly and monthly pivots. And best of all, free.
You are right on the processor usage with mt4. If the code is written correctly, ...Should I Learn MQL4 and WHY?
-
magnumfreak replied Feb 7, 2008place them in your experts folder not in the indicator folder.
How do i set up an Expert Advisor
-
magnumfreak replied Feb 7, 2008writing the code to do this is simple but you would have to attach the indicator to the trend and then it would work. There is no way to have metatrader automatically attach it when you open a new chart (that I know of). Do you want the indicator to ...
Simple indicator requested
-
magnumfreak replied Feb 6, 2008he said that a MA is one COMMAND not one line of code. Take the time to read through the pdf's in the file I posted. It will get you started. To get mt to draw a ma, you must: 1. declare the trendline properties such as where you want it to draw ...
Should I Learn MQL4 and WHY?
-
magnumfreak replied Feb 6, 20081. Yes if you are interesting in programming. The language is similar to C++ with some added functions built in. 2.MQ4 is more of a pain in the a**. With mq4 you can basically code anything in that you want it to do. Easy language is simple and will ...
Should I Learn MQL4 and WHY?
-
magnumfreak replied Feb 5, 2008you just need to declare y and i. int y; int i; Just before the for statement will work fine.
Alert Once per bar
-
magnumfreak replied Feb 5, 2008ok, here are some things: 1. The ma calculation for different timeframes in mt4 doesn't work right. I know shocker right? Here is a code snippet to correct for this: datetime TimeArray[]; double ma1array[500]; ...
Alert Once per bar