Technical Indicators - page 62

  RSI MA And ATR  (2)
I am trying to Put together an indicator for MQL5 with RSI, Moving average and ATR combined, The Atr line must be invisible... and i have been failing so far because of my limited programming skill..Can someone give me direction.... Thank yOu in Advance
Hi guys, My custom indicator draw a lot of hline. How can I see if at pricex a hline id drawed? Tanks for all help
Hello, I have coded an EA for automatic trailing stop loss. When a trade triggers a minimum profit value based on a percentage of my balance the EA compute the new stop loss based on the ATR indicator and if the new SL > current SL then the new SL is applied. The computed SL is always greater or
  EMA  (1)
Hello i have an EMA indicator that changes color to green for BUY and red for sell so..i need help to include alerts when changing the colors...if your are willing to help you can have it for helping...it works only with 4H time frame for gold and Nasdaq 90% accurate... <Deleted>
hello, first of all thank you for read my post. I wrote custom indicator at mql4. But now i need to write that custom indicator at mql5. But there is a problem that is: in mql4 iMA(NULL,0,10,0,MODE_SMA,PRICE_CLOSE,i) this format is available but in mql5 iMA(_Symbol,_Period,10,0,MODE_SMA,PRICE_CLOSE)
I need an alert for when the second candle breaks the bollinger
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