Technical Indicators - page 74

Hi all I'm relatively new to trading so sorry if it might sound silly. I wish to find an indicator that scans moving averages NOT for crossovers, but for aligned set of moving averages; preferably one which can scan also the 1min and 5min timeframe. Also the moving averages shouldn't be fixed
Good Day Can anyone please provide me with a good reversal Indicator. A non repainting one please
I hope a lot of people have already understood the MT5 programming Unfortunately not everyone can grasp the wisdom of programming. Since the time of MT4 there were good indicators created. I think someone would like to transfer them to the MT5 platform Hopefully, they will find help in this respect
Good evening someone can show me an indicator pivot point supports and resistances for mt5 Thank you
I would like some help trying to find out how many weeks are profitable after a backtestis made, i usually do 20 weeks backtest, I tried to build an array of profits and dates like OnTester documentation article, after that I tried split these results on another week array with no luck, any
what indicators do like the most for stock trading
Is there anyway I can add an indicator over the price chart NOT below the price chart
Hello y'all, i have a custom indicator wich i indexed some data to detect and draw an arrow, now i want a EA to detect said arrow and place orders... { IndicatorBuffers(8); SetIndexBuffer(0,line1); //SetIndexLabel(0,"putalinea"); SetIndexBuffer(1,line2); //SetIndexLabel(1,"putalineb");
Hi there, Anyone can help to combine RSI and MFI indicator together? I am trying to create an indicator in separate windows which shows (RSI+MFI)/2. I tried to combine these 2 indicator with no luck. I appreciate your help
Someone has this indicator and it does not repaint
hello what is the name of this indicator on the chart up top? and if some one has it can i have it or where can i get it
Hi im developing some money management indicator, im new to this programming language but as Webdeveloper i should be fine to get this indicator rdy. But i need to fetch some global values if possibile. I wasnt able to find a list of predefined values, if someone could share me a link to everything
re installed MT4 unable to install the Market Profile Multi Sessions Technical Indicator (already purchased by myself and activated once only on the same pc) Market Place on my MT4 is empty (nothing available or displayed as previously) When prompted to "Install on the terminal" I enter my details
hi guys i m looking for this indicator can be after moving avarage cross creat horizontal line right at cross if we can have mtf cross together very cool opportunity for trade thanks
Hello, not sure why this is happening when I use the iATR function, the printed value for each ATR is different from the ATR Chart, see attached screenshot, I can't see why this would be happening, any help would be greatly appreciated void OnTick(){ double atr = iATR(NULL, 0, 14, 0);
Hi guys, I need to get ATR value of Daily period at any timeframe but I get 4806 error code. I don't know how to tackle it. At 1Day Period I can get ATR values, but I need to get 1Day ATR values at any timeframe. when I change Timeframe, I get BarsCalculated() returned -1, error code 4806
  Moving average  (2)
I am looking for a color changing multi time frame moving average . If you have one or can make one please let me know or post the link/file thanks
Good Day Can anyone be kind enough to provide me with a Zig Zag that does not repaint Or a Swing High Swing Low Non repainting that can be used for high and low entry point for long trades
  Pip counter  (2)
Has anyone seen a pip counter like this or can anyone code one like this for me
Hello everyone I have a problem to solve How to display the technical indicator values of two time zones on a chart? The following picture is an example Current chart is H1 There are two KD technical indicators opened below Hope the second KD technical indicator is to show the value of the H4 time
I’m trying to code an indicator that displays an arrow if the close of candle [i] is > the close of a ‘specified’ number of previous candles (ie if it closes above the previous number of specified candles) but I can’t find my way out of this. Kindly help community. int OnInit() {//--- indicator
Hi, I am looking for an indicator where one Moving Avarage is divided by another. For example 20SMA divided by 10EMA, or similar. Does anybody know if such a thing already exists? Thanks, h4rry
Hi, I have the following questions on user defined function: Question 1. Can I put a if statement within the function as I want to combine two functions into one ? Question 2. Can I use the same variable (a and b) in two different functions, does it confuse the program . In the main program we have
while(pos>=0) { // ******** SLmin Function ********** double Func_SLmin (iCxu) { j=0; SLmin=3000; while(iLow(Symbol(),PERIOD_H1,j)<iCxu) { if (iLow(Symbol(),PERIOD_H1,j)<SLmin ) SLmin=iLow(Symbol(),PERIOD_H1,j); //Print (Symbol()+"SLmin = "+SLmin);
I have a company
Hi All I am trying to create a ROC indicator, but for some reason, it doesn't get displayed, the code is below double ROC, CurrentClose, PrevClose;double RateOfChange[]; CurrentClose = iClose(Symbol(), 0, i); PrevClose = iClose(Symbol(), 0, i + n_Period); ROC = CurrentClose -
Hi, I think the picture says it all. Its the standard Bollinger, inserted from the menu, and it was like that after some hours. Totally impossible ... actually. SMA goes up but price goes down? No way. But it confirms some other problems that I have after some hours when reading bar data and do own
Hello guys, In attachment you can see a screen with some indicator. Have you ever seen it? If yes so where can i find it and what is the name of it ? B.R Jurina
  File Function  (2)
handle=FileOpen("File1.csv",FILE_CSV|FILE_READ|FILE_WRITE,','); FileSeek(handle,0,SEEK_END); FileWrite(handle,Symbol(),TimeToStr(CurTime(),TIME_DATE|TIME_SECONDS),Profit); FileClose(handle); handle=FileOpen("File1.csv",FILE_CSV|FILE_READ|FILE_WRITE,','); FileSeek(handle,0,SEEK_END);
Hello I want to make an indicator based on two SMA, period 5 and 20, that shows an alert when all of these conditions are met: -MA 5 has to cross over MA 20. -Candle has to close AND cross over MA 5. -Both MAs has to point to direction of closed candle (only enough, not straight up or straight down