Technical Indicators - page 40

Hi all, just after a bit of clarity on the use of iWPR. When using the iRSI function it has four parameters, with the last being ENUM_APPLIED_PRICE, so if for example I use PERIOD_M15 and set the final parameter to PRICE_CLOSE, create an array and then reference it, i.e rsiVAL[2], I am getting the
Hello, I am looking for sine wave generator indicator where I can control period, amplitude and offset and it can display 3 sine waves. I post a image so you can see what I mean. I cant find it anywhere
I created this indicator and I am trying to sell here but automatic validation cant get through.I get error that, tester takes too long and I have tried making adjustments to my indicator but still.Could it be that my codes are way complicated for the bot to read or what
I created a loop in which I can assign values to each buffer, but since the number of buffers is not known, I cannot create an array for each buffer. I did a search and saw that there is a method called bufferCreate() that requires opencl technology, but there is no source where I can learn how to
[Deleted]
Hello, I made an indicator that shows the round number s/r levels on a chart. I wanted to use it inside an EA, but when i tried to use copybuffer the array thats copied to, returned 0.0. I checked the indicator arrays, they return correct value. I tried setting the size of the array, inside EA and
Hi ! I'm building an indicator based on an existing tradingview indicator and I want to put two colors on the indicator one is red and the other is green. Green will be when there will be buy signal and red is when there will be sell signal. Indicator The indicator consist of a mixing of the MACD
I managed to get input from a built-in indicator, so now I wanted to try with a custom made indicator. I downloaded an indicator off the internet and put it in MT5. It successfully shows the values in a buffer. [picture of the indicator with buffer.] (For some reason it doesn't accept my link. But
This is the value of 80-day moving average (0.739590) This is the value I am getting 0.753203302741266678 This is my code below bool FunctionCollection::DownTrendMaCrossover( int biggerDayPeriod, int lowerDayPeriod) { bool downTrendConfirmed = false ;
I'm creating a robot that uses the combination of iEnvelopes and iCCI indicators to mark trade, but my problem is how to make my iEnvelopes draw and pick it's prices from my Commodity channel indicator (iCCI ). So instead of getting prices like 5118.4 for instance on crash 500, it will pull it's
I want to have histogram buffer that his candells have many colors like this picture ? is it possibal ? https://ibb.co/qBqbj08
Hello everyone, I have an extremely simple mq4 indicator that displays the upticks and downticks in the buffers for each candle. I am not competent with MQL5 and consequently have failed at converting the indicator into an MQ5 file. I would appreciate a clear explanation and solution as to what I am
I am working on an indicator A that is supposed to operate on the values computed by another indicator B. I have implemented B with 6 buffers 5 of which are plotted. B works great when I attach it to any chart. It takes 8 parameters. The first 3 parameters are as for a moving average and then it...
Is there a way to make the indicator run on specific time frame
Hello, In below given link their is a link of code of time to open next candle, it is working on all charts and show time of the candle as per TF of current chart only. https://www.mql5.com/pt/forum/310104 Can any expert coder please help me identify what changes it need, if we want to show all the
How can I access the values of the indicators in the previous candles in MQL5
Is there some kind of alert or notifying indicator for when a pending order is placed with a lot size higher/above than (for example) 1.00? I don't want to restrict the maximum lot size, however i would like to be alerted when i place a pending order with a too big lot size accidentally. I still
Hello., To all pro level coders. I am facing an issue in displaying a line name "MX_3" just above the line, as illustraded in figure it is visible when I take cursor neer the line and if moved away it get disappeared. I have updated the code but it is not working, unable to find the mistake
I'm trying to call iCustom from attached volume indicator but no success. Indicator shows Rising and Climax volume. I need to get the buffer which shows red or green bar, it means Bullish and Bearish Climax. Buffers from the volume indicator double Phantom[], Normal[], PVA[], PVA_Colors[];
How can I reinitialize an indicator's period based on the output of another indicator's handle? Would I create the int/double on the oninit tab, or inside the oncalculate tab? Would I copy the handle/buffer over to OnTick and calculate the period variable and return it back to oncalculate? Edit: I
Can someone help me fix this 2 errors? void OnStart () { input ENUM_TRAIL_TYPE trailType = ENUM_TRAIL_TYPE( 0 ); // modified input int ATRPeriod = 28 ; input int ATRFactor = 5 ; input bool show_fib_entries = true ; double norm_o = iOpen ( NULL , 0 , 0 ); double norm_h = iHigh ( NULL , 0 , 0 );
Hi, This help I am seeking from expert traders, Below is the code of an indicator in which 2 small lines moves together along with each new candle. I just stuck to add name of line just above it which could move along with line & candle. I just want to know the function and where to add it, if you
[Deleted]
Most of the indicators i tried are re-painting. Looking for a non-repaint indicator. If you know any non-repaint indicators, pleas suggest their names and if possible share the link too
Hello! While developing an expert advisor that is becoming quite complex, I thought it was a good idea to plot the profit of the positions in percent of the free margin. This indicator would help to understand visually what's happening in specific cases. It is intended to work in
Hello, I used the Indicator The class for drawing the Fractals using the ring buffer from Konstantin Gruzdev https://www.mql5.com/en/code/1422 Ghost arrows are displayed there with buffer values, but I can't find the error. Unfortunately, the error does not appear in the visual tester either, only
Need alert on buy sell arrows in my indicator. Can anyone help me out with this. I attached mql5 file here. Thanks
Is it possible? Is the code compatible
Hey guys, Does anyone has non repaint Breaker Block indicator? Which show correct zones and is accurate
Hi all, Below is the (working) code to open a buy order if the close price of the previous bar is above the 20 moving average. However, i use M15 charts but want the moving average to be calculated on the D1 chart/time frame. How do i go about this? TIA #include <Trade/Trade.mqh> CTrade trade; input
[Deleted]
Hello, I'm trying to create a exponential moving average on an array. I seem to get the correct values every time I refresh the chart, but not when I just let it run. The buyEMA returns 0.0 or an insanely high value, once I let it run. Below is my code snippet. I checked the buying_volume array, it
I am building my first indicator for MT5 except I have never done it before. Is there a way I can open the code on an already created indicator that is the same style as what I want to make to learn the code inputs? I have no idea what to enter to get any results so I'm trying to learn. Many thanks