Technical Indicators - page 61

Hi, I have 4 MT4 platform opened and when I want to install the indicator. The system install it to the MT4 that I don't want to install in it. How to force it to install in te MT4 platform that I want? Regards M.S
Hello everyone, I downloaded an indicator (see file) but it does not have a sound file, is there someone who can add me one or two sound files of type .wav? Thank you in advance. ps: I have already tried to add two sound files but it didn't work
Hi guys, sometime I need to change TF to show the indicator. It seems it does not load or laod partially. Should I preload in On init function or what? I am struggling with this issue. Any tips
Hello I currently am having an issue, I am trying to code the BB into the MACD Indicator . Any help would be greatly appreciated
Dear Forum Members, If you have Multi Time Frame (MTF) Candle Countdown Timer MT5 Indicator Share here. It means Higher Time Frame Count Down Time will be displayed in lower Time Frames also, if we choosen Higher Time Frame in Lower Period
Hey all, I have a question regarding copyright on custom indicators.  I recently built my own indicator that expands on an existing stock MT4 indicator.  Specifically, it takes the MetaTrader RVI.mq4 code and adds some calculations to find the max/min indicator level within the past 300 bars and...
Hi guys, I need to delete my created object when the Ask==price1, How I can do it? Tanks for every help
[Deleted]
Hi all, Could someone help me or point me to the right direction to mod this indicator to have option to select different timeframe and with an option to display in the main signal windows then under. The code is here: https://www.mql5.com/en/code/20281 Thank you very much
  MA Question  (2)
Hello All I was wondering if anyone knew of non-repaint MA indicator that ony shows when MA crosses above or below price (or vice versa)? Not an double MA cross indi, just a more simple one. Thanks so much. I've looked but probably in the wrong place
Hi, i was trying to load a custom indicator with icustom, not available trough the "i*" functions. int Stochastic=iCustom(_Symbol,_Period,"DSS",inpStoPeriod,inpSmtPeriod1,inpSmtPeriod2,inpSigPeriod,PRICE_WEIGHTED); The values for inpStoPeriod, inpSmtPeriod1, inpSmtPeriod2, inpSigPeriod are set over
Hi guys, Am trying to fix this code but was giving me some errors, wouldn't mind your help fixing it //+------------------------------------------------------------------+//| SBD Vix Lockdown.mq5 |//| Copyright 2020, SoftBlues
I set up the push notifications in my indicator's settings. notifications get to my mt4 phone app perfectly while running the the computer app. But when I rent a VPS and set all the details and the environment, and finally click migrate, I don't get the notifications when I close the app. I also...
Is it possible to have one indicator draw simultaneously in chart window and in separate window?
Hi all I'm calculating an EMA and the simple expression: int period;double sf;sf = 2/(period+1); ALWAYS EVALUATES TO 0. Even if I hard code the values in, like sf=2/(14+1) it still gives me 0. For the life of me I can't understand why. Please any advice? Thanks
Hello, Is there an indicator to tell me the% of the day? For example the DAX: it displays + 1.25% above ... Thank you
Hi everyone I have this array called Percentage[] that calculates the rapport between the volumes of 2 neighboring candles. How can I "print" it on the chart, below the bars? Percentage[i]=DoubleToString(100*double(Volume[i+1])/double(Volume[i]),2) I know how to DRAW_ARROW for an array and
I display data indicator_A. And some data calculate from other modual (money_C,ea-signal-indicator_B ). Want update display panel (define variable in indicator_A) << money_C ,ea-signal-indicator_B I try use extern double XX, or use iCustom(...,ea-signal-indicator_B). Don't know how to update input
  Hector deville indicators  (29   1 2 3)
Hi Fellow traders...... I am looking for any of Hectors indicators such as, Grid Indicator Average Daily range indicator Time zone indicator 3 SMA Trend filter indicator. I hope someone has these and can share or if there are indicators that are the same as these that would also be great. Thanks in
Hi As requested a Force Index Candles plus i have added in a Force Index MTF, The MTF is designed to work on Higher or equal timeframes to the timeframe currently selected, If the timeframe is set to 0 then it works the same as a NON MTF indicator. force_index_candles.ex4 force_index_mtf.ex4
My indicator works correctly (so far anyway), but I would like to check the contents of the arrays I have in a list format, so I can evaluate how I'm doing. So in that case, I would like to print out the array. Is there a way to do that? I see references to Object Text. I will be using this in an
Hi, I know MQL5 demands ChartRedraw to update GUI on a chart. However, I'm probably not using it optimally. Consider the following scenario... I have 5 indicators each which must update the properties of 100 objects each, or any one object at a time, either from a new tick, on a timer, or an
Hello, I wanted to know how the metatrader calculates these values, as circled in red. When I edit the momentum indicator, it suggests the maximum value and the minimum value. I noticed that if I edit the indicator with the graph in the current time it shows a value, if I move the graph to a few...
Hi, in these day im trying to study mql5 to pass to it i think in the next months. but several scripts are not working, including the ones that are supposed to work like this, double zigzag=iCustom("EURUSD",PERIOD_M5,"ZigZag",16,5,3,0,1); Print("zigzag: ",zigzag); it says this 2019.02.27 19:19:50...
Hi, I am coding an indicator which uses a de-tached chart. What is the chart_property to disable the toolbar on a detached chart? I don't want to have to right-click it and select "toolbar" item to disable. I need to do it programatically but I couldn't find the propertyto disable/enable the toolbar
Hello, I try to get data from custom indicator (CustomIndicator), which shows a histogram of values between -2000 and 2000. I don't have source code of CustomIndicator The code of script is as follows. As an example I used also other indicators (Stochastik and Williams). The resulting file
Hi, I have an EA installed that gives me the error that appears in the image. What does it mean? Thanks
KimIV's excellent indicator i-sessions does not allow adjustment for DST on sessions. I am trying to modify it for my needs/preferences. I am doing this in MQL5. the indicator draws colored rectangles on the chart highlighting the trading session from session opn to session close and at hieght of
Hi Is there a moving average indicator that changes color with direction similar to Hull? Thanks Gil
I have a customized indicator that I cannot enable alert function. Can anyone help me with enabling alert function? I tried for days and just can't figure out by myself, finally reaching out here for help hopefully. Thanks a bunch. Conditions to send alert to mobile or desktop: - when the alert
  iMA in MQL5 Help  (2)
Hi, I'm trying to just add two moving averages to a chart from an EA, creating them at OnInit() with iMA(). Both MAs are added visually to the strategy tester graph as expected, however the the moving averages are very different lines compared to if I add them manually to a chart for the same M30