Technical Indicators - page 31

Hello guys I hope anyone know the name of this indicator I used to have it on my mt5 . after I changed my pc I lost all my data so I don't remember from which site I download it from. so by seeing these picture anyone know what is this indicator ?? It may look like super signals but it's not . I
Hello, I try to get data ( a value of a moving from another M5 ) and use it with data in Current time frame but it has repaint please help me to solve the problem double moving_val_M1 = 0 , moving_val_M5 = 0 ; for ( int i = candles; i>= 0 ; i--) // Bars-1 { int m1 = iBarShift ( NULL
why has simple thing like coding a moving average on RSI to read values from 0 to 100 on the RSI window so hard.....I just can't imagine, no proper documentation. Any help
I am new to coding and I added a magic number to this Indicator. I get no errors but when I put the Indicator on 2 charts with 2 different EAs the Indicators TakeProfit Left and StopLoss Left only works with one of the EAs. Any help would be appreciated
Hi Guys it is me again I started reading the documentation and I can't fix these 2 errors '}' - unexpected end of program '{' - unbalanced parentheses Can someone help me thanks
[Deleted]
#property indicator_separate_window #property indicator_buffers 4 #property indicator_plots 1 #property strict //--- plot #property indicator_label1 "N" #property indicator_type1 DRAW_NONE #property indicator_color1 C'8,153,129' #property indicator_style1 STYLE_SOLID #property
Hi, May I ask a question about how to write a function that gets a moving average value of any symbol regardless of what chart the indicator is placed on I have attached the test files and see below attempt I made, but it returns a value of zero. Thanks! double GetEMAValue( string symbol) {
[Deleted]
  mq4 to mq5  (1)
Hi Traders and programmers, i need help converting this indicator to mq5 , its called "_BAMSBUNG-NO REPAINT_mods_" , because i stuggle using the H12 in mt4 it has 2 dll files with it and this is the link : https://drive.google.com/drive/folders/1Ezu4ra-Xw8x2rQ7dzW7Ruk2_aa4e_Tkq?usp=share_link Thanks
  ADX code  (10)
The ADX coded in metaquotes is different then most other trading softwares... The ADX value is always much higher giving false signals about the trend... Does anybody could tell me where the problem comes from, and provide me wth instruction on modifying the indicators ... Thank you
//+------------------------------------------------------------------+ //| Second Indicator.mq5 | //| Joy D Moyo | //| joydmoyo@gmail.com |
Hi everyone I'm using crossover strategy and sendnotification() function . after crossing MAs , for 60 seconds(in every Tick in Bar[0]) it sends notification. How can I limit it to only once ? I used NewBar function but it doesn't work at all. Please help if you know
Hi there, I am new to MT5 and I have been trading Bitcoin on Binance using their Stochastic on an RSI indicator. Is There a good simple Expert Advisor I could use to replicate this on MT5 without having to write code? Cheers
I noticed that a MA and a CCI indicator gives some interesting early VISUAL signals if displayed in the same window, but the crossing lines have completely different scales and values. So I got this naive idea to merge the two and then wanted somehow adapt the different scales and use it in my EA. I
Hello im new to code , so can someone help me out to solve the errors given by the code bellow? Thanks. //+------------------------------------------------------------------+ //| CumulativeDeltaVolume.mq5 | //| Copyright 2021, Your Name Here
As title, i intend to build an indicator that all-in-one include rsi and moving average and parabolic SAR, like this below. But I know how to to include all the indicators into one file. I dont want to invoke too much files because it affect to backtesting time. Please any one give me some
Hey everyone, I am trying to build an EA that uses Detrended Price Oscillator. I am using the iCustom() function. I've read a lot of posts and the documentation as well, but it's not working and I cannot understand something. In the documentation it says: iCustom "[in] Custom indicator name. If the
Hi If an indicator uses multiple classes and functions, as one might have if writing a non-simplistic indicator, then the lack of support for array pointers makes it necessary to pass references to data arrays from class to class and function to function for every class and function that needs to
I'm working on an EA in MQL5. I have tried just about every variation of parentheses I can on these lines, and I keep getting some variation of "open parentheses expected" errors. Here's the minimalist version with only the parentheses required by if, plus one required by the logic grouping: if (bid
Hi. I am struggling on how to create a way to plot on the main chart lines showing the close prices of different timeframes in an indicator made on MQL5. Any tips? How to create an array to fill it with the close prices of different timeframes
Hi I have an indicator that processes a lot of data. It published successfully around a year to 18 months ago. Now I get Tester Takes Too Long during publish validation. The code is already highly optimised. Is there anything I can do to get it published? Thank you
how can i create multicolored in multi time like 3 clock time red ,4 clock time green
Hello, It's the 1st time i try to code in mql5 and i'm trying to calculate the total ask volume and bid volume of the previous candle. Is this value stored somewhere or i have to do a cycle for each previous candle and add each bid/ask value to a variable for every single tick of that candle? If
Hi I was wondering if anybody else has the same problem as me. When I create an EA using the Heiken_Ashi indicator in the \MQL5\Indicators\Examples folder my strategy tester freezes and says "waiting for update". If I try other EA's on the same symbol and time frame everything works fine. Also there
Hi guys. This is a question for people familiar with the Zig-Zag indicator . It's pretty old, but has its use. Multiple changes were made to the standard indicator, turning it into a custom indicator (hereby attached called "#BarsSinceLastZigZag_MOD2"): Instead of using High & Low of a bar, only
Hello everyone I designed an indicator , I put the same code for Alert and for sending notification, there is no error for Alert, but SendNotification() doen't work at all. I am not sure if this function works in indicator generally!? Can anyone help me ? Thanks if (SendNotify == true )
hi experts, I want to use 3 iMA indicators in my code and I want to set different color to them. How can I achieve this ?. This is how I start in OnInit() : thank you .. .. int OnInit () { //--- create timer EMA10Definition= iMA ( _Symbol , _Period , 9 , 0 , MODE_EMA , PRICE_CLOSE ) ;
Hello developers, Can someone explain the logic behind the 4TF HA arrow indicator, please. I know it uses 4 time frame HA, but seem like also use moving average. I have zero knowledge about programing or reading mql4 language. Thanks in advance
Hi all! SelfMAde MT4 Indicator for Auto Trend Lines. Indictor calculate the waves (impulses) and then pivot points. This indicator don't use any ZigZag algoritm. It ease for use and, I think, is very usefull.
I'm looking for a trailing stop that closes half a position, and is positioned in breakeven when the candle exceeds 30% what do you recommend? Machine translated from Italian to English by moderator
  MTF indicator  (6)
Hello, Greeting, Can you tell me how I can draw a MA indicator of a specific time frame in all higher and lower time frames, which means that for example how I can have a MA indicator of a 30-minute time frame without any problems on a 15-minute time frame and 1 hour time frame