Technical Indicators - page 43

Hi, in the following code i fail to see why im getting an array out of range error? //--- indicator settings #property indicator_separate_window #property indicator_buffers 1 #property indicator_plots 1 // Buffers double MAOsc[]; // Global variables int fastMA;
  super-signals  (34   1 2 3 4)
Hi. I'm loking for some modifikations of super-signals indikatores. I know, that some are calling them ,,joke'', but they are build on a good idea and some of tham have to be good working with grid sell/buy using. Please, if u have some modification of them, poste tham here. I have only base one,...
Hey guys, I have been using a really nice RSI divergence indicator which helps me mostly to avoid reversals. The problem is it doesn't have alerts or notification function which could have been really useful. Can anyone help me add those two functions to the indicator
It should be easy to reach this, but i need help on the way. I wonna just draw a moving average line on a Chart likes this. (Orange Line)   My result is just like this. The lines going are endless to the bottom instead connecting each point to a line. (Red)  ObjectCreate( "movav" +...
Hello, Does anyone have an MACD indicator that alerts, preferrably with email and sound, when the MACD line crosses 0? Thanks in advance
Hello If i have an expert and i want to run it at all time-frames and symbols, Do I have to open more than 1 chart to run this expert? What if i want to open one chart and run this expert at all time-frames and symbols
Hello Folks, I'm new to MQL5 , I have been trying to code the HMA of the monthly timeframe but no success, I coded it to be calculated on the current timeframe then changed the interval to PERIOD_MN1 but no success here's my code, I'd really appreciate it if someone told me what I could be doing
Hello I am a beginner in coding. I want to ask: Why when i put"input" this code dose not work? string symbols[]= { "GBPUSD" }; ENUM_TIMEFRAMES TimeFrames[]={ PERIOD_M1 , PERIOD_M2 , PERIOD_M3 , PERIOD_M4 , PERIOD_M5 , PERIOD_M6 , PERIOD_M10 , PERIOD_M12 , PERIOD_M15 , PERIOD_M20 , PERIOD_M30
Similar to a session indicator...but simply a horizontal line on the chart that signifies daily whatever time you have specified into the inputs. Is there anything like this out there? Would be great if it had the ability to place multiple lines in different colors in desired
I have a DLL that will return a pointer to an array of structs: struct dataSet{        //some random variables}; dataSet* RandomFunction(const int ratesTotal, const double price[]) {         //some random calculations} However, I do not know how to import this function in mql5. I have tried doing...
Please help me program this little indicator
What code can be used to add text information in the following panel window? I'm a beginner coder.. thanks for your help... My idea is to add some statistic information in this screen from my indicator. I'm using the following code to start it. int OnInit () { //--- create application dialog
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