MQL4 and MetaTrader 4 - page 1419

[Deleted]
someone explane please! I entered NZDCHF short at X and had my stop-lose at 0,7349. After my entrence the NZDCHF got to 0,7342 (the highest). My NZDCHF operation was taken out with the 0,7349 stop-lose signal. How can it be if the pair nether got that high? Can any body explane or it's a broker's
Can someone tell me how the DLLl file works in terms of protecting an EA form reverse engineering ?? In other words, can the DLL file be reverse engineered, because when you open a DLL file up you can see a lot of code, or is some of it hidden from veiw ??
Hello there, I really have tried to design this system, read the book and searched the code base, but i couldn't, so please guys, anyone can help me about it.... I want to make a system that Buy lot 0.01 when RSI 14 Smoothed cross over 30 close the position with 10pips or when RSI 14 Smoothed cross...
Topic basically says it all. I have a pal in another city and he is trading manually and getting very good results. I doubt he has much of a trading plan, non the less he is almost doubling his account every week. If I could take his history and show the trades on the chart I'd get a better idea of...
I once found a generic flow chat for EAs on this website but I can no longer find it. Does anybody knows where it is? Thank you,
[Deleted]
  Tester Problems  (2)
Hello everyone, greetings from Brazil. I´m a experienced trader, and I´m programming my own EA. Well before of my ea to be complete, I have wrote a program to read a special cvs files, with the entries points, and exit points marked. Well I can compile the text file, with no problem. But when I run...
Hi, i'd like to make an ea with this indicator : perkyasctrend, (thanks collector !!), but the ea seems to miss some dot .... but not all of them ?!? here is my code : double perk_up = iCustom(NULL, 0, "PerkyAsctrend",4,250,0,1); double perk_down = iCustom(NULL, 0, "PerkyAsctrend",4,250...
[Deleted]
I've been trying to figure this out for a while. I've boiled the code down to the following snippet. From what I can tell no matter what you change the value in the buffer to the "Average" stays the same. #property indicator_chart_windowdouble Buffer[];int init(){       SetIndexBuffer( 0,...
[Deleted]
Hi, I am searching some code in order to use some concept from the Discrete Fourier Transformation ! If you have code on C++, Python or MetaTrader 4, it will be great !!! Best Regards UKALGO
[Deleted]
  Fourier-based hypothesis  (107   1 2 3 4 5 ... 10 11)
There is a hypothesis: If we take a segment of prices, suppose for the last 1000 bars, and approximate it by FFT, then, if we correctly capture the basic harmonics by FFT, we can equally extrapolate prices not only into the future, but also into the past. This can be done, for example, as follows
[Deleted]
  chart background  (1)
First of all(for Cloudbreaker), I have tried to search the forum and found nothing on this topic. I thought it would be interesting if you could change the background color of the chart based on a buy/sell indication. Is this possible within the constructs of using an indicator or EA, or does that...
[Deleted]
  Expert For sale  (1)
Welcome my friends Today I offer you a new expert for sale only $ 200 To connect expert.fx @ hotmail.com
[Deleted]
Hello, is it possible to view 2 charts in one Window or to compare two charts with an indicator. Differenz between Gold and USDX for example. Thanks a lot if you can help. Zwongo
Each time I try to overlay the MA to MACD by dragging and dropping on the MACD it goes to the main chart. Any ideas
Getting 138 orderclose messages only with sell orders, Any ideas why ?
  iMA problem  (2)
Hi With ima crosses, why do they not work ? With one EA, it draws the ima's in the window, but in the other you can see no ima's Why is this ?
[Deleted]
Hello, Does anyone, or has anyone, already written a scrip which calculates the highest and lowest price within a specified time range (for example between 10-11am) and give the values of those highest point?! I am new to coding and have limited coding skills. Just on the of chance.... Thanks
Is there a way we could calculate the percentage of a candle outside a bollinger band? For example, an upper bollinger band is at 1.5000 and a candle moves outside of this value to a high of 1.5020 and the low was 1.4990. Do we just calculate the height of the candle and how much of this is above...
[Deleted]
How to display in a MessageBox the Open Price?? I use this but with no help : MessageBox(MODE_OPEN) I want to view the Price ex: 1.65656 in a message box... in MT4
[Deleted]
As a new EA coding trainee, I use VPS to backtest few ideas I am working on. But I have this problem after testing few options, the computer will show; "YOU HAVE VERY LOW MEMORY IN DISK C". And the VPS has over 2GB memory. I guess the result of previous tests is what is causing this problem, but I...
  PARAMETER PASS  (3)
WHAT PARAMETER CAN BE PASSED INTO FUNCTION Period() e.g is it possible to pass this parameter period(period_H1).or any other way of passing a parameter into it.
  ArrayCopyRates ?  (1)
Hi, i try this, can any one explain me what is the number 2056 mean ? what is stand for ? double array1[][6]; int copyrate = ArrayCopyRates(array1,"EURUSD", PERIOD_H1); Comment(copyrate); Result: 2056
[Deleted]
hello, i downloaded the free alpari version of MT4 client terminal, however i can only get access to forex charts and data- is tehre a way i can get access to Ags,metals and bonds? thanks
I' developing an indicator and I'm testing it using the tester in visual mode. I'm getting different results if the ..\tester\history files are present. example: the 1st time that I run the tester (no files in the tester\history folder) the results are correct. The second run and all the following
if you can manage someone's account starting with a low capital. let me know. reply to reall80@yahoo.com and the low capital is like a text run. The profit will be well shared
I'm trying to run an optimization to see which is the best currency pair for trading, here is what I have thus far: extern int currency = 1; if(currency ==1) { plugcu = "EURUSD"; } if(currency ==2) { plugcu = "USDJPY"; } if(currency ==3) { plugcu = "USDCHF"; } if(currency ==4) { plugcu...
  Tenkan sen value  (2)
I am trying to list the value of the tenkan sen but it keeps displaying 0.00000 Any ideas? //---- Tenkan Sen   i=Bars-Tenkan;   if(counted_bars>Tenkan) i=Bars-counted_bars-1;   while(i>=0)     {      high=High[i]; low=Low[i]; k=i-1+Tenkan;      while(k>=i)        {         price=High[k];...
I have found something that really looks like it works, and would like to buy it from the author. Is there any way to fake forward trades? Thanks!
[Deleted]
I think there is a bug with getting information from multiple timeframes. For example, if I decide to print this out of the init() function of an indicator that is attached to a 1Hour chart: Print( "marketinfo: " + TimeHour(MarketInfo(Symbol(), MODE_TIME ) )); Print( "m1: " + TimeHour(iTime(Symbol()...
[Deleted]
I am having trouble understanding how to read the Account History section of my Gallant FX demo account. I am using FAP Turbo v48. Here are my questions: 1. What does "swap" mean? 2. Though my bottom line is a positive profit I don't see the calculation. The positive and negative amounts under...