Technical Indicators - page 56

I have an object OBJ_VLINE (vertical line) on chart with name "vline" with datetime 2021.06.08 00:00:00 I see I can not use ObjectGetTimebyValue as it does not support OBJ_VLINE So how can i get datetime value of OBJ_VLINE
What's the difference in the indicators listed on https://www.mql5.com/en/code/mt4/indicators vs https://www.mql5.com/en/market/mt4/indicator/free? Are the same indicators listed in both places or are the "free" market indicators just lite or demo versions of a "pro for purchase" version
[Deleted]
Dear Members My indicator is in Indicators\Final Version\iFx VW_3EMAs.mq5 There is a file MQL5 \Experts\AKTAdvisor\Auxiliary\Enums.mqh , which I want to include into the Indicator. How can I define this path as file is in Expert Folder and not in Indicators Folder ? #include "C:\Users\Anil
Hi Everyone, I am currently looking for a viable - non repainting (HP filter is a repainting indicator) indicator that would leave same (or very similar) data as the Hodrick prescott filter. Could anyone help me with my search? I have already gone through a couple hundred indicators, none of which
Does anyone have ffcal indicator update I use this indicators in my EA. It give this error. My EA not read data. If you have any working new ffcal indicator Drop here. thanks
Hi i have 21 indicator line . I want show entire some of them and 4 of them only show the 0 to 9 of the buffer. how can i do it? I know for showing entire line we should use this code: int bars = rates_total- 1 ; if (prev_calculated> 0 ) {bars=rates_total-(prev_calculated- 1 );} for ( int
CopyBuffer only copy INDICATOR_DATA buffer not copy INDICATOR_CALCULATIONS buffer ??? is that right ?
  Spread Indicator  (27   1 2 3)
Hi traders, several times traders from forums ask if there is an indicator simply showing the current pair's spread. I already programmed such an indicator for my own use and decided to contribute it to the community. Feel free to comment! By the way, it's also posted @ codebase.mql4.com Indicator...
I am trying to make a very simple indicator. I just want to see if the last candle of each period is a bear or a bull. I want to represent it with dot (red or blue). But this does not work. I don't see anything on the indicator. IOpen and IClose does not work. I get this error (ERR_HISTORY_NOT_FOUND
Hello, I have an EA that I added an indicator codded to it. When running the EA, the indicator opens in a separate window from the main chart. I would like to know if there is any way to disable the possibility of the user right-click on the Indicator screen, and change the parameters there. (Not
Hi Everyone, I recently stumbled onto a very particular old indicator (Hodrick prescott filter - attached) - the historical data it leaves is working extremely well with my other indicators for the gold market, however the indicator has one very serious problem - it is a repainting indicator (the
Hi, I have plan to feed custom timeframe like 45 minutes to indicator and get output. lets say Heiken-Ashi. Can you show me an standard method to do this. just a hint is more than enough thanks. int handle = iCustom (_symbol, PERIOD_M45, "\\Indicators\\Examples\\Heiken_Ashi" ); double buffers[];
Hi i write an Indicator that Draw to many rectangle objects on main chart. i want delete all the rectangle after close my indicator. I use this code but the object not remove and remain on chart void OnDeinit ( const int reason) { int qq= 0 , if (reason == 1 ) { while ( ObjectFind (
I've been working in oscillator based strategies for a long time but the result is always the same, when the volatility appears the oscillators just can't lead the price and this could happen at any hour so the time filter may help but doesn't seem to be enough. The main logic is to try ADX but it's
I GIVE YOU THE ULTIMATE TOOL FOR IDENTIFYING TRENDS AND RANGES! Interpretation: While price is Black - price is in range. When price turns Greentrend is present. Change 'Length' to control the sensitivity of the indicator. Download here.
Hey I was researching something and realized that I would want to export all the settings in the market watch window to a CSV file for a given server platform. When you go to Market Watch window and Right Click on an instrument, and press specifications it brings up a small window with information
Looking for an indicator that shows the total amount of orders that occured in a given candlestick. Obviously the timeframe wouldnt matter because that could be user defined. Is there a name for what I'm describing
Trying to add an Indicator to the marketplace, but Automatic Validation just keeps spinning and nothing happens
I would like to draw a simple line 10 points above from my entry. But this line needs to start 2 candles ago and end 2 candles in front of my entry candle. Is this possible? Can someone post a sample code? Thanks
Hey Guys, Im facing this issue which is probably super simple to you guys but cant seem to figure it out. I made this indicator that basically just shows the candle color/direction of a different timeframe, so for example you are on a 5 min chart and will show you a histogram of what color or
Please, I am trying to create something similar to what is in image below, I want a button or icon that would turn on/off the indicator, I have looked at the CButton CLabel classes etc Also studied https://www.mql5.com/en/articles/2296 but am comfused on what am suppose to do to create a button
Hi i have problem to use iRSI in timeframe other than current timeframe it only works on current timeframe how can i use iRSI in other timeframes than current one. other technical indicators also doesn't work in other timeframe than current timeframe. thanks
Hello, I am still looking for a solution to the below if anyone can help? The indicator is a colour change moving average so if the ma is higher than it was on the last candle then it will change colour to lime and down to red. I would like to introduce a "lookback" period to this so that it looks
Hello Folks, I have several issues as a newbie in mql5: 1- problem understanding how loops work and how to access the latest bar and the bars before it (is the index of the previous bar i+1 or i-1 how to decide), 2-does SetAsArray function affects how the loop works also are the user defined arrays
Hi everyone! I'm coding an indicator and I'm encountering a problem. My idea is to have this indicator attached to a chart in a separate monitor just to use it to manage the open trades in each forex pair but I'm having trouble when I switch symbols. I know that the function ChartSetSymbolPeriod
Anywhere I can find this for MT5
I want to make an indicator with a simple moving average. I want to see the average of the last 30 days (always, regardless of the timeframe that I am looking at at that moment). I was trying to do something like what I put below. But i don't get a constant value when i change timeframe. Does anyone
Does MT4 have an indicator that will plot a line on a chart showing yesterdays high, low and close? Thanks.
  RSI Divergence  (1)
Hi community, I need the RSI Divergence indicator, if anyone can pass it to me please
Hello, I have the indicator in the code below which colours a moving average depending on whether it is going up or down. I would like to change it so that it looks back 30 bars so it only is green if the ma is higher than it was 30 bars ago or red if it is lower than 30 bars ago. I did this on the