Technical Indicators - page 88

  Strange division problem  (12   1 2)
Hi All I am coding the following, the code returns no error but doesn't seem to do the calculation.        double Top =(iClose(Symbol(),0,i)-iOpen(Symbol(),0,i));      double Bottom = (iHigh(Symbol(),0,i)-iLow(Symbol(),0,i));      WVAD[i]=Top*iVolume(Symbol(),0,i)/Bottom; I tried to debug it by...
I appreciate help with changing the code of the ATR indicator to show double its value. For example if ATR is 30 pips, I want it to show 60. Thanks! Here is the code:...
  Self-regressive Median Coefficient  (66   1 2 3 4 5 6 7)
Hi all, I am trying to build an indicator that uses the following formula and returns the expected value, so I can use the same chart as indicator_chart_window. //+------------------------------------------------------------------+//|                                                    Quantiles.mqh...
So, by accident I have found about Hull Moving Averages and I love using them.  Unfortunately, most platforms don't have native support for them, so I find myself writing my own indicators using them.  The problem I have is that I am finding an inconsistency with some of my implementations and I'm...
Hi everyone!  I have this standard open indicator and I would like the line to be always drawn to the end of its current Time Frame. How can I do that? #property indicator_chart_window#property indicator_buffers 4#property indicator_color3 RoyalBlue//----#property indicator_width3 2#property...
ASCTrend system as I know it. Besides we may use NRTR_Pilot_alert indicator for S/L but I did not experiment on it. There are several modifications of ASCTrend system: Bykov system, silver system etc
hi in mt4 terminal, i know that we can use moving average over other indicator by select apply to previous or first indicator. if i am writing my own indicator or EA, and would like to do the same, how should the code be please
I have only programmed the properties for each line, but yet somehow when I attach the indicator to the chart, I get a red and a blue line running across the chart, mimicking that of the Kijunsen and Tenkansen. How on earth is this possible? I am using the latest compiled version but somehow the...
  MTF HMA  (2)
Hi, is anyone able to make this normal HMA to a MTF indicator? I´d like to trade for example on M15 candles showing the HMA in 1H. Any help is highly appreciated.
As shown in the red box, the 0th value is the current value. I only want to show values for full D1 bars, not the currently filling bar. As you can see, I am currently setting HistoBuffer[0] = 0., which causes all the lines to converge to 0. One thought is to simply set the value of each to the 1st...
Using  #property indicator_type1 DRAW_COLOR_ARROW the arrow symbol (https://www.mql5.com/en/docs/constants/objectconstants/wingdings) is specified via PlotIndexSetInteger(0,PLOT_ARROW,arrow_code); //arrow_code != 159 However, this works only with a single plot. Adding a second DRAW_COLOR_ARROW plot...
I needed to advise how to adjust the indicator to show just one day in the past and not all, some idea, thank you
My account on the app shows that there is money in the account be every time I try to execute an order it says not enough money. In addition can anyone get their TradersWay Live account to work on the terminal?  
Hi Everyone, I have a copy of MT4 sat on a windows server 2012 VPS. After an windows update today an indicator TMA.mq4 won't display, its either grey out in the navigator menu or it just won't load but is visible under indicators on the chart. Can anyone help or provide a work around. Jay
I am building an EA based on my trading strategy . It should work at any entry point, but will be more profitable if it selects a point in the market (for it's initial purchase), to buy low. What is a good indicator to use that will allow me to buy low and to have good bottom resistance? Thanks
The indicator is the FL11 indicator. Can anyone help me with this?
HOw does one test a demo version of an indictor or utiity product in the strategy tester?
My VWAP indicator stopped to work recently, after an update. I noticed that the volume_tick array returns 1 in the last iteration. In the next iteration the before values are right. I coded the follow indicator to show the problem: #property copyright "Copyright 2018, MetaQuotes Software Corp...
It may seem like a silly question but I haven't actually seen any explanation of this anywhere - what is the difference between an indicator plot and an indicator buffer in MQL5?
Welcome, please someone with ability to reprogram this Multitime Frame Rsi indicator to show real time value changes (within a bar) not only after closed bar. I use it to show rsi H1 value on 1D chart which is usefull all other indi i found does it in a different way. truly Thanks for help
Hello, I want to detect the relative minute candle number within a superior period. For example: Using the 1M timeframe, and the superior timeframe of 5 minutes. The first minute candle will be labelled 0, the second 1, the third 2, the forth 3, and the final candle 4. No matter what period or...
Hi my friends, I'm new to programming indicators, and I'm having some problems, hope you can help me. I'm trying to do a simple indicator of squeeze in bollinger bands. The indicator will go blue when the bollinger is outside keltner channel and red when its inside (all or just one line). The...
Hi, I want to place a moving average on heiken ashi chart in MT5. Couldn't figure how to do that. Help will be appreciated.
i learn to code mql5 and trying to create indicator. i know there is tons indi on this web that i can use. But i just want to learn how to code it. Here i try to draw histogram and line based on average of 3 high - low value of 3 candles. But i got this weird look on my script. Could some body...
[Deleted]
Someone please help. datetime time=ObjectGet("name",OBJPROP_TIME2); gives a warning - possible loss of data due to type conversion. Why is it so? Thanks in advance 
Hello everyone! Please bear with me, I searched everywhere and tried to fix this for many days now. Still no luck. When adding handles to other indicators from within custom indicator by calling either iMA(), iCustom or Trend.mqh class, the indicator often shows junk arrows when changing...
Hello. Can someone give me guidance ? I would like to test out some HTF indicators that come with various other indicators but , it comes up blank when I add to the chart. It's the same for all HTF indicators I try to use , not just one. Please let me know. thanks...
  Vertical line.  (66   1 2 3 4 5 6 7)
Hello! Started to make an indicator that will draw a line between two pips in time and price, the way the line is drawn is like this: for ( int w=limit;w<rates_total;w++) SupportBuffer[w]=low[s1]+speeds*(w-s1); Everything is fine, but sometimes the time points can be in one candle, you get a
Fractal Adaptive Moving Average (FRAMA) Fractal Adaptive Moving Average Technical Indicator (FRAMA) was developed by John Ehlers. Ehler's Fractal Adaptive Moving Average (FRAMA) | Indicators https://www.metatrader5.com/en/terminal/help/indicators/trend_indicators/fama Optimal parametrs to MT5 EA ?
Hi everybody, let us have timeframe M1 and the following simple indicator: #property indicator_buffers 1 double What_a_waste[]; int OnInit () { SetIndexBuffer ( 0 , What_a_waste); return 0 ; } int OnCalculate ( const int rates_total, const int prev_calculated