Technical Indicators - page 90

  ATR  (1)
Does anyone know if the attached indicator is available in MT5?
Hi traders,i am new in trading so no idea about market and you guys are expert in it,anyone knows non repaint indicator with buy and sell signal for 1m or 5m chart which is gives accurate signal,i tried 2-3 signal indicator but those are all repainted,if anyone knows then please do let me know,i'll...
Hi, This is very useful indicator but I don't do anything with it without an alert. Please, can someone add alert for this indicator? Thanks
I have code custom indicator with messagebox, I dont know why it is not executed or poping up, Please help Im new with this, Here is my code //+------------------------------------------------------------------+ //|                                                       Monero.mq4 | //|...
Please any coder could make vdi.mq4 work on mt5 or Code a similar indicator for mt5? Thanks 
Hi Guys, Is there any packed formula to calculates the three pivots on D1, W1 and M1 ? Can you provide me the formula plz ? Thanks to support ! Dario
[Deleted]
Is it possible to open in a visual backtest charts from different timeframes? And put then custom indicators to the charts? With MT5?
Is it possible to make indicator to show squeeze between two ema's of two different timeframes? any idea? Thanks
Hi All I'm hoping someone might be able to help me with this question as so far I've not had a very good experience on this forum so here goes. I have a couple of arrays that build up support and resistance levels over the lookback period. It seems that some of these levels have the same price level...
  Mt4 and memory  (6)
Hi, I created a complicated indicator. It contains a structure with a 3 variables, and 2 three-dimensional arrays of these structures. struct COORD{   double Price_;   double Close_;   datetime Time_;}; In this buffer I got:  First dim - timeframe (5,15,60,240) Second dim - Depth parametr for zigzag...
Hi, I´m having a problem calculation range bars. What I want is that it calculates a certain number of bars and wait for the next same number of bars to recalculate. Everytime I´m trying, when a new bar come in it reads the bars all over again and stays dinamically instead of fixed. For exemple,...
Hi all, I coded a custom indicator who needs tick data to be rendered, so it starts drawing from the current bar onwards. The weird thing is that from time to time the values of the indicator for the previous rendered bars disappear, like if the indicator was restarted. Any hints?
Can someone make this alarm immediately when an arrow appears? Thanks!
Is there anyone could code MACD and Stochastic indicator and provide a signal ? at certain point...let me know how much is it cost
Hello, Already read Detailed Explanation of iCustom  but still can't make iCustom working. As can see on above picture, ZigZagAdvanced_mj_v1.13 indicator has 66 extern variables. When include all 66 extern variables in iCustom: iCustom(NULL,0,"ZigZagAdvanced_mj_v1.13","== set a unique prefix for...
  mql4 to mql5 pls help  (11   1 2)
Can someone help me and convert my indicator from mql4 to mql5.I want add socket comunication with my program in C# but to this i need to convert to mql5. Because sockets dont work in mql4 :/ Would anyone be so nice?
affltr84: Hi, Can someone fix that indicator? It's sometimes late. It gives the signal after 3 candles. 1 candle is ok. Thanks! It doesn't (give a signal after 3 candles) - nothing regarding that to be changed in it since it works on current bar too. What needs to be changed is that it repaints in...
Does anyone know how to change this indy so that it draws in the background:  #property indicator_chart_window#property indicator_buffers 1#property indicator_plots   1#property indicator_label1  "Daily open line"#property indicator_type1   DRAW_ARROW#property indicator_style1  STYLE_DOT#property...
  Help speeding up back test  (14   1 2)
Got the EA built now but its slow
Dear all the attached wedge indicator from code base (it comes also with the second attached indicator) isn't working only on monthly charts.any help?
Say we have a few custom indicators in the bot/EA: #resource "\\Indicators\\indi1.ex4" #resource "\\Indicators\\indi2.ex4" #resource "\\Indicators\\indi3.ex4" (has a resource to indi4.ex4) i.e. 2 level nested #resource "\\Indicators\\indi4.ex4" All these custom indicators work by themselves...
Hello, I have found an screenshot image of a "TDI RSI" indicator! Anyone knows where I can get it?
Greetings fellows, I was wondering if anyone knows if there is an indicator that makes moving average lines visable on lower timeframes? For example I want to set MA 20 on h4, but I want that line to be visable on for example m30
Good Day, I am a beginner in coding Indicators. I am trying to add a Daily Moving average line onto a 1 hour chart. so the code I am using is: int limit = rates_total - prev_calculated; ArraySetAsSeries(DailyMA, true); if(prev_calculated < 1) { ArrayInitialize(DailyMA, 0); } else
Hello, I am new to all this and there are millions of indicators and search feature is limited. What I am looking for is an indicator that draws lines from candle to candle like the attached image? Tried ZigZag indicators but that is not what I want. What do I have to search for?
hello .... i am looking for this indicator  AA_MTF_RSIOMA_Line V1.02 please can anyone share it , with thanks 
Hallo, i would like to know if anybody can help me to add parabolic sar on StepMa. I saw that exist something similar about parabolic sar on Moving Average, and i would like to know if is possibly to create it also with the StepMa. Can you help me? Thank you
You know that to show price on a Fib level, one adds "%$" to the line in the level...? Well, I'd really like to see that Dollar price as ZAR... it must be possible somehow? Even maybe an arithmetical way... Like, for instance, say the dollar/ZAR exchange rate is R14, is there an arithmetical code I...
Its my first indicator. And I want to make alerts. But idk how to make only one alert after closing candel. Now they appear to me throughout the entire period of the candle construction. Can anyone help me? I will be grateful. My code - #property copyright "Moje"#property link      "https://www...
I'm trying to find the most code-efficient way to do the MQL5 version of calling iATR(NULL,1440,20,0) from lower time-frames for using in stop loss calculations etc.    //MQL4 code = iATR(NULL,1440,20,0);   //Calculate Daily ATR--------      double...