MQL4 and MetaTrader 4 - page 1110

Hey Guys, I'm into forex trading using robots, and I have found outthat the most crucial step is the choosing of the forex robot. Nevertheless,there's almost no way to take an informed desicion, all the robots sites look and say the same,"buy me and be a millionaire". So, I've been trying to find...
i have the following code right now, and i want to increase the lotsize every 1000 dolllar: for the variables: extern bool increment=true;extern double Incrementlevel = 1000;extern double BaseLot = 0.1; and in the start: if (increment){int lotmultiple = AccountBalance()/increment;lots =...
How Can I pre-set the Trade Box? I want be able to click new order and when the Trade Box opens have it already set with my stop loss (by pips) and trailing Stop (by pips) and Take profit, well to be fair as a scalper I don't care about take profit as it too is LIMIT. But the rest........ This...
Hi All, I am new here and need a bit of help. Got this code for a weekly pivot installed for a fantastic winning sytem. One problem....the person who taught me 99% of what I need to know cannot be found. I tried using several online calculators to get pivot points to the ones that cannot be seen,...
[Deleted]
  Help with for loop  (16   1 2)
Hi, this for loop doesnt work - trades are still being taken even 4-7 candles after the MA cross if(MACDmain > MACDsignal && MACDmain1 < MACDsignal1) //MACD cross to the upside - the main line has crossed above the signal line      {      for(int i = 1; i <=3; i++)         {         double EMA =...
Just wondering if anyone knows when GO Markets Trading Championship starts
  can't make trade  (3)
#property copyright "sergey antipin"#property link      "http://www.metaquotes.net"extern double buffer=0;           extern double stoploss=20;            extern double takeprofit=350;                extern double filter=50;               extern double ma_value=218;  double...
  Mastermind EA  (3)
Hi, This EA has seems to have some potential but would need quite some work thx
Hi, I am writing an indicator: First I've tried ... lastlowpos = i-1; ObjectCreate(...,Time[lastlospos], High[lastlospos]); //=working with i .... and it work's great in the backtest but not in the livetest Now I wanted to convert my indicator to use the Time[]-funktion, that mean's working with...
I have been trying to close 2 similar orders one after the the other - one seems to succeed and the other (2nd) fail on more than one occasion. Both orders would be either Buy or Sell (ie both the same and the price set the same - both ask or bid). My log looks like the following 88880 2011.09.29...
[Deleted]
dear traders, please held me.
Hi Experts, I have written a fairly simple indicator which, when included on a chart will get data from 2 custom indicators on 3 different timeframes for the particular currency pair that is on. I then display this in a small table as shown: The code for this is : string chart[] = {"H1", "H4",...
hello, everybody !!! I have a script, It send a order buy at market and 2 order buy limit. I want to add to this script, "When have one order to close then all order will automatic close" How? Thank for Your help
Just what exactly is the "counter points"? (Meta Trader Strategy Tester) Can an EA be programmed to trade based on them? If not, what in the world is it in the tester for?
[Deleted]
Hi, i don't know if i am dense or if this article is written in broken English or a combination. Maybe because I don't understand some of the teminology. For example, what do these terms mean: - Zero Bar - indicator ZigZag - indicator Breaks Is there a glossary that has these terms defined? Thanks
[Deleted]
Hi guys, It is an honor to write for the first time on this forum where I learned so much and where I hope to contribute soon. I developed a very simple (and common) strategy based on the breakout of yesterday's range on EUR/USD. Since it is almost impossible to filter the breakout before they occur...
Such as problem .......
[Deleted]
Hi, I am trying to write the code that draws a line between OrderOpenPrice and the TP point as string name="Arrow_"+OrderTicket();          ObjectDelete(name);        ObjectCreate(name,OBJ_ARROW,0,Time[0],TP);        ObjectSet(name, OBJPROP_STYLE, STYLE_DOT);    ObjectSet(name, OBJPROP_ARROWCODE,...
well,As you know Stategy Tester can Simulated trading based on historical data.But this simulation is to determine a strategy because you know.One theory is that only first learn to make successful trading EA. I wonder if EA can open into a single function manually? Mean EA does nothing but re-set...
I'm trying to get my ea to enter a trade at the open of the bar when the previous bar high was above the upper bollinger band AND the open is below the upper band.... and visa versa for lower band. Here is my code, but it is not working. Any thoughts anyone?       double upper.bband =...
[Deleted]
  Power failure  (10)
Hi! Yesterday, an EA was running and it had already sent a couple orders, when there was a power failure. When I turned the computer back on, the orders were still there (Stop loss and take profit had not been reached) but, even though I re-ran the EA, it was not doing what it was supposed to, and I...
void SetCandleColor(int col, int i) { //+----------------   part one below     int limit;     int counted_bars=IndicatorCounted();     //---- check for possible errors     if(counted_bars<0) return(-1);     //---- last counted bar will be recounted     if(counted_bars>0) counted_bars--;...
EA is already made..Probably made in 2006 and it doesn't work with 5 digits broker. Can somebody pleease add a code that will work any 5 digits broker...Thanks..
[Deleted]
hello traders, this is may first posting. i find the projection oscilattor works very well. so i wanna use it for metatrader4. but i already don´t can coding. here is a easy language code for the oscilaltor: it would be nice, if some can manage it in MT4. Thank you for all! Inputs: Length -...
hello everybody ??? I am a newbie, I want to creat a scrip or Expert Advisors . I having a order trade and 4 order limit, i want, if this order to close then 4 order limit will automatic close. My English is not good. Thank for Your helps
Hey guys i have been trading for the past two weeks. I wanted to ask you, if there is anyone here who could explain to me how the strategy tester works(draws all this beautiful performance graphs etc.), so that i can backtest Expert Advisors. I would like to use some of the EA on this website but i...
[Deleted]
Hi, is it possible to calculate the sum of total StopLoss distance using one EA on different pairs with different timeframes e.g 4x charts: M30 EURUSD, H1 EURUSD, M30 USDJPY, H1 USDJPY using the same EA with different Magic number Could anyone please advise if I can get the "total StopLoss distance"...
[Deleted]
Hi! somewhere iread a key combo, this listing all tha charts. can someone help me what was that?
[Deleted]
Hi, I am not sure if this topic has been discussed before but my search did not come out with a solution to the problem. Some suggest that the loss of C drive space is due to some history log files stored under the MT4 directory. For my case, I did not do any backtest (only real time running) and...
I have sme code that draws a rectangle for the current day. How can I loop the code so that it draws a rectangle for every day on the chart? lprice is calculated by doing this: double lprice=iHigh(Symbol(),period_no,1)-iATR(Symbol(),period_no,14,0);    ObjectCreate("box"+Symbol(),OBJ_RECTANGLE,0...