Technical Indicators - page 10

In MT4, there are two types of text that can be written on the chart: "text" and "text label." The "text" option remains automatically anchored to the point where it was inserted, while the "text label," if placed at a specific point on the chart, will move away from that point when you scroll the
  Division problem  (3)
Hi , First of all sorry, I know there are a lot of topics with this issue, but couldn't find an answer to my problem. Here is piece of code : Dt[i] = ((alpha * MathAbs(Et[i] - Xt[i])) + (( 1 - alpha) * Dt[i+ 1 ])); CI[i] = ((High[i]+Low[i])/2) / ( 0.015 * Dt[i]]); where Dt[] is
Found this cropped image online. The line below or above candlesticks seems interesting. I don't think this is supertrend. Can anyone tell me what this indicator is
Hello guys, I am new trader please anybody can help me about these indicators for mt5 i will be so grateful
Folks, for the built in ichimuko indicator under : "Indicators" --> " Examples" ---> "Ichimuko". T he code for this indictor is available ....so i am wondering if there is some attribute/property we could include to get the two lines in the screen shot to diplay on top of the cloud ? thx
//+------------------------------------------------------------------+ //| free tool B&C.mq5 | //| Copyright 2023, MetaQuotes Ltd. | //| https://www.mql5.com |
Have been trying to create it all day with no luck, anybody have access to something like this? in reality im really looking for code that can detect engulfings that pushed price up in an uptrend or down a downtrend aka order blocks, anybody have the code to this so that I can add it to my EA? or
I'm creating a "Symbol Changer" indicator in MQL5 that should display currency pair buttons in a separate window below the main chart. The goal is for the buttons to appear in the indicator's own window (similar to how an RSI indicator would display), without overlaying the main chart. Here's what
Hi everyone, I'm developing a currency strength indicator in MQL5 that calculates the relative strength of each currency and plots lines for each one in a separate window below the main chart (similar to RSI). However, I’m having trouble getting the lines to display in the indicator’s window, even
The attached code is my effort to create a Stochastic Oscillator Divergence indicator. This indicator is supposed to send the relevant alerts whenever there is a bullish or bearish divergence . I created the indicator by modifying the RSI_Divergence.mq5 code (which does not have alert features). The
I need a CCI indicator that notifies me when it crosses a certain levels. I've been looking for this indicator for MT5 across the internet, forum, and codebase (maybe I missed it), but I can't find any. All I found is for MT4. Can anyone help me find this simple indicator with alert
Hey Folks....new MT5/MQL5 user here, i am attempting to move my custom indicators + trading system from Sierra Charts to MT5 and facing some basic issues. I have learned a bit about MQL5 to understand the general aspects of indicators vs EAs...went through the sample code ....but i am by no means an
this is the code wich i want someone to help me code into mql5
Dear, I can create the DEMA over the MA, but I can't create it over the SAR. If I do: int hnd1 = iSAR ( _Symbol , PERIOD_M1 , 5 , 20 ); int hnd2 = iMA ( _Symbol , PERIOD_M1 , 5 , 2 , MODE_SMA , PRICE_CLOSE ); if ( iDEMA ( _Symbol , PERIOD_M1 , 9 , 5 , hnd1) == INVALID_HANDLE ) Print
  ATR Trailing Stop - Help  (99   1 2 3 4 5 ... 9 10)
Hi everyone: I have absolutely no coding experience in mq4 indicators, and am asking for help in creating an indicator. The volatility trailing stop that uses a multiple of ATR has been of great use to me in Metastock when I used to trade equities, and I've been looking for an equivalent in
Hello traders, I am opening this thread to know the ideas of making different indicators based on your ideas. I will code that for free and place it here for you. I would love to know your ideas. Please do share. I will discuss it and if effective then will code it down at once in MQL5 probably
  Always an ISSUE  (7)
Always an issue with combo box . I have read every single question asked in the past and I still can't figure out why this combo box is not selecting items when I hover on the list :( Here is my code. Please can anyone tell why it is not selecting
I have an mql4 indicator code but i wanted to convert into mql5. I changed the old start() -> OnCalculate(), solve all the time,Bars,High,Low function but i think missed some array modification because i get all the time "Out of Array " error and i don't know what i missed, because the same code is
Indicator not showing arrows to indicate when to buy , sell , close buy , close sell . please help
  RSI + BB + EMA  (2)
I took my own crack at coding today. This is supposed to be an indicator that connects BB and an EMA to the RSI indicator data that will be displayed in one indicator window. However, after fixing all of the errors Meta Editor has given me, the indicator window shows up blank on my chart. When I
My GBPUSD chart (any timeframe) will display a "grid" which was an indicator I downloaded but erased. Why is it showing up just on this one currency pair (every time I refresh the chart) and how do I get rid of it? I've already erased it from the data folder.
Hello Folks, Recently I had to shift from mql4 (which I can code) to mql5 I want to create a moving average on a custom array that I have after some calculations in mql4 I used to calculate it as follows customMA[i] = iMAOnArray(customArray, Bars , maPeriod, 0 ,maMethod, i); I have done my search
I would like to ask for a feature in MQL5, basically a counterpart to the "IndicatorSetDouble" method that allows to get the values. Ideally it would work like the "IndicatorParameters" method, so that one can pass an indicator handle and the double property values are returned accordingly
  ArrayIsSeries  (3)
I am wondering what went wrong! here is the situation: writing an indicator, declaring a double array to be used as buffer, and it still shows that it is not timeseries!! double BufferInd; OnInit () { ArraySetAsSeries (BufferInd, true ); return ( INIT_SUCCEEDED ) } int OnCalculate ( const int
Hello, I am attempting to create an exponential moving average indicator but i am having an issue with the performance. I am using tradingview.com with the indicator "deloreanEMA" it has 5 EMA indicators. sample of 5, 13, 50, 200 and 800. The 15 minute chart below shows what the ema indicators look
Hi guys anyone can explain me why this indicator not plot nothing ? //+------------------------------------------------------------------+ //| CorrelationIndi.mq5 | //| Indicatore per calcolare la correlazione tra due strumenti
I can't find this MACD for MT5. I tried the built-in MACD, but it seems to be different from the image I attached. So, the question is, where can I find the MACD that shown in my image
I'd like the ability to add lines a certain number of pips from the MA line, like the below image, but I don't know how. I've written the code (below) for the colour-changing MA, but I'm hoping someone would help me add the extra lines 200 pips from the MA in either direction. //--- indicator
Hi, I Need assistant the indicator script thatni generated from chartgpt.. this are my values below. Code me a RSI and CCI MT5 indicator with the following parameters. RSI input 1color blue, Level 10. 90, 80, 20 and 50 CCI input 5000 with color red Send a pop-up alert when CCI input 5000 touches RSI
Hey guys, how can I anchor a text to a vertical line. Any hints to go about it? I created a line for every hour. Works great. Now when I create a text I want to anchor it to this line. Ideally to the bottom with offset. And when I change TF or zoom in or out it should always keep this relative