Technical Indicators - page 41

Hello everyone, I'm new in the MT and I'm looking for a help. I need an "indicator" that show me the high and low from the first candle of the period. For ex. Intraday, 15 min, the market opens at 9AM 9:15 the indicator drawn a high and low line looking for the first candle. How can I solve that
Hi, #property indicator_chart_window #property indicator_buffers 21 #property indicator_plots 21 //--- input parameters input int InpMaPeriod= 13 ; input int InpMaShift= 0 ; input ENUM_MA_METHOD InpMaMethod= MODE_SMA ; input ENUM_APPLIED_PRICE InpAppliedPrice= PRICE_CLOSE ; #include
My Marketplace abc.mq5 file has this statement in it: #resource “\\Indicators\\xyz.ex5” xyz.ex5 is used in a iCustom statement. The xyz.ex5 is not mines. So if the xyz person fixes a bug, adds a new feature or whatever and recompiles it will I have to recompile and do a new version of my abc.mq5 in
Hi. I've created a new indicator with MQL5 by using the wizard. I need three buffers for my logic, but only the first one is created. This is my code: #include <MovingAverages.mqh> //--- input parameters input uint ShortInterval= 10 ; input uint LongInterval= 30 ; //--- indicator buffers
Hey all, The attached indicator displays the value of defined stop loss and or take profit , I wonder if any of you is able to convert it from MT4 to MT5 to let other traders benefit from. I understand that anything is not free in life. The indicator is good for all people what want to do risk
I am programming in mql4 for 3 years and this week i tried to create my first indicator on mql5. I am trying to create and indicator that draws a line that connects the Open Prices of the candles. The line that i see on charts is very weird(check the photo). At some timeframes i do not see anything
  Correlation indicators  (162   1 2 3 4 5 ... 16 17)
a nice indicator i think green GBP /red USD se the pic
So am trying to make an indicator that gives the ratio between each candles volume and its body size(close-open). But i just cant seem to be able to print a plot for all available bars in history. It always stops plotting at index 35(the 36thbar).As new candles come in it works fine it plots a new
Hello. I am using a session indicator (MQLTA MT5 Trading Session Time) that seems to be causing the data from another indicator (candle_time_end_and_spread) to disappear from my chart at random times. I have isolated the problem and have determined that the MQLTA indicator is the cause. However
Hi everyone, I have built an indicator in MT5 (MQL5) which detects a condition and draws it out on chart for me to take a trade manually. I am planning to write a telegram message sending function too, which is supposed to send a message to telegram (to me) on detecting that condition (which i will
Hello, I wrote a few days ago about an indicator i was working to show several TF bollinger bands on the chart of the least selected time frame. I fixed the issue for data retrieving, but there is something else - the information when put into buffers is wrongly outputted. I printed every value of
  News indicator  (1)
Hello, There was some nice news indicator which worked for some time, such as IN10TION NewsReader and FFCal ans News Reader, but nowadays non of them are working. If you know some working news indicator, please share it. The best was for me the "news reader", but also not working now. Thank you
I have an indicator in a separate window and I would like the zero level to not move from the middle of the window. (The same that scale by line but from code MQL5)... Is it possible to do that? How? I was reading this but i saw nothing about it
Hi guys ..I am looking for a source code of an indicator called *** .I would like Alerts to be added please
Hi guys, I'm relatively new to renko but I have attached a renko indicator which I downloaded. All you need to do is attach to a chart (no need offline chart). Please take a look. I use a 100 point (10 pip) box size to plot the charts. Could someone please explain why the renko chart changes with...
The problem i am facing is that i use "pivot highs/ lows" which detects the "relative" high and lows (this indicator is accessible on TradingView although im sure there is another word for it on MQL format. say for instance in a bullish elliot wave pattern, the highs can be easily identified when
Hi. I don't know what exactly happens. I am comparing two integers that have the same value (with the > operator) and However the control statement "if" returns true ... Does anyone know why this happens and how to fix it? I attach a image of the console output... And this is the code: NOTE: start
Which hero has the wave three indicators. Please help me
Hi! and thanks in advance for everyone who's givin' up his time supportin' the community. I got the Supertrend-Indicator https://www.mql5.com/en/code/576 i'm not good at programming with MQL5 so if i'm wrong approach, could you give a simple example? The strategy is simple, I want to open only buy
[Deleted]
Hello, is it possible to have 2 type of indicator to be displayed, 1 in main windows and 1 in separate subwindows? Can someone refer me to an article? thank you
Newbie here, so forgive my assumptions, if they are incorrect. Regarding RSI. Considering the market goes in cycles: 1. Accumulation (ranging sideways) 2. Breakout (up/down trend with volume increase) 3. Distribution (peaking) 4. Downtrend (exhaustion) Based on this assumption, if an instrument is
Hi, I'ld like to know: is it useful to call "ArrayInitialize" to an INDICATOR_DATA buffer buffer of an indicator? In other words: when we create a custom indicator , normally we create at least one data buffer that will be the signs shown in the graph. After calling "SetIndexBuffer" and
  Pivot points  (1)
Pivot point indicator for mt5
Im looking for someone who can help me to make code a forex trading system for me
Just finished testing an indicator called JCFBaux, performed pretty well as a volume indicator , espacially in my ruleset. I took data from the volume indicator and put it in a sheet and optimised it. The problem is, when I'm using this indicator while I am trading live it gives me absurd numbers
Hi, Can someone assist in creating a T3 indicator + ATR bands for MT5? Thanks
I am trying to make an ADXR indicator and I am using the "to_copy" method from the examples folder but it does not work correctly in my code. I think that this method (in this way) does not work with "Technical Indicators". I think so... because I have checked all the code several times. A little
Let's use MACD as an example. It has 2-3 values(1 for the MACD line; the other for the signal line; 3 if it has a histogram). I'm trying to incorporate those values into a new indicator. I figured I would need multiple buffers and SetIndexBuffer indicator calculations for the MACD indicator. Need
Hi. Newbie here. I was wondering if there is a way to filter the alerts box. I.e - set up an indicator that calls for information from the alerts box then filters it further (eg only shows alerts that are above a certain MA) then spits out a new alerts box based on this information? I have a