Technical Indicators - page 64

Taking a look on the above picture We have a normal SMA with period 20 as the blue line and the predicted SMA as red line...Predictions are made for future. We estimate the value of the sma. I want to know if there is a method for smoothing as possible the values of the predicted sma
  renko  (1)
is any body who can make renko indicator for mt5
I have created a canvas DebugDraw() { _width=( ushort ) ChartGetInteger ( 0 , CHART_WIDTH_IN_PIXELS ); _height=( ushort ) ChartGetInteger ( 0 , CHART_HEIGHT_IN_PIXELS ); ccanvas.CreateBitmapLabel( ChartID (), 0 , "ccanvas" , 0 , 0 , _width, _height, COLOR_FORMAT_ARGB_NORMALIZE ); }
I need to record macroeconomic data in a database.Reading news from economic calendars is not possible because the site blocks you.Is it possible to do this with an indicator?That is get the data it shows? Thanks
I want to run a function when the indicator is on the last candle (rates_total-1). I would like to run it once for the current candle every 30 seconds. So run the function on a new candle, and when the current candle has an open and close, it's no longer the current candle. Then, after 30 seconds on
Dear experienced traders I'm testing an indicator, something is strange, could you give me any idea? When I set it in H1, it will show all history movement(right), But when I set it in M15, it only show movement from I set it(left). Do you know any reason? Thank you in advance and best wishes
Is there a HMA-MTF indicator (Hull Moving Average ) with Multi Time Frame option ? I tried Averages MTF (https://www.mql5.com/pt/code/16736) but it does not work de MTF
Hello, The indicators do not work. Can someone tell me why is that ? Is the source code may be wrong ? Maybe I put the files in a wrong folder . Thank you, regards
I'm writing a custom indicator that calculates buffer values based on the values of price, volume, and other indicators. Depending on the value of this custom indicator, I want to change the color of its plot point for each bar without changing the color of the entire line. In effect, I want a
I have created an indicator which plots several indicators within itself. In total there are 7 indicators inside the code defined by : #property indicator_typeN xxxx #property indicator_labelN "xxx" Each of them has its own INDICATOR_DATA buffer defined by SetIndexBuffer method. And the buffer is
I have been running this code for a long time without any problems. ResetLastError();CalendarValueHistory(mqlcalendar_value,iTime("EURUSD",PERIOD_D1,0),iTime("EURUSD",PERIOD_D1,0)+PeriodSeconds(PERIOD_D1)-60,"",""); Print(GetLastError()); However, running from a different computer with a different
Hi all, I'm a newbie to forex, Who can explain for me the progress of creating Highs/Lows on the standard ZiZag indicator on MetaTrader4? How to the depth parameter used from very startup of ZigZag indicator on MetaTrader4 with default setting (12,5,3)? I've attached here two pictures of that
Hello, I want to create a Custom symbol in MT5 to make the data equal to other pair. Means USD index starts at 3:00 and USDJPY starts at 00:00. So i want the timing to match between them to make an indicator work. Is there any way in that i can do this with a formula by creating a Custom symbol
Hi, im developing a multi currency indicator, but always give me array out of range So my problem is where i put double calc = eurusdBuffer[i] + eurjpyBuffer[i].close * 100000; -> In the chart always says that is out of range, but when i put only eurusd doesnt show the error I have always the
I'm finding that the Language Reference Manual (MQL5) is not much use to me – most often the thing I'm looking for is not in the index,and I don't really need to colour candles randomly or make my indicators change colour every 8 ticks. So I'm having trouble finding things out. Could anyone tell me
Good day, What happens when I call the Sleep function in the OnCalculate method in my Indicator? The reason I'm asking is due to an issue I'm picking up in multiple Symbol trading m(on a single PC) with my EA which seems to make erroneous trades (luckily not too often) that are not according to its
[Deleted]
Please help me identify the error why my custom indicator is displaying upside down. Dodger Blue line is original indicator and GoldenRod color my custom indicator in the attached screen shot. Also, I have not set LEVEL anywhere in code, yet in chart it is displayed. May be that is causing the
Hi friends I try to create a Pivot Standard Indicator as a practice. I want to set 7 level in this Indicator.(R3-R2-R1-P-S1-S2-S3) Do I need to set "indicator_buffers property =7 " AND "indicator_plots property=7" for these levels? if the answer is NO , How should I set property for my indicator
Hi! For some reasons, iMACD is returning 0 on GBPUSD , it's working on other pairs. Any idea why? double array1[]; double array2[]; int indicator = iMACD(_Symbol, MACD_timeframe, MACD_fast_ema_period, MACD_slow_ema_period, MACD_signal_period, MACD_applied_price); ArraySetAsSeries(array1
Please tell us. I am using a translation tool to convert the data into English. Is it possible to load a single signal indicator into iCustom, for example, a buy signal when SMA20 and SMA80 cross golden and a sell signal when they cross dead? I was able to do this in mql4, but not in mql5, so I
Hello, I'm coding a basket indicator which alerts me when/if a pair from the list reaches a round number (000/500). I've been able to obtain the last 3 digits from each pair as string (with StringLen and StringSubstr) but when i try to convert them to double or integer all the zeros got removed from
Please, am having difficulty drawing from the edge of the chart, how do I go about it for point 1 and point 2 in picture below. Thanks
Hi, I'm looking for a Williams AD indicator that includes a SMA of the indicator values for mql5. I've ran across a mql4 version...hoping someone is kind enough to share if they have it. Thanks
Hello, may i ask why i can't set the height, width and position of a chart after opening it? This is the code i use: // General Variables bool ChartSetInteger (); // function void OnChartEvent ( const int id, const long &lparam, const double &dparam, const string &sparam) { if (id==
Hi, I am looking for an indicator which gives an alert when the price is touching or crossing the upper or lower BB line (using 50 BB with 1 devi). I dont know if its possible but it would be good to only show alerts when the price was outside the BB and then touches/crosses the upper or lower BB
How to convert a mt4 indicator to a mt5 one so it works exactly as if you are using it in a mt4 platform
This is one I wasn't ready for – I'm running a simple MA-crossover scheme to test out lookback methods. It's running in a demo account It's an 8-bar SMMA with a 34-bar SMMA (checked and double-checked), but the results are showing for an 8-bar smoothed MA with a 34-bar SIMPLE MA. Does anyone have
thank you guys I want to compare the value of the main line and the signal line in MQL5. i was doing like this in MQL4:-      if((iStochastic(NULL,0,5,3,3,MODE_SMA,1,MODE_MAIN,1)<iStochastic(NULL,0,5,3,3,MODE_SMA,1,MODE_SIGNAL,1))&&(iStochastic(NULL,0,5,3,3,MODE_SMA,1,MODE_MAIN,0)>iStochastic(NULL,0...
I have a MT5 indicator that shows an arrow when a S/R level is broken. Everything on the indicator works, but for some reason it doens't update to show new arrows. I have to manully refresh the chart for new arrows to appear. Can someone please take a look at the code and let me know what is wrong
Hi, I've modified the built in ' Moving Average ' indicator so that it should show a red line when the trend is going down and a green line when the trend is going up. However, the line is always red whether the trend is going up or down. Can anyone see where I'm goin wrong? //--- indicator settings