Technical Indicators - page 80

Looking for Good indicator. pls tell the good indicators in mql5.
  Trendline  (6)
Hi! I try to make a trendline that starts at the current bar and is draw 20 bars in the future, I tried to use this code below but it do not work, Code is Mql5. Any suggestions? ObjectDelete(0,"H5"); ObjectCreate(0,"H5",OBJ_TREND,0,TimeCurrent(),H5,time[-20],H5); ObjectSetInteger(0,"H5"...
Hi, The Goldminer Indicator is a pretty old and well know indicator for MT4... there are several versions of it around the internet. I was looking for a version the runs on MT5 but I couldn't find any. Does anyone have it? I tried but I could not convert it from mql4 to mql5 :( If needed, here is...
I bought an Indicator about 2 days ago. I installed it as directed and It worked for about 1 day.  I used it as normal and when I was done I close down my laptop. The next morning I open my laptop and see a message that says my computer was restarted dues to malfunction. That is fine but what...
How can I unset the "fixed minimum/maximum" of a custom indicator progammatically ? It is easy to set using IndicatorSetInteger() - INDICATOR_MINIMUM - INDICATOR_MAXIMUM but I can not find a way to unset them so that the chart will autoscale the indicator again. Thank you for any...
Daos anybody here who can say me why in the hell this indicator won't work? Thank you
Hello, I am working on some functions such as base64_encode and base64_decode. https://www.mql5.com/en/code/8098 But I realize that StringGetChar and CharToStr do not give the same result with extended ASCII (ASCII code > 127 and code < 256) Is this a bug? void testStringChar(ushort chr){  string...
instead of Bid I want to put Dailyopen ObjectCreate(LineName, OBJ_HLINE, 0, 0, Bid - pipDistance*Point); in below "daily open" indicator code i have put horizontal lines code but instead of Bid price i want horizontal lines on daily open. try to edit by compile error. Any Help Highly appreciated...
#property copyright "Dusan Fajler"#property link      "http://www.mql5.com"//--- indicator settings#property indicator_chart_window#property indicator_buffers 2#property indicator_plots   1#property indicator_type1   DRAW_LINE#property indicator_color1  clrBlue, clrYellow, clrGreen, clrRed,...
[Deleted]
Hello Community, I kindly ask if someone has a ZigZag version (MT5/mt5 source file) calculated on open/close price instead of high/low?. @Vladimir Karputov  Do you have an idea?. I have looked in the CodeBase but I couldn't find it. So it would be grateful if someone can post here a version of it....
I have bought an Indicator but whwn I click on the link to install, link doesn't open. Could you please help me?
Hello. I am trying to implement the iFractals and there's something definitely wrong with it. Due to the fact that I can not get the proper result on my own code, I tried to use the example from the documentation  https://www.mql5.com/en/docs/indicators/ifractals I just copied and pasted the code...
Hello smart people! Among the many indicators I found this. This seems to me to be quite accurate. I've been testing it for some time. But there is one problem. This indicator does not work with BUY Alerts. Maybe someone has experience with this indicator? Maybe someone has an improved...
Hi, I am looking for a simple histogram indicator that plots the size of each bar (high-low). Is that readily available from somewhere does anyone know or should I make a job in the freelance section? It seems like an incredibly simply data set that I imagine should available somewhere? Thanks
Hello, I was wondering if anyone could help me with a problem I've been having  I have pretty much my entire indicator coded, however I'm trying to get it to draw buy/sell arrows based on my strategy so I can hook it up to an EA Basically I'm saying "if this line touches price then becomes...
How to move this clock close to price and make it move with price? //+------------------------------------------------------------------+//|                                                        Clock.mq5 |//|                                       Copyright 2013,Viktor Moss...
I have been trying to get this indicator working with no luck. It attaches to the chart and only adds little red dots the all the candles.  I like the concept for swing trading and would like to try it out on my personal trading system I have been developing. I know nothing about code. I am pretty...
Hi, since the latest build of MT5, the background calculation of indicators, such as iMA() in MT5 seem to be changed. Result is, that it seems you have to deal with luck to get the values, especially when you request them within OnTimer() ... at it least this is what I suspect. When I drag such an...
How can i download an m-candles indicator for Meta 5 thanks guys
I have been trying to get this indicator working with no luck. It attaches to the chart and only adds little red dots the all the candles. I want to know how to display the label [M15 Resistence] [M15 Support]\ [H1Resistence] [H1 Support]\ [H4 Resistence] [H4Support]\[D1 Resistence] [D1Support] on...
Is it possible to load the template of a chart with the same indicators between different Mt5 brokers?
Hi all,  So I've been looking for a simple pip counter for the past two weeks. I've come across multiple ones. Some with other indicators attached to it and some with the pip counter by itself. I've added all those to my charts. I can confirm that they work but for some reason all of the indicators...
Hi, just wondering if someone can help me out with this indicator. There is no other free indicator around. "market_statistics_bands.mq4" does not work for me, since my MT4 will be super slow, guess CPU issues. VWAP Bands.mq4 is not the same unfortunately. I trade with the 1D chart and I am trying...
Cn anyone help me with tech advice on how to install indicators from site...using the code base tab above.... It it keeps downloading to Zip...then says unable to open... ??
I'm looking for an indicator that alerts when all pivot, stochastic , rsi and ema are confirm and alerts when confirmed. Anyone knows of any? Else I may want to search for freelance
I don't think it is possible but wonder if there is a way to Deinit the indicator from OnCalculate? Tried "return(-1)" but it just get pass to "prev_calculated" so it will not exit the indicator program. Tried calling OnDeinit() functionbut once it jump to OnDeinit it will return back where it was...
I need to implement an indicator that create rectangles but I want that they overlap candles.Anyone knows if there's a way?Thanks
I have downloaded indicators from this site and tried to hide/unhide lines on MT5 by changing colours to none or changing colours but the option is locked and I am unable to change the colours. Can some one please suggest a way to change the colour. Thanks
I did search MQL5 forum but seems like iCustom is executed at incorrect sequence in OnCalculate when using it in different timeframe as the chart's base timeframe. below table in the left is when using same timeframe M5 for the chart and iCustom. right table is when using M1 timeframe in chart and...