Technical Indicators - page 91

Hello everyone I'm trying to put a password on a indicator, can anyone explain to me what base code to use and how to do it? Can you write the example of the base code please?
Hello everyone! How can I set a specific server for the indicator? What is the code to add in the compiler?
Hi: I am looking for some help: I have the stochastic with RSI indicator but I don´t know program. I want if some body can help me to program this indicator but with Alert. I apreciatte all your help
Hello Everyone, If in mt4, to get the value of BearsPower and BullsPower indicator is like:  - double val=iBearsPower(Pair01,PERIOD_H1,13,PRICE_CLOSE,0); - double val=iBullsPower(Pair01,PERIOD_H1,13,PRICE_CLOSE,0); And at the same EA I need to get the value of that indicator for 4 currency pairs at...
Why is it that when my Expert Advisor tries to calculate: iWPR(S,PERIOD_M1,3000,0); iStdDev(S,PERIOD_M1,3000,0,MODE_SMA,PRICE_WEIGHTED,0); It gives zero? Periods below 3000 seem to be fine. Is it possible to extend the period above 3000
Hi. From your experience. What tools are the most useful since developed by John Ehlers? Regards.
Obviously length and offset can me changed, but I was thinking about changing the curve "on-the-go". Is that even possible? Why? When a fast trend reaches its peak, linear regression curve will cut it nicely, but if an opposite trend goes fast too (and right after previous peak), linear curve will...
Guys, what is the best indicator showing trend? I tried many and either they are too delayed or too vulnerable to pullbacks. I've have best experience building my own trendiness using - ADX 15x higher timeframe - CCI 15x higher timeframe I'm working with 1m timeframe. A trick which also works great...
Hi there guys, Does anyone have this indicator to share? Where you can choose the type of MAs? I wanted one with VWMA (volume weighted moving average) crossing over SMA. Something similar to the indicator attached to this post. thanks
Hello, I'm in the process of writing an indicator with Moving Averages. The goal should be that the indicator will give an alert as soon as the wick of a closed candle touches a moving average. Roughly speaking, it should give a signal as soon as a retest has been done on a Moving Average candle by
Hi. I am creating an indicator called Squeeze that uses the Bollinger Band and Keltner Channel. The Keltner Channel indicator is one that I got from the internet (for now), since it's not included in MQL5. https://gist.github.com/Industrial/8f98a5e360132a6faba38e02a137f6c0 I have several questions:...
  Gann Grid & Fan  (3)
I've been trying to set up my Gann Grid and Fan for over a year now but I can not. I read articles on this forum but still without result. Someone who wants to help me with this? How many pips per bar? Set date? etc..
Hello, is it possible to define (return) the price level when (& where) two MA's cross (which is not the current price !) ? if so, how or where can I find information (code) ?
[Deleted]
Hello, I have the traditionnal MACD indicator however, it does not want to scale properly. It scales the signal and MACD but not the histogram. So what happens is that the histogram will at times not be scalled properly in the window. But the signal line with MACD line is always scaled. As an...
i'v modified custom simple moving average code, and try to display the average of open and close price.. but only the openbuffer displayed, and the closebuffer is always set to 0 value. please help me to fix it.. thanks alot..
[Deleted]
Hi How would you find a bar by a certain time for today Found this in the documentation, datetime date1 = D'2016.09.02 23:55'; But how do you use current day? Thanks for any help or pointers where or what I need to look at
Hi! I want to understand both of those functions and will layout my explanation on how I use them. Any experienced programmer feel free to correct my thoughts.   code....   // i is the current bar  double highest = iHighest(NULL,0,MODE_HIGH,8,i - 16/ 2); Symbol, timeframe and type is easy to...
  Time Filter  (5)
Please anyone help me about alert time  would be (Alert < 30 seconds), I used to trade Option in 1 minute expiration. Thanks! The code attached below:
Hey guys what's the best settings for stochastic on daily, looking to get less false signals and was looking to use it as exit indicator
Hi is there anyone out there that can possibly code an indicator for a specific candle stick pattern i use. just a simple alert and arrow would be great. pattern for a bullish signal would be bull bar followed by two bear bars that come to the base of the bull (or less) followed by a bull bar equal...
Hey guys, I am looking for a good exit indicator to add in my trading strategy . Really appreciate it if you guy could share your favorite indicator for exiting trades
Hi all, I happened to see an indicator here: https://www.best-metatrader-indicators.com/dss-bressert-colored/. The source code is as below: //+------------------------------------------------------------------+ //| Robby DSS Bressert Colored.mq4 | //| Jaanus Jantson | //| http://fx.jantson.ee;
Hi Folks! In my endless search for strange and odd things, I am never comfortable about periods and bars. So, I need help with the following code. The basic stuff is, if it completes a full single wave phase, where the compared waves are (high+low)/2 and (open+close)/2, the color of the indicator...
  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