Technical Indicators - page 132

Hi all i was trying to add a an alert to an indicator I found over in the code base section, I am not sure what I did wrong as the alert pops at the end of each candle close now, but not when the arrows are triggered. Below is the code, and I have also attached the indicator...
Hi, I'm after a MT5 programmer who can create an indicator that shows ratios between zig-zags. There are plenty of MT4 indicators that can do this, but I've not seen one for MT5. See the attached diagram of an MT4 indicator that shows what I want. I want to be able to adjust the zig-zag settings...
Hello, I try to write a custom indicator. I have done quite well, but I noticed a strange thing. If I try to attach my custom indicator to the same chart more than once, with different settings, the second indicator window does not print any value. If I attach to the chart the indicator...
GOOD DAY. All traders have gone through dozens if not hundreds of indicators trying to find a few that seem to best fit their trading style or actually help their EA programming. I have been manually trading for 7 years now and wanted to share a few FREE indicators that I found that have actually...
[Deleted]
Here is a customized version of the Center of Gravity Indicator. It displays dynamic support and resistance lines every candle. The indicator will automatically cycle through a certain amount of candles to see what COG settings were the most efficient. It then uses these settings to produce the...
i 'm looking for a indicator script that draw horizzontal line price when some ondicator cut another indicator there are some thing similar maybe for mt4 
Hi. I have looked extensively for this indicator for MT5 on the internet. It takes periodic screenshots of charts and stores them in the experts\files folder in MT4. I am not a coder so could someone please help me find this indicator or convert the attached one to MT5? Thank you! Chris
Hi I'm new to MQL5 and forex trading, have written a basic EA to prove some of the syntax's and have this running on a demo account. I would like to analyse previous candles noting the length and open / close prices. x = candle[0].length; // Last Candley = candle[1].length; // Candle previous...
Could someone please explain how to ensure the indicator calculates all bars available on the first run, and then only the bar that most recently appears. My indicator calculates what I want on the first run, but then does nothing. I can't figure out why. if (_BarsCalculated== 0 ) { StartIndex
WHY DO YOU USE INDICATORS THAT CHANGE VALUES WHEN PERIOD CHANGES? TRADING WHY DO YOU USE INDICATORS THAT CHANGE VALUES WHEN PERIOD CHANGES? - YouTube
Hi Traders, I wonder if anyone knows how I could arrange this code so it turns both the bid and the ask on and off at the same time? Currently it switches the Bid and then the Ask on and off sequentially. I'd be most grateful if someone could help. Many thanks bool toggle =...
Hi, The Sleep() function isn't allowed for a custom indicator. Is there any workaround ? I wrote the following code but it doesnt work fine when I change timeframes of charts. But when I did the same thing with Expert Adviser program, it works fine by using the Sleep() function. How can I do...
I am trying to figure out the best way to use the redgreen indicator, but can't. Anyone have any advice on this? Any advise is very much appriciated.
Hi All, I created an indicator which takes a chart screenshot and saves it. The name of the saved file includes symbol together with time when the screenshot was taken: ChartScreenShot(0,_Symbol + " @ " + (string)stm.hour + (string)stm.min+".gif",WIDTH,HEIGHT,ALIGN_RIGHT); What I want to then...
Someone has the indicator and oscillator CandleCode developed by Viktor Likhovidov? Could someone develop?
Hey, I am trying to draw horizontal lines in an indicator. Attached is a simple example program of how I am trying to do that. Basically, I am calling "ObjectCreate(chartId, "line", OBJ_HLINE, 0,0,price[n]) to create a horizontal line. But when testing the indicator, I do not see any lines. Any...
Just now the ZigZag in the example folders has a bug. It has a double High and a double Low. look at the attached screenshots Setting are: 24,10,6 on GBPUSD & 18,7,5 on EURCHF just me? regards daniel
I am converting my old indicator of MQL4 to MQL5. I having a problem. MQL code like : int Volatility_Band = 34 ; for(int i=limit; i>=0; i--) { RSIBuf[i] = (iRSI(NULL,0,RSI_Period,RSI_Price,i)); MA = 0; for(int x=i; x<i+Volatility_Band; x++) {...
[Deleted]
  seriate fractals  (1)
Hello, I have a problem. how can I show seriate fractals in Metatrader? I mean if two up fractal are consecutive & if two down fractal are consecutive, I just want to see them & eliminate the others. How can I change the original fractal indicator and use it as written above? Thank You
  trade alert  (1)
hi , I have one indicator named Trade alert, which is attached. I need to get away with alert , as every second its pop up. i just need signal on chart and popping up of signal disturbs me a lot in my trading. can any one guide me in doing so. here i attach the same. Thanks in...
Does anybody know what this is? I get it when trying to test an indicator in strategy tester. The indicator draws trend lines on the chart thanks
[Deleted]
Hello, anyone know where i find depth of market indicator for MT4? thanks
Hello. I try my best to learn C++ and MQL5. But I have some problems, which you see in the chart below. Is it possible that the yellow indicator lines are not drawn if the indicator value is zero ? Is it possible that i create indicator lines in the chart window and a signal line from 0 to 100...
Hello friends, I have two indicators in metatrader 4, and they are not available for MetaTrader5, could one convert for me please? their names are: Hama and AdvancedADX Thank you!
  Best indicators!  (9)
What are the best indicators in your opinion?
  New Indicator  (8)
Hi All, I need an indicator that is not available for Metatrader could you help me to make it? Or if you have it could you share it? Thanks so... Indicator Name: SRDM Link of formula: http://finance.easychart.net/WebDemos/Explore.aspx?Id=27&File=Basic.fml
Hi, I’d like to open this thread about the usage and utility of the time shift parameter (which is present in many indicators, for instance those related to averaging methods). If I got it right, this parameter basically introduces additional lag between the indicator and the price movement. Since
Hello, I have looked for iPanel such as what is available in MT4. I checked on MT5 but no results appear. Is this available or is it planned to be developed from MT4 version? Thank you
Hi, I have indicator working on daily timeframe (comparing today close with yesterday close etc....). Now I would like to compare not today's close but close 10min before the daily close. Is is possible to access 10min value on 1day indicator or should I solve the whole indicator as 10min...