Technical Indicators - page 57

Hi, I was advised to update my indicator. However, I can't find the update tab. Does anyone know how to do this? Appreciate all responses. thanks, attila
Greetings all. I'm just learning to code and have few questions. Can someone tell me please how to do this thing; 1- How to prevent my custom indicator being duplicated? If it's already on the chart and I will drop it on to the chart again, I want it to detect the first one and abort launching the
Hi everyone, I'm still fairly new to MQL5 but feel I'm making good progress. I've now come to the next level and am looking for a way to retrieve the last bar's RSI at close. Anyone there who can give me a direction? ;-) Thanks a lot in advance and happy trading
I need the High for PastBars BarPos is always correct giving me the position of the highest high during the last PastBars but the Highest Bar figure BarHigh2 is always wrong. Can some one explain why CopyHigh is not working for me please? int PastBars = 10; // Number of past bars to find highest
Hello, I am trying to code MTF ADXW indicator. Below is my code which works fine and draws all lines correctly(See screenshot below) but after some time indicator buffers values became 0. Also indicator is very slow. I hope somebody can give me suggestions and tell me whats wrong with my code
but actually it can trade on those timeframes how to fix this
Hi, I am a newbie here. Situation: I am trying to code an Ichimoku based custom indicator to provide a buy or sell signal based on: Tenkan-Kijun crossover, Chikou (26 periods back) crossover with price (26 periods back). If Chikou is not clearly above the high or below the low of the respective...
  Ichimoku Kinko Hyo indicator  (22   1 2 3)
hello traders, i want to know Ichimoku Kink Hyo indicator. i already read this indicator article in metaquotes website but i could not understood so please explain me how to use this indicator in daily charts. regards, k.n.v.santosh
I found this candlestick strength indicator ( https://www.mql5.com/ru/code/24254 ). It has several errors (please see screenshots below), so I left a comment for the author but haven't heard from him. How can I get this errors resolved
  Ichimoku indicator  (17   1 2)
hello I have an idea and maybe some programmer is intresting to do it. The Ichimoku indicator is a very complex trading system and a art of trading and specially for manually trading. but if you understand the system its also possible to take some parts out to confirm a other system. So the idea is...
Please, I want to synchronise arrows between two charts. Am copying the details from one chart and creating the object on the other chart. The problem is OBJ_ARROW_UP, OBJ_ARROW_DOWN //--- and the likes of the above, with the exception of OBJ_ARROW is created, but does not change with a change of
Hi everyone, so I want to convert the mql4 code of an indicator to mql5 code The indicator name is Oscar, it's basically a two lines cross indicator, first line is an oscillator and the second line is the moving average of the oscillator. Here is how the indicator is calculated according to the
Hello, I am very new here and want to practice a bit in coding. I decided to write a moving average. Writing from scratch is hard so I pull up an ema script people writes. There is this line inpPrice = PRICE_CLOSE _ema.calculate() getPrice(inpPrice,open,high,low,close,i) I would like to know what
I've been looking for an indicator I had a while ago on MT4 that shows multiple timeframe stochastic. I need a MT5 version of it
greeting everyone I need help to build a simple indicator .. I need to use it on Binary robot , I've to make it Building Platforms like EAbuilder .. but there's so many things -as bignner- can't make it alone I need an indicator that show a RED arrow above the last Closed RED candle After X second
I've got some code that only refeshes when I compile in the MetaEditor. #property strict #property indicator_separate_window #property indicator_buffers 1 //---- plot TickVolume #property indicator_label1 "Percent of Control" #property indicator_type1 DRAW_HISTOGRAM #property indicator_color1
I did that 3 scripts and that's working! But my CPU usage is going to 99%! Even i remove the EA! This scripts are working ontick! I will show here one! void OnTick () { int h= FileOpen ( "ind/bol.csv" , FILE_WRITE | FILE_CSV , ";" ); double high[]; double mid[]; double low[];
i have mt4 indicator. how to convert it to use on mt5
Hey everyone. Could someone direct me to the function or snipet that draws past buffer signals when the indicator is first loaded onto a chart? Think how Bill Williams fractals paint all previous fractals quite a ways back. I have looked at other indicator code that does paint old signals but I
Hi everyone, I wrote an indicator to display arrows & alert me whenever the closed candlestick is above 50, 100 and 150 EMA lines. That worked and I'm happy with the code. But there's an issue occurred: https://i.ibb.co/5YfBRw8/090.jpg When I run the indicator, it draw many extra arrows as soon as
Hi Experts, I have traded for 4 years, but I'm still a novice at programming. I started learning how to write code a couple of days ago so that I can create my indicator for trading purposes. You can see the indicator (look at the image) which I am trying to create. Utilities of the indicator: At a
Please, this MT5 indicator contains errors. Can someone please fix it for me. I will be very glad
#property indicator_chart_window //--- input parameters input int Depth = 12; input int Deviation = 5; input int Backstep = 3; //----------- int OnCalculate(const int rates_total, const int prev_calculated, const datetime &time[], const double &open[]
Hi I am looking for an indicator in mql5 that plots colored rectangles for the 4 main forex sessions. Something like https://www.mql5.com/en/code/10513 (4 sessions by Andrew) but for mt5 instead of mt4, hopefully well written in OOP. Any suggestions? Thanks
I have been scouring the web looking for a basic (free) RSI indicator that can alert on oversold/overbought crossing for MT5, but I cannot seem to find one. Has anyone found anything for this? Thanks
I've developed an Expert Advisor and calling a custom indicator using the iCustom function. The indicator name is: (ROC) https://www.mql5.com/en/code/46 When I start the Tester it just keep repeating itself and I don't know why. Here where I call it: double Roc() { double RocArray[]; int RocDef
Hi, I want predict the below Trent line as soon as possible, meanwhile if there is any option to fix, if its loss its support
Hello guys Is Awesome Oscillator repainting
Dear experienced coders, I'm new in MQL and I need some guidance. And sorry for my English it's not my language. The thing is I'm making a line of on-chart buttons that will launch specific indicators. So far so good the button loads an indicator 'X' when pressed and deletes it when the button is
Hi, is there a simple way to show a text following this condition on a chart: condition 1 (ema crossing for example) : green text or condition 2 : red text else : black text Regards Mathieu