Technical Indicators - page 16

I'm new to mq5 coding but I want to learn how to make 2 simple text indicator for xau like: 1. I want make fundamental price history, so the indicator should sync with forex calender (major pair country) and mark price movement right after the news happen. The table context should look like this
My audio alert should trigger when a certain condition is met, it does trigger on this condition and plays the alert, but the issue I'm facing is that once the alert triggers it doesn't just play once...it sounds like someone starts suddenly playing the alert on a vinyl turntable. I tried coding
if anyone have, please share this indicator
//+------------------------------------------------------------------+ //| t.mq5 | //| Copyright 2022, MetaQuotes Ltd. | //| https://www.mql5.com |
I had this funny idea to make a red spike appear under the candle when it is unsafe to buy. As a warning signal. When the price is high, the red spike gets larger in dimension...the larger the spike, the more the trader needs to be certain about their entry... the smaller the spike...the better for
Hi, I had a indicator that was working that no longer works. I ran on metaeditor to see for errors, and I got the following error. 'Period_W1'-cannot convert enum    [on line 22] Any suggestions on a fix? Anyone?
  Repainting indicators  (656   1 2 3 4 5 ... 65 66)
There has been a lot of discussion regarding repainting indicators. i thought to be a good idea to gather all the information in a separate thread. here some popular indicators that i know to repaint: Zigzags SilverTrend all Fisher , Solar and what ever they are called BrainTrend indicators: be
Hello i modified an indicator and got values in static array which is non dependent on bar number qnd i want to give this array's 0 value to indicator buffer array's 0 value and as you know indicator buffer array is dynamic and time dependent array. İ equaled [0] value of each array in indcator but
Good day! I wrote the code (attached below) for the indicator, everything counts correctly. However, only during initialization, during further drawing - the information is drawn incorrectly. I tried to use start () instead of a calculator, but everything is the same. Only 1 return;
How to write a code to plot ichimoku indicator onto RSI indicator at period 1, when RSI indicator is only needed for levels
Hello, I'm new to mql5. I'm doing this as a practice project. I need help on, how to hide the MA line from chart when I click on the button which I've implemented to my custom indicator. I tried by turning the MA line to the same color as the chart background color. But the line is still showing on
Please help me correct this code error on line 59. Here is the code in the attachment. The error is 'WPR_Period' - cannot convert enum
I feel like this shouldnt be this hard, but i am just learning in my journey and trying to work out how to draw a rectangle when there is imbalance there. I know i could just use an indicator already in the market but then i don't learn anything. I have gone through the forums and tried to
Hi Guys can you please help i am trying to find current tick value on the RSI Here is my code so far: int RSiHandle; RSiHandle = iRSI ( _Symbol , PERIOD_M1 , 14 , PRICE_CLOSE ); double rsi [ 2 ]; CopyBuffer (RSiHandle, 0 , 1 , 2 ,rsi); double RSICurrent =(rsi[ 0 ]); double RSIPrevious =(rsi [ 1 ]);
Hello everyone, I hope you're well. I'm still a beginner and I'm finding that when I remove an expert advisor then I still see the comments, so I did a quick search and found this solution , so I added an empty comment in the OnDeinit function: void OnDeinit ( const int reason) { Comment ( "" );
I'm trying to read the price value of an angled line one bar right of its anchor point using the ObjectGetValueByShift() function - and it's giving me garbage! Can't figure out why. Here is my code from the indicator I'm working on
Hello, I am implementing an EA based on smooth moving averages (the four colored lines below) and I want to have another indicator to prevent to enter (long) when price starts to falter (i.e. to slow down, to be "out of breath" etc.) Best way to illustrate this is with a chart: So, is there an
Hi, I'm developing this indicator, an ADR for MT5. The algorithm is, get the sum of daily range high and low from last N days (14 in my sample), begining from yesterday, and divide it into N periods (14). Getting the average. I don't know which is the problem but I'm comparing with an MT4 indicator
Hi, I'm new to MQL5 programming and have been going through different API functions trying to see what works. Unfortunately I'm facing a lot of trouble in trying to convert the logic from a basic QQE indicator (written in pine) to an MT5 indicator. The indicator should just plot two lines. The trend
Does anybody have a ichimoku that signals when the cloud changes or Span A crosses Span B. Arrows would be nice. I found one called Ichimoku Arrow Signals Alert but it doesnt show anything when selecting only Span A cross Span B
Hello I would like to know how to have the line characteristics in the indicator properties I didn’t want to set up a buffer to make these lines, but rather go through the command #property indicator_level3 70 It appears well in the “input data” tab but not at all in the “colors” tab It has no name
  The Best Scalping Indicator  (61   1 2 3 4 5 6 7)
It is the best scalping indicator with 1 minute time frame according to me. It has best winning trade rate with EXNESS broker. When trendline colour changes from green to gray - give buy order, and when trendline colour changed from red to gray - give sell order. Happy trading.
Hi, I have this ... but don't manage to make it work. what's wrong? what am I missing? array out of range when testing... #property indicator_separate_window #property indicator_buffers 3 #property indicator_plots 1 #property indicator_type1 DRAW_LINE #property indicator_color1 clrRed
Hello I have a code for an indicator in MQL5, that I would like to try to rent with payment per month or per year. I think it is also possible to limit the number of simultaneous uses and that these services were easily accessible via a commission to be paid to Metaquotes, which is not a problem for
Hi, Was hoping someone else could tell me why my oscillator has 0 values at the more recent index positions. The code essentially creates a bunch of RSI's of different periods. Then aims to create a multi length average. Yet for some reason the values plot to 0 in the more recent candles. I cannot
Hi, I can't seem to delete or edit this thread I created: https://www.mql5.com/en/forum/449680 There is private code here which I decided I don't want to be in public, I would appreciate if I could either edit the posts to remove the pasted code, or if the thread could be removed
Hi, I don't understand why I'm getting an array error when testing. Can some one tell me whats happening? //+------------------------------------------------------------------+ //| .mq5 | //| Copyright 2010, MetaQuotes
https://www.mql5.com/en/code/39683 this is an awesome indi for my strat as i can use these HTF candles over the top of my LTF chart However i need to know whether the HTF candle is Bull or Bear ... and this just paints it all red i think i need to change these but im not sure what exactly i need to
what do they count? do they count every variation of price on every tick, or on each bar? for example here: #property indicator_separate_window #property indicator_minimum 1 #property indicator_maximum 100 #property indicator_buffers 1 #property indicator_plots 1 //--- plot TII #property