Technical Indicators - page 57

TMA+CG mladen nrp (1) TMA+CG mladen alerts mtf nrp. Hello guys, some help please. Im having trouble receiving POP UP alerts from the above indicators. I have set the appropriate alarms to TRUE but still no success. Other indicators used are sending alerts. Any help would be gladly appreciated. TIA
I have an indicator that I'm using iCustom to feed an EA. I can get the value from Buffer 0, seen below with a value of 1. But when I go back more than 500 bars, even though I see a value of 1 in the date window, the value it returns in iCustom is EMPTY_VALUE. So I thought maybe it was stored in a
I have checked the code and was not able to find the error, could you help? 2020.05.03 22:54:34.762 Herrcrowley_master_nc_jpy (USDJPY,H8) array out of range in 'Herrcrowley_master_nc_jpy.mq5' (94,63), the error is highlighted, thanks
  Problem with CopyHigh/Low  (12   1 2)
Hi, I have problems with the code below. When MT5 is freshly started and the profile is loaded, CopyHigh/Low returns nonsense values. Only after reinitialization by switching timeframes, the correct values are loaded. Whats wrong here?...
how do you add <..> indicator to the mql5 platform? I know how to add to 4. Thanks
Hello! i just want to ask if how i can set the yellow green dot to the size of previous candle from low to high x2. Thanks
Can anyone please look at the MN1 chart for EURUSD, parabolic SAR indicator is incorrect on March 2020 bar. I have attached two screens, one from MT4 and another from MT5. I have copied the source code of the PSAR indicator and compiled it under a different name, but same source code, this is what I
  Alert system  (3)
Hi, I am trying to setup alerts on a line exactly when price touches the line, using bid and ask as per code below giving wrong alert and alerting before the line touches i want to get alerted when price equals the line, Any help is highly appreciated here is my code static bool isFirstTick =
  Market Scanner  (9)
Hello! Is there anyone have or know how to make market scanner that will be base in my personal indicator. Please help, i really need it. Thanks
  MQL5 Code Help  (2)
New to the coding of indicators on MQL5, and I am looking for help on how to compare two candlesticks with one another. I want a signal given, in the form of an arrow over the candle, when the current candle's open and close are within the range of the previous candle but in the lower third for a
I need your help on the subject. i created an MT5 indicator which works fine but disappears from the screen when i refreshed the chart it is attached to. This problem arose when I shifted its signals back 3 minutes using the shift function; but if the shift is on 0 it does not disappear from the
  Dual CCI Indicator  (11   1 2)
I am trying to create a CCI indicator that allows you to plot two periods in the same indicator space, such as the 14 period and the 50 period. I am getting these errors when I try to compile: 1) " OnCalculate function declared with wrong type or parameters" warning 2) "OnCalculate function not
I have an indicator that draws arrows on the chart as seen in the image below: I tried searching for the arrow objects in ' Object List' but there were no objects there. I also checked ' Object List>List All' menu. I guess the way that the indicator is written has hid them from the chart. How
  SHI Indicators  (71   1 2 3 4 5 ... 7 8)
Draws an automatic channel with parallel lines
Hi, I have an indicator called DCBA . It works fine when I put it on a graph as well as when I call it with iCustom in my EA. From it, I created another indicator which loads DCBA. In the call in OnInit, nothing special: glHandleDCBA1 = iCustom ( _Symbol ,DCBAPeriod1
  best fibonacci  (1)
hi every one i want best fibonacci indicator .. plz i want some one try it
Dear colleagues, Good afternoon. I'm sure everyone has repeatedly noticed that some instruments are correlated. For example, EURUSD and GBPUSD. Doesn't it mean the possibility to build some reference graph, which would be different (EURUSD and GBPUSD scale), and still maintain (not strictly, but
I am trying to use GetDiskSerial.dll in mql4 to get HDD serail num. {*******************************************************}{                                                       }{       Borland Delphi Interface Unit                   }{...
Hi I was wondering if someone could point me in the right direction with this indicator that I built. It plots fine until I change one of the input parameters. From there the indicator plots get messed up. I've tried everything it seems, but nothing seems to help. Below is the initialize function
Hi all, I`m a beginner to mql coding and I am struggling to code an indicator for my first EA. I want to create an indicator with a simple moving average only with horizontal levels in a separate window. On smartphone I combined RSI(1) with the horizontal levels and the MA in the same window. Any
Hello everyone! I'm having trouble editing a Bollinger Bands indicator that emit a signal on the same candle when touching the bands. I would like the PUT or CALL signals to appear only if the operation is in favor of the trend in relation to an exponential moving average of 100 periods. Ex: price
Does anyone know why, CopyBuffer can't catch the data? (CopyBuffer returns -1, I use GetLastError to check the error code is 4806)
Good day, I hope someone could please advise me. In MQL5 I initialize my Boilinger bands with the iBands call: fastBoilinger_handle = iBands(_Symbol, _Period, 20, 0, 0, PRICE_CLOSE); I then try to get the upper, middle and lower band values for the past 3 time frames as follows: double BM[], BU[]
attached mq5 indicator please correct it
//+------------------------------------------------------------------+ //| renko.mq5 | //| Copyright 2020, MetaQuotes Software Corp. | //| https://www.mql5.com |
Hi everyone, The indicator that I need may be of help to others that use volume for trading. The concept is very simple and typical of VSA traders, is to look for a No Supply or no demand bar to enter a trade. That is why I need a indicator that does the following: No Supply: Down candle and volume
From the documentation I thought it would be possible, but so far I haven't manage to make it work. I have included my code below, could someone please take a look and show me where I've gone wrong. As you can see from the commented out sections, I originally was going to do what I wanted with 9...
Not sure if this exists... If not maybe I will try and make it. Let me try to explain... Within the space of a minute, the price may move up and down dozens of times. Adding up all the separate micro-movements, you might see it travelled 30 pips in total, 20 up and 10 down. But the 1m bar/candle
  pivot high  (1)
hi I want to convert this code to metatrader study( "PivotHigh" , overlay= true ) leftBars = input ( 1 ) rightBars= input ( 0 ) ph = pivothigh(leftBars, rightBars) plot(ph, style=cross, linewidth= 3 , color = red, offset=-rightBars)