- Search Metals Mine
-
Zeuzere replied Dec 20, 2006What comments you want? I just see the 1 page of strategy tester report (Maybe its my openoffice that cause me some trouble). Anybody can build a EA thats ouput good result (They are many flaws in the strategy builder! Its better to see it in action ...
MEVA machine that makes money
-
Zeuzere replied Dec 20, 2006int total = OrdersTotal(); for(int loop=0;loop < total ; loop++ ){<total;loop++){><total;loop++){></total;loop++){></total;loop++){>if(!OrderSelect(loop,SELECT_BY_POS)){Print("Error selecting order : ",GetLastError()); return(0); // if your not able ...
Code for Buy Limits?
-
Zeuzere replied Dec 20, 2006If you have multiple order on the same currency : Ex.: Buy at 1.2500 and 1.2550 you can use the Magic Number(magic parameter from OrderSend) to identify each order and OrderType() to get order type (the buy,sell,buy limit and sell limit,etc...) .
Code for Buy Limits?
-
Zeuzere replied Dec 20, 2006Ok, so its like i said, if you already put your order... You OrderSelect(...) the order, then use the OrderOpenPrice() to get the entry price.
Code for Buy Limits?
-
Zeuzere replied Dec 20, 2006He want to sell at 1.2500 and take profit at 1.24... Right?I'm sure ps.: By the way, if you want to buy/sell and place after a sell or buy limit order be carefull. If you do this you will be hedging...
Code for Buy Limits?
-
Zeuzere replied Dec 20, 2006A little addon for sell limit: its not 1.2500 * 1.10 , or you will get 1.2500 +10%, it should be 1.2500 - ~10% You must substract for selllimit so Buy limit is Bid + (Bid * 10 / 100 ) Ans Sell limit Ask - (Ask*10/100) Also its a bit weird!!!! 1.2500 ...
Code for Buy Limits?
-
Zeuzere replied Dec 20, 2006Go see this: MT4 learning how to program Post#1 Well done Read it, after you will be able to start nicely

How to draw a box in MT4?
-
Zeuzere replied Dec 20, 2006Do you know basic stuff like : For, switch, function, parameter, double, int, etc.... Or you start from nothing? If you start from nothing, i suggest you take a small basic C language course. They are free on the net and its easy (Well, not so for ...
How to draw a box in MT4?
-
Zeuzere replied Dec 20, 2006"if I enter long at 1.2500 and I want a buy limit" You mean buy at 1.2500 and take profit at 110% from 1.2500. If so : You set you TakeProfit to be Bid * 1.10 Easy as that, Or you can use : Bid + (Bid * 10 / 100)*Point so you get you 10% profit Make ...
Code for Buy Limits?
-
Zeuzere replied Dec 19, 2006If your chart are maximized, to see other chart already open you 'CTRL-TAB' to switch...
keybord shortcut
-
Zeuzere replied Dec 19, 2006You must remove the autoscroll - on the Tool bar - or see Help(F1) then "auto scroll" --- Look for "Fast Navigation" also, usefull shortcut,like F12
MetaTrader Price Snapback
-
Zeuzere replied Dec 19, 2006Tips... Im working on a oscillator that tell me when break out occure, and i use this ( 0 == BreakOut ) - I define 3 period : lets say 200, 100 and 50 - At every moment, i count how much candle is hit in the past(In those period at the current ...
How to draw a box in MT4?
-
Zeuzere replied Dec 19, 2006If you dont know how to do Virtual Box(define a box) to automate your trading(Not only looking for best practices) Look at Pip_Boxer EA He use boxing technic .... He use CCI and other stuff... If you look at the code and read the thread you will ...
How to draw a box in MT4?
-
Zeuzere replied Dec 18, 2006For you! Don't misunderstood me please. I had almost the same idea on using mid BB and MA cross. so i like your system and i want to know more off it.But.. If you think you system is good. I suggest you open a journal and explain a little bit ...
Cable Update (GBPUSD)
-
Zeuzere replied Dec 18, 2006Since the parabolic change up or down depending on candle high/low vs previous SAR value... You must not use the current value but the previous value: - Buffer[1] instead of buffer[0]; The previous value is a fixed one(Like other indicators) So at a ...
Parabolic SAR Expert Advisor
-
Zeuzere replied Dec 12, 2006Thanks for the help! In fact i did have the answer ( I had the Tangente made ) I was getting confused with searching the point on the line... So having only the Slope(tangente) is easier and faster. Big thanks tesla Ps.:I did a little demo and it ...
Little math problem for indicator
-
Zeuzere replied Dec 12, 2006Thank you.... But can wee just say: If Slope(Line A-B) < Slope (Line AX) then Point X is is OVER line AB
Little math problem for indicator
-
Zeuzere replied Dec 12, 2006Thanks for your response
But not exactly(For what i understand).... I want to know if any point on the MACD line between A and B is over or below the straight line. I want to look each point on MACD line and know if its over or below a ...Little math problem for indicator
-
Zeuzere replied Dec 12, 2006Thanks for the quick response
This is why i'm asking this question... If i take a macd line for exemple, and choose 2 point... i want to know if point(x), between A and B, is above or below the line...Little math problem for indicator
-
Little math problem for indicator
Started Dec 12, 2006|Platform Tech|9 replies
How can we find any point between A and C? In mql4 if possible... Thanks.