/* SELF-CODED 5-DAY SMA Set up buffer with style, indexbegin, and color for each bar: calculate closing price of last 4 bars and current price use to find SMA value at that bar update last value after every tick lock each bar's SMA value once the bar has close*/#property...
Hi. I am trying to create an Bitmap Object using BitmapCreate function of mql4 hqlp documentation... but nothing happens... can you help me? //+------------------------------------------------------------------+ //| Create a bitmap in the chart window |...
Hi, I would like to create some resistance and horizontal lines on a specific chart (example: EURNZD) which only need to show on EURNZD chart, but i found that those lines are showing on others pairs as well. May i know what i should do to set these lines only show on specific chart please? My MT4...
[Deleted]
As title how can I see my purchase amount for a specific trade in MT4
Is it possible to transfer a value from EA to a certain cell of excellence?, e.g. the Bid to cell A4, Ask to cell C9. traderdoc
how to use Autohotkey what the script must be so i set hit key e.g F5 when it clicked make the "Vertical line " ready for me
I have a script that collects information based on specific candles and ranges at the time the script runs, places the relevant orders and dumps to an external spreadsheet . However, I have to run manually at the fundamental news announcements which means being up at like 2.30 in the morning for the
[Deleted]
Hi Guys, I have been looking everywhere & cannot find an EA that incorporates both bollinger band & stochastic inputs. basically i want the EA to "Alert" me when a candle closes above or below the upper & lower bollinger bands & the stochastic crosses above the 80 or below the 20. can anyone help...
I'm seeing a weird issue in one of my terminals. When I call marketInfo MODE_TICKVALUE it will return 0. If I run it again directly after, it returns the correct value. This only happens on one of my terminals. Both are on 4.00 950 Anyone seen this issue before? 2016.07.26 09:02:53.598 Script
Hi everyone, I just finished learning how to use IndexBuffers and made my first indicator. However, there's one slight annoyance: the arrows drawn overlap the candle's high/low. I would like it so that for an arrow at the low, to have spacing between the low and the arrow, and for the arrow at the...
Hi guys, I am having the hardest time getting my indicator to update the result info for a trade that was placed on a previous bar. Can anyone offer a solution or maybe point me in the right direction. It would greatly be appreciated. Many thanks!!! Here is a the code snippet: if((Condition...
So I wasworking on an EA that looks back several days on the 1 minute time frame, and Iwas getting strange results I didn’t understand. Until I noticed that not allhistory is available in the strategy tester. datetimeSomeTime = iTime( Symbol() , PERIOD_M1 , 1001 ); int rc =GetLastError(); If I...
Hello, My EA will have various instances running on different pairs. Once a day, I would like to check the existence of new files in some directory. If they exist, I would like to relaunch all the instances, but just once. I was thinking to implement it using global variables, however, from the
instead of using my mouse to press the buttons from the line studies - horizontal/vertical line, trendline, The ideas is to speed up the process of creating lines by using keys presses/shortcuts. I want to press a key and come to the same result after pressing the button anybody know some script...
Hi everyone, instead of using my mouse to press the buttons from the line studies - horizontal/vertical line, trendline, etc - I want to press a key and come to the same result after pressing the button -> the cursor has changed to the icon of the selected button and when I move the mouse this new...
[Deleted]
I was wondering if I could use HTML content of technical-summary section of investing website in order to put it in my indicator. I need content of this URL for buy and sell signals:<Link Removed> please guide me which ways is better: 1- Using URL contents ? (Of course if it is possible) 2- Order an...
hello i backtested a strategy with and without a tick computation of Timecurrent() In one strat i just use the data in a computation, in the other one, i just remove TimeCurrent() and the speed is 10 times faster! Is there any other way to get current time? thanks Jeff
For my first indicator, I'm simply trying to plot the SMA indicator on a chart. I can get the code to compile and it loads when I click "Start on Real Data," but nothing actually shows on the chart. What is going wrong here? #property copyright "Copyright 2016, MetaQuotes Software Corp." #property...
[Deleted]
Hello guys, I am newbie here. I feel like this script should be very easy, but i don't get it why it don't work. I want to write script which would give me open price of exact time. Let's say i start script 8:00 and i want that at 13:00 it would give me open price of bar at 13:00. It's part of my...
[Deleted]
In the documentation I can read that Buy-Orders are opened with the Ask price and Sell-Orders are opened with the Bid-price. When you close the order you must take the oposite. In my demo account I can start and close orders with Ask and Bid price. I can mix it. It functioned - I get no error...
if(Month()==1 && DaysOfMonth() == 30 || DaysOfMonth() == 31) return(0); can I use DaysOfMonth() like above?
hello everyone, I have created a true / false filter, if it is active is ok, but does not work if disabled. extern bool FilterHistogram = true; // Declare filter&& (FilterHistogram)&& iCustom(NULL, PERIOD_CURRENT, "Awesome", 0, 1+i) < 0.000010 // Condition
it's possible to open a profile in mt4 when i click on a button created on my chart? i found how to open a chart with the function ChartOpen(), but i need to open a profile this is my code to open a chart on button click void OnChartEvent(const int id, const long &lparam...
Hi guys, I have a problem with this code and I can not understand why it does not work. It gives no errors, but only returns the value of TF 5 minutes while the 15 minutes does not appear. Thank you all, Massimo. #property...
I enter the condition in the candle 2 if Red or Green with I cover more than 0.2 pips I have this error : check operator precedence for possible error; use parentheses to clarify precedenc help me solve please? &&(Open[ 2 +i] < Close[ 2 +i] && MathAbs (Close[ 2 +i]-Open[ 2 +i]) > 0.2 * myPoint ||
Hello everybody, I'm looking for a solution to write to a csv file, all the signals of my indicator. When I get a signal, write the result to a csv file, for a Sell if the candle closes Red I will have a result 1 else 0, for a buy signal if the candle closes Green will have a result 1 else 0. //---...
Hello, i attached an indicator i very like: RSI/RSX TripleHull unfortunatlly i found an error, somethimes there is a zero devide, first encountered with Period 50, but it seem it can reproduce with any period (see screenshot). Can anyone fix this ? (Mladen ? :-) ) by the way: is it possible to...
Hi guys, I have a serious problem and I don't think I could handle it myself without any help :(. I would be very grateful if someone could give me even something to read because I don't know where to start... I'm writing a MQL4 indicator and I stuck on one case. What I need to do, in the first...
hi wi would open a eurusd mt4 chart when a click a button, this is my code that show a button, when i click it, it's does not open any chart of eurusd, where is my error? #define WM_COMMAND 0x0111 string eurusdButton = "eurusdButton" ; int OnInit () { ObjectCreate ( 0 ,eurusdButton, OBJ_BUTTON
From the diaries of the world's worst programmer So I'm learning about arrays but not being very bright, struggling to understand how they actually populate themselves and how that affects memory allocation and resources. I'm trying to build my own currency strength indicator. First step, build an...
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
If you do not have an account, please register
Allow the use of cookies to log in to the MQL5.com website.
Please enable the necessary setting in your browser, otherwise you will not be able to log in.