Technical Indicators - page 133

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...
Hello, I'am looking for an adapt ZigZag showing the cumulative volume for each ZigZag, for expample like this. Do you have any ideas to build up a Zigzag with volume? Greetings Mike
Hi, is it possible to plot an indicator (separate window) using different timeframe from the currency's one? ex. currency plot is at H1 I'd like to plot ATR(M15) or ATR(daily)
  DSS Indicator  (1)
Hello, Here a great Indicator
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
  hello  (3)
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,...
  GANN Fan  (1)
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...