Technical Indicators - page 37

It is no sign will be given depending on the currency pair more than 2 hours candle. Can anyone fix it for free
  ZigZag indicator  (1)
Hello guys hope you're doing well , I need a zigzag indicator that have two buffers one for lowmap and one for highmap
Nesting of MQL5 handles as iMA and iTEMA is not possible. I would need the Triple E xponential Moving Average of a Moving Average e.g.: int PRICE_GD_OPEN = iMA ( _Symbol , PERIOD_CURRENT , 10 , 0 , MODE_SMA , PRICE_OPEN ); double GD = iTEMA ( _Symbol , PERIOD_CURRENT ,4, 0
Hi! Why my indicator below endend up with really strange values in buffers? Please... #property indicator_chart_window #property indicator_buffers 2 #property indicator_plots 2 //--- plot Buy #property indicator_label1 "Buy" #property indicator_type1 DRAW_ARROW #property indicator_color1
Hi guys I hope someone can help me I have gone code blind I think. I am trying to set the Pivot from the previous bar not for any reason other than learning. Now I know I have messed up some where but I can not seem to find where. void BarData(){ int BarHigh, BarLow, BarClose, BarOpen; double
The feature of MT5 of 'Show real time history of deals on chart' is a great idea, however, it can cause a lot of screen clutter especially when trading on short timeframes eg 5min, then changing the time period to say daily to look at daily levels, trendlines etc. Is there some easy way to enable...
I was told I need to use handles for indicators in mql5. However, looking at the examples for RSI and custom moving average scripts I do not see any handles being used. Are handles only used some of the time? When should you, or should you not, use them
I have to get the maximum and minimum of a series of candles (hour candles) in a certain range, exactly from 5 to the left, a middle one (the one that must be the maximum or the minimum) and 5 to the right I found iHighest but from what I understand it allows you to get the maximum only backwards
[Deleted]
Hello, I need to access to MT4/MT5 terminal notification message instantly, is there a log file or something I can use to read the notifcation send by an indicator or EA
Hello Friends, Just switched over to MT5 from MT4 and now I have a small problem of trying to port over my MT4 indicators to MT5. For the most part, these are simple indicators that simple paint boxes on the chart based on what time of day it is with some parameters to customize the color of the
Hi Everyone , Has anyone seen indicator shown in the image below ? If someone has an idea about the name of this indicator I will highly appreciate if you could share the name. Thank you
Please can someone set an alert on this indictor to alert when all the MACD mini symbols mtf turn the same colour, an optional alert would be better. Thanks
Hi, I am newbie here and saw this article https://www.mql5.com/en/articles/101 Candlestick patterns made me more interesting to see how the chart behaves when these patterns forms. If you see this indicator
Hello, I would like to ask if it is possible to use the Bid/Ask price in OnCalculate ... if not, how do we get the current price and not only the high and the low of the previous candle? Thanks in advance
Hello, I have no source code indicator in MQL5 from author, but only with 3 values from buffer. Is it possible to translate it anyway as function in MultiCharts programming language EasyLanguage ? Is that possible here on Freelancer market to translate mql5 into EasyLanguage, or is it only for mql
  Macd and adx  (1)
If you use these do you think they are more useful in stocks or forex and why
hi, some indicators like ADX have variant maximum level in their subwindow,does anyone knows a way to get maximum level of subwindow of an indicator for the last bar
Mt Indicator that normally shows Data in a a tabular form, as attached. Now, its stopped working. Instead of showing me numeric values as you see in the Image, now it shows " -NAN" and "-INF" in the cells. Any suggestiojs how to fx this
Hi i Want calculate my Indicator only Once Per each new candle. I use the code in the Image Blow but the code run on each tick. how can fix this? please help
I need to read dates and values from a CSV file but when I print the values in console it is as if they were not assigned or read. This is the file to read: 1971 / 01 / 01 ;- 18.8551 1971 / 01 / 02 ;- 18.8966 1971 / 01 / 03 ;- 18.9375 1971 / 01 / 04 ;- 18.9780 1971 / 01 / 05 ;- 19.179 1971 / 01 / 06
I need logarithmic scale indicator. may everybody help me
Hello, Is there any Indicator or a script that multiplies ZIG ZAG magnitude by 1.87 on its own
Hi, I looking indicator or soft which open any daily bar in new 5 min chart.anyone know something like this
Hello, I have a renko chart and I'm looking for a bar duration indicator that displays a histogram for each renko bar. Best regards, Matt
Good evening, I'm in the process of converting my MT4 indicators to MT5. In MT4 I have an indicator that draws 5 lines in M5 en 3 lines in H1. The code I use is: if ( Period () == PERIOD_H1 ) {Show_InnerEnv = false ;} //---- drawing settings MainLines SetIndexStyle( 0 ,Show_OuterEnv
[Deleted]
Custom Indicator showing ZERO level, though not defined anywhere in the code #property description "Bollinger %b Indicator" //+----------------------------------------------------------------------------------------------------------+ //| Define Input Parameters
Hi Can anyone recommend any simple Indicator for any currency pair moving Sideways
Hello, have the problem that a button bitmap is not changed, even i changed the bitmap #resource "\\Images\\ expert1 \\bt.bmp" ... #define bmp_bt "::Images\\expert1\\bt.bmp" ... CBmpButton bt; // create button... bt.BmpNames( bmp_bt , bmp_bt ); I have 2 machines. One machine is the developer
Example handle_fr=iFractals(NULL ,PERIOD_CURRENT ); It means you can write your own indicator and apply it in the same way as other indicators ( iFractals, iVolumes, iMACD iVolumes iBWMFI,...) in the code of a new indicator or it is only for indicators in the reference book? iBWMFI
Hello How can I change the display type of a simple indicator from linear to cloud or cross-period mode? For example, how can I? Turn this indicator from linear to two different periods https://www.mql5.com/en/forum/244744