Technical Indicators - page 14

I am new to MQL5 coding , but found a function called DRAW_FILLING that can be used to fill between lines of indicators (e.g. Bollinger, two emas, etc.). However, the outputs do not look nice when you have two buffers overlapping (e.g. when you want to see two types of Bollinger) because the filling
Hi everyone, Can I draw a rectangle on a Daily time frame and see the same drawing on H4 ? Or do I have to draw 2 different rectangles each on a time frame ? somethink like on this photo : Is there a native solution on the Metatrader software, or do I have to use a paid indicator? Best Reguards
Hi everyone, I am looking in vain for the code of this MESA projective indicator to be placed on the price that draws in the future the length of the cycle; Has anybody worked on that or know where to find it? I am looking for this indicator able to: take advantage of the adaptative cycles from J
I am new on MT5. There is more than 2500 species on MT5. I make an indicator (and EA) including an "Alert" . Is it possible to scan all stocks ( more than 2500) using the indicator to find the one I wanted
Hi I created an indicator that, when executed, draws a Fibonacci tool on the chart. With the help of a button, the display of Fibonacci lines is turned on and off. The problem is that I get the following error at the beginning of the program execution. But by changing the time frame, the indicator
when signal arrow appear on the chart i want to change chart background color , suggest me how to do it..... //+------------------------------------------------------------------+ //| Indicator: stock-arrow.mq5 |
  TTM Squeeze/BB Squeeze  (149   1 2 3 4 5 ... 14 15)
First of all I want to say Hello to all users, and say sorry for my english. Now I try to describe my problem: I found the bbsqueeze indicator on this forum and I tried to use it in my EA. And now I have a problem becasue I don't know which buffer retruns the values less than 0 (the red posts...
hello, I am looking for free tool which give me alert of indicator which i set, like i have a Hammer identifier indicator when Hammer formed i need alert on screen. Note: Sorry for my poor english
Hello, I'm trying to add a SMA with 20 periods  from 1 hour chart to a 5 minutes chart.   Tried to use the function IndicatorAdd but it didn't work... Any advices? #include <Charts\Chart.mqh>   CChart grafic; int average_handle;//--- input parametrsinput ENUM_TIMEFRAMES   InpTimeFrame=PERIOD_H1; //...
  mouse move  (8)
hi I want to knowif there is a way to change the color of the candle that mouse is on it. some thing like mouse hover.
Want to convert the source code of Tradingview orderblock indicator into MQ5 and have the same identical results
Hey guys, I wrote a simple indicator that plots "Sections" on the chart. i checked that the buffer arrays are filled correctly, but it is still not plotting the lines. I tried everything, and now simplified the code as simple as possible, still not plotting: #property indicator_chart_window
Hello, I'm building a zigzag base on MACD indicator. There are 2 problems i'm dealing with it: 1. It fail to calculate from 7:50AM 13/09/2023 on EURUSD M1, and other symbols. 2. Sometime it crash when i try to load it to chart or refresh the window. I have no clue about both of them
Hello, I need an alert that will identify the different stages of the Williams Alligator indicator. Please
Hi I have created an indicator class and when run it on a testing EA, following methods returns correct values: double CiPivots::GetIndexPivots( int pBuffer, int pIndex) { string vMethod = "[" + mSymbol + "," + EnumToString (mPivotTimeFrame) + "] " + __FUNCTION__ ;
  heiken ashi  (7)
how to see the closing price of previous candles with heiken ashi charts (whose closign price, as you know, is not the real one) ? thanks, kind regards
Hi everyone. could anyone recommends an accurate indicator ?( an indicator that gives accurate sell and buy signals). ( paid or free. no matter) thank you very much
[Deleted]
Hello, just switched to MQL5, can someone help me understand why this behaviour happens? As per title, I'm trying to plot previous day high/low. Here's the code: //+------------------------------------------------------------------+ //| Previous day
Good morning everyone. I would like to code an indicator based on the TSI that calculates the 2 threshold values (oversold / overbought) by averaging the 10 largest values in the last year (number of bars to set according to the TF) for the value of Overbought. Opposite for oversold, i.e. average
  Elders market thermometer  (22   1 2 3)
Elders market thermometer - from "Come in my trading room" - a real classic Mode parameter : 1 - "original" mode (picture 1) 2 - colors changed to reflect "trend" (picture 2) 3 - the so called "Silberman's and Lynch" version (picture 3) if in trade already and red bar, then exit get ready for
Help! Where can I find this indicator? Thankyou
Hi all, I have worked and tested alot of indicators. but by reading the source code i have found many Math Magic(at the moment) blenders in indicators. i couldnt find anything in google about the logic of its use. thier should be one. if anyone can guid me or share link with me, what is the math or
Hello. Is it possible to access buffers of indicator when you haven't purchased yet? I mean still in demo mode
I am looking for an indicator that will show the number of pips of a bar or candle for that given period.... Is there anything like that out there? Thanks
Is it anyway possible to change the colour of the horizontal line from red to another colour of our own choice the same way that candles are changed?
Each indicator has two types of data: Inputs and Parameters. -------------------------------------------------------------------------------------------------- How to set the parameters ( APPLIED_PRICE ) when using iCustom
Hello, I am building an EA, and I am trying to find the best indicator to detect volatility. Any suggestion is welcome
I try to writing indicator which try to help me calculate lot size for my position on chart. this is my code. i compile it and error. idk y. Thank for you help. //+------------------------------------------------------------------+ //| LotSizeCalculator
  PSAR help  (3)
How can I make my PSAR settings look like this? Please help It's like fanning from the start expanding to the end. I tried a lot of modifications, my fingers are numb but I cannot get the correct settings. Please, any one of good heart
Hello everyone, I'd like some help, a formula to "calculate" volatility on bollinger. I assume there is something like "(TopBand - BottomBand) / MiddleBand * XXX" ? Do someone has an answer ? The idea behind that would be to get an alert when volatility get higher than x% or xvalue (i don't know)