Technical Indicators - page 41

Hello, I downloaded a FREE indicator (MT5) on my Laptop, it works great. 2 weeks later I tried to download the same indicator on my home PC and it does not download, On the download page it says that I "already downloaded the file". So what I did next is I copied the indicator from my Win 10 Laptop
Hi, I'm having an issue with the Array out of range for line (226,36). The indicator handles are set the same with only the difference of PRICE_HIGH and PRICE_LOW. Can someone point me to where the error is? //+------------------------------------------------------------------+ //|
Hello everybody! There is this 3-10 Oscillator for MT4 which works like this: for ( int i= 0 ; i<limit; i++) ThreeTenBuffer[i]= iMA ( NULL , 0 ,FastSMA, 0 , MODE_SMA , PRICE_CLOSE ,i)- iMA ( NULL , 0 ,SlowSMA, 0 , MODE_SMA , PRICE_CLOSE ,i); //---- signal line counted in the 2nd buffer
Hello (At MQL5) When i try to input 5000 conditions in my code it gives me this error : '&&' - program is too complex After i remove some conditions then the code work perfectly How can i fix this error without removing any conditions? is mq5 is a limited conditions
if I need simple math operation: datetime dt1, dt2; int Dist; double Scale; dt2= dt1+(Dist*Scale); how to adjust datatypes to avoid the warning ? & to get the result of calculation in datetime datatype... how to adjust correctly all variables to long or to datetime ? (I suppose adjustment should be
Hello all I have an issue to get ibarshift value. Actually my current chart is m1 and i get open value from h1. If i am working on future candle then i know i barshift is 0.but when i work on history bar Let say m1 chart current time 27 oct 2021-11:55 And i try to the value of 60bar it mean then
[Deleted]
ZigZagOnParabolic MetaTrader indicator — has been designed based on the 2 standard and popular MT4 indicators — The ZigZag and the Parabolic SAR[PSAR], it tries to show a better version of the ZigZag indicator by marking the Extreme Point of the price with a little delay as compared to the original...
Is there any way to add the 2nd MA to the MACD on MT5 in order to look for crossover signals
Does anyone know a good EMA to dowload on to MT4 Please. Thank you in advance
Hi, I would like to re-create the candlestick chart in an indicator window, any suggestions about the functions to use/articles to read
  Warning message  (4)
Hi guys, can anyone help me write the line of code to solve this warning please
I purchased an indicator from the market and I am one of the features does not give an alert. I was wondering if someone could program (I am willing to pay a fee via freelance) a custom alert for a market based indicator. I have contacted the original developer but he does not seem to want to fool
How to install indicators within the mt4 and mt5 platform, the Android version, and also the same topic on the laptop
[Deleted]
Wishing everyone a great weekend. I am working on an EA with OOP and trying to create indicators for the same. My object is to standardize calculations of my indicators (in CLASSes) and prefer to use averaging methods from <MovingAverages.mqh> file. In my attempt: 1) able to create CiVolume.mq5
Hi guys has anyone come across an indicator that draws a histogram of either red or green buffers if price is above or below the previous days 9pm open price
Please help mql5 code for attaching two indicator to one indicator i have opened RSI indicator in mt5 and then i drag maving average indicator on it any one can help the Code of indicator window 1
Would anyone be able to guide my project in the right direction, I have been trying to create an indicator that plots arrows when conditions have been met, however the indicator seems to be acting up by disappearing the arrows off the chart randomly or definitely if i refresh the chart. Lastly it
Hello there, As the title says, I'd like to get the manually entered lot size value in the default trade panel, to use it in an indicator (0.10 here) : Any hints on how to get this value would be appreciated. Cheers
is there anya one can help to add alerts when gap occur in this indicator //+------------------------------------------------------------------+ //| Gaps_cb.mq5 | //| Tapochun | //|
This is a simple indicator modified from the official RSI. When I load to terminal, I get a warning. “has newer unsupported version, please update your client terminal” My terminal is updated to 5.00 build 3039. I don't know why. you can find the indicator in the attachment. Thank you
Hi all I used to use debug on history data (while setting dates in Options). Today, I saw some malfunctioning of my indicator but it seems "Debugging on history data" doesn't work on toady candles. I tried setting dates between yesterday and tomorrow but debugger when reaches beginning of today
Hi. I want to find Know Sure Thing for MT5. Anyone knows where can I find it? Please
It can be use in any pairs and estimate when to buy and sell. Given where the market is going towards
Using MT5, how can I add MACD to the same window as my Stochastics? Having them both open seperately takes up too much space. Thanks
Hello, I have a robot system that I'm working on. it works flawlessly. but there is one last step that I want to add. I can trade at the intersection of MAs but I want it to exit the transaction at the next intersection. What code should I add? can anyone help? #include <Trade\Trade.mqh> CTrade
Hi. I have been selling the signal for 3 months. Every 3 months my signals were positive. Why is my signal not public and sales are inactive
Gday all, I've have a question about combining 2 standard MT5 line type indicators here. I quite often drag a standard CCI indicator into a SMA indicator window to serve as a filter for trading. Is there any simple way to save the standard CCI and SMA into one indicator in MetaEditor? Or does it
Hi guys, I created an indicator that has an array with size=24 and each day at Midnight It does a calculation changing those 24 values, I would like to visualize It with a histogram: If we are on the 1H chart at Midnight It should print the histogram with the first value under the Midnight candle
[Deleted]
Hi I have created a custom indicator to calculate normalized AD. (The base is AD.mq5 from Examples) It is causing me Zero divide error and when I check values with PrintFormat statement, it is non zero value. Please help me to locate the cause of this. Here is the code
Can someone help with that? I made an indicator that work well, but sometime when change the symbol or time frame in the chart get this error. Here is the part of code than have problem. //+------------------------------------------------------------------+//| Custom indicator iteration...