Is there such thing available ? I didn't find yet
I'm looking for a mt5 plugin that does sound alert when price crosses horizontal line
and would work on both the chart and indicators below
newbie here, currently a financial advisor, joined to share my knowledge and to be an active user on this community
Hi!
I have started learning Metatrader 5 and still progressing.
I have written my first indicator of plotting two SMA lines.
1.Red Line Period: 13
2.Yellow Line Period: 25
What I have received is indicated in posted photo, successful red line and unexpected Slanted yellow line.
I am...
Hello I grabbed myself a copy of Yurich's FastZZ zigzag indicator from https://www.mql5.com/en/code/1027 Looks good, but feeling responsible, before I rely on it, I need to fully understand the code. I'm relatively new to indicators and had a little trouble understanding the way it carries on, so I...
Hello,
I have just write my first very simple custom indicator (returns -1 or +1 for candlestick of a determined size) . It can be added mannually to a chart properly, but I have problems using it from an EA. The think is that when I test and visualize the EA, the indicator is shown well in the...
[Deleted]
Hi there,
I am using the function CopyBuffer inside OnCalculate this way:
if(CopyBuffer(DEMAHandler,0,0,rates_total,DEMABuffer)<=0) return(0);
I understand that the programming sentence above generates an array with the info of all the rates (MN, month). But is it possible to call CopyBuffer in...
Hi my friends!Do you know any indicator to combining RSI Values and the Volume?( MFI or OBV or other indicators are linear and are not suitable for me) I want not only monitoring price movement and seller/Buyer strength, But also the strength of volumes are coming to a stock/market is important for
[Deleted]
Hi there MQL5 experts!,
I recently created a very lightweight indicator (4 lines of code but is a bit slow, however) which takes the SMA from any given symbol and divides by the SMA from any other. It is something like a SymbolA-SymbolB ratio.
My onCalculate's most slow part is the following,...
To MT5 Developer :
I notice Gann Fan in MT5 can not be edited like the one in MT4. In particular, the main angle can be adjusted in MT4 but not in MT5. PLease fix the problem...
Thank you
Eddy
in this funtion:
//--- Define the symbol code from the Wingdings font to draw in PLOT_ARROW PlotIndexSetInteger(0,PLOT_ARROW,code);
in the reference, it saids: The default value of PLOT_ARROW=159 (a circle).
so code 159 means to draw a circle,
and what is the other codes?
i want to draw a...
[Deleted]
Hi there, I'd like to plot a discontinuous indicator which is defined only in some intervals. My indicator only has one buffer: SetIndexBuffer ( 0 ,myOnlyBuffer, INDICATOR_DATA ); I am assuming that it is possible to assign NULL in some positions of myOnlyBuffer (if you assign NaN values to arrays
Hi all,
I am wondering whether it is possible to apply an indicator, which used the second form of the OnCalculate event (i.e. Open, High, Low, Close etc.), to another indicator?
For example, I would like to apply the Stochastic indicator to another custom indicator. However, the Stochastic...
i spent a lot of time looking for indicators that predict the market, but no relieble results do u have new updates or new indicators that reall bring close predictions !!! link
Hi,
I'm trying to build a mechanism within my EA whereby the value of the iATR buffer is assigned to a variable of the same type for use further within the code (i.e. rolling ATR). However, the results I have been getting is a very small number and to further test this I had carved out the relevant...
[Deleted]
Hi there, I need a technical indicator limited on two levels (eg, 100 - 0, or 1 - 0) to represent the price (not momentum or any other thing). Which one of the existing indicators would you recommend for this? Thks!
Good morning all. I've just begun using MT4 and I need help with the entries on a certain scalping method. I'm trading a 70 tick chart and the entries need to be fast so I'll be getting in using the 1-Click Entry box. My problem/need is that I'd like to have my entry followed automatically by a 10...
Hi Can someone explain me why the zigzag indicator behave like this? The red line is the zigzag, and the blue line should be the zigzag movement in my opinion, or m i wrong
Dear All,
Tearing my hair out, trying to get this to work in MT5! This is a MT4 indicator that plots a arrow if the open on the current day is greater than the close of the previous day by a specific amount. MT5 seems to have the a problem with SETINDEXBUFFER, but when i try and fix that something...
[Deleted]
HOW to get %K and %D value of stochastic oscillator in an EA programatically ?
both in mt4 and mt5.
Hi, When an order is opened and closed on MT5, an arrow and line are drawn on the chart from the opening and closing price/time. If the chart is closed and re-opened, these lines do not re-appear. Is there any built-in function or indicator/script that will interrogate your order history and...
Hello, I try to create an indicator that Bollinger bands and the moving average changes color depending on the trend. I took the code already written "BB" but I have some problem writing the new code for several weeks. Could someone help me please , I don't know why the indicator does not work as
Hi, im new into Forex in general and into expert advisors tools, but im looking for a way to do the following and was told that it is possible using EA tools: Im trading the USD/JPY and I need a way to create an order but to have it valid only when the pair reaches a certain rate. For example, say...
Hello,
I use the ADX Wilder buffer in my EA and realize that value in the array for the current bar [0] is different from the value I see in the data window of Strategy Tester, for the same bar. Values [1] and [2] are correct. For example the Data Window shows :
- ADX Wilder(14) = 46.70 (for bar...
I'm having issues with the Hector Trader Indicators on my MT4 platform. It makes it very sluggish and to the point that it freezes. Has anyone had this problem? I also deleted the History folder and lowered the max bars in the charts menu from 65000 to 5000 and deleted the chart files in the...
[Deleted]
Hi,
New to forum. Have searched custom indicators cannot see what I want. In a nutshell.
1 hour chart
MA40 (simple)
wma5 (weighted)
Close value.
At the commencement of each hour bar I want to calculate the value that the MA40 and WMA5 will (may) intersect indicated by a horizontal line, a...
Hi Guys
I'm now learning about creating objects.
How can I change colors of bar and candle in chart objects( OBJ_CHART ) ?
I also wanted to know how to hide OHLC values in the upper left corner.
Thanks
customized alarm for QQE ADV in MT4 when RSI line crossed signal line and 50 line at same direct
(3)
hi everyone
please share customized alarm for (QQE ADV) indicator in MT4 when RSI line crossed signal line and 50 line at same direct (buy or sell)
thanks alot.
Hi,
I have a few years experience with MT4 EAs but now I'm trying to learn MT5.
In MQL4, I could see the drawing of a custom indicator (called with iCustom) in the chart of the stategy tester.
If I call the iCustom() from a EA in MQL5 (I know it's differnt with handle etc.), the indicator works...
Hello ...
Is it possible within the same indicator script to display two data sets, one with DRAW_COLOR_CANDLES and the second set on top with DRAW_COLOR_BARS.
Both data sets are within the same 0-100 range, so that's not an issue.
If you can point me to some sort of an example script, that...
Hi, I would like to create an indicator that, when a couple (bullish or bearish) forms, colors an arrow (green-bullish) end (red-bearish).
The size of the body of each candle must be at least 5 points
is it possible?
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.