Technical Indicators - page 5

Good morning In the doc, it is not specifically said that oncalculate is asynchronous. It is said that the event is launched at each tick Am I correct in thinking that the instructions in oncalculate are synchronous and each tick launches a new instance of oncalculate? Instances of Oncalculate
Good evening. I am writing an indicator which plots some levels, where each level is made of rectangles plotted for each bar. I have noticed that, in some cases, filled rectangles are not plotted on the chart, while if OBJPROP_FILL is set to false, it is plotted. (See attached files for screenshots
Hello guys, I want to know if there is a method on MT5 to force indicator refresh/reload without re-initailize them one by one. I explain better: in MT4 if I copy a different version of an indicator in the Indicators\ folder, then on my platform, in Navigator panel I right click and do "Refresh" all
Hi Guy's Could anyone give my a detailed explanation of the indicator attached ? I can not remember it and can not find it nowhere Thanks, Boris
Hi all. I 'm going to try DRAW_COLOR_CANDLES in my indicator. I've written following which works correctly in coloring Engulf candles: #property copyright "Copyright 2021, MetaQuotes Ltd." #property link "https://www.mql5.com" #property version "1.00" #property indicator_chart_window
I have and issue with two MT5 Indicator, both has green when buying and red when selling. I go properties then colors and this where my issue is one has three colors (gray, blue, and red) the other indicator has two colors (blue and red). I go to change the colors and the only option is the first
Is the basic use of "Technical Indicator Functions" in MQL MT5 scripts different than in MQL MT4 ? Let it be iMA() for example
Hey guys please do you have some simple script with nice big arrows which can be seen for showing me historical data trades on chart and also pointing my new trades with the same big arrows? Those in MT5 are so damn small. Thank you
Everyone Hello Here it is my question to you: How to modify the Fractal indicator code (I mean the conventional Bill Williams Fractals ) in order to it omits the 2nd fractal of 2 consecutive identical fractals. Task: Omit 2nd fractal if 2 consecutive identical fractals is calculated. I appreciate
i have attached the indicator below and i want to put value in decimial but i cannot able to put value less the 1 ,so please help me to do change in my code to get value in decimial . //--- input parameters input int InpAmplitude = 1 ; // Amplitude input group
I would like to hide all indicators data on the chart after the date of a vertical line drawn (named "RANGE_END"). For example in the following diagrams, left chart is before the vertical line is drawn, right chart is when the vertical line is added, I would like to hide all the data after the line
#property strict #property indicator_chart_window // Input parameters input int RSI_Period = 14 ; input int Stoch_K_Period = 5 ; input int Stoch_D_Period = 3 ; input int Stoch_Slowing = 3 ; // Global variables double rsiBuffer[]; double stochBuffer[];
Has any other person noticed that, after the MT5 version 5.00 Build 4150 was released, apparently, all my market technical downloaded indicators stopped working. No longer clickable nor could be attached to the chart anymore. Why is this happening? Why is mql5 is no longer trustworthy and reliable
why this is working for mt5 on mac↓ ObjectsDeleteAll ( ChartID (), IndiName); but this does not work↓ ObjectsDeleteAll ( ChartID (), IndiName, - 1 , - 1 ); IndiName is a prefix for all objects in my indicator
I've run accross this FFT cycle indicator in the past couple of weeks. It is very interesting to say the least. I would like to know if anybody else has any experience with this type of cycle analysis. I've know of Hurst, Clyde Lee, and Brian Millard. Brian Millards' work is among the best I've...
Hello to all How can I change the style of the cloud in Ichimoku to point fill? As in the Metatrader indicator? Thank you very much with respect Like this: //--- indicator settings #property indicator_chart_window #property indicator_buffers 5 #property indicator_plots 4 #property indicator_type1
  Signal_Bars_v7  (340   1 2 3 4 5 ... 33 34)
Signal Bars has come of age so i thought that i would start a new thread with the latest version This version Signal Bars v7 has some new features, the User can select which Timeframes they want displayed and the indicator can now be placed into any indicator window to help free up chart space. One...
hi guys, How Can I Use ▲ , ▼ Instead Of Windings characters For an Indicator? PlotIndexSetInteger ( 0 , PLOT_ARROW , 158 ); PlotIndexSetInteger ( 1 , PLOT_ARROW , 158 ); I Want to Use ▲ and ▼. Is that possible? Thanks
Hi Everyone! The indicator is showing arrows, but i have commented the ( buffer[i]=value; ) line. i dont know what is setting the values of buffer and why arrows are showing on the chart. Thanks! REX (Hassan Bilal)
Hello, I build an indicator that display on seperate window, but the value not display at indicator short name. Anyone know how to set or show value at there? My code here: #property indicator_separate_window #property indicator_buffers 2 #property indicator_plots 2 ... //--- plot up #property
Hello,I have issues in MetaTrader 5 with some indicators that use certain shapes. The symbols, such as circles and squares, appear as squares and it's quite annoying. It's not a code or software issue since it displays correctly on another computer. Computer settings are normal. I'm not sure where
  wininet.dll  (4)
Hi What should I do to wininet.dll do not "turn off" for a MT5 indicator when the MT5 close and everytime is necessay to "turn it on" ? Whwre I get this dll and most import where I place it on the program
Considering inability to use indicators from market because of new update, I checked in-build standard MACD indicator. And I remembered why I decided to look for new MACD on market in the first place. In-build MACD is oversimplified, to say the least. It feels like it was added just for the check
I'm working on a custom indicator and want the arrow to be placed on the candle where the conditions are met, upon the close. I believe that this should be candle 1, however, the arrow is being placed one candle beyond the one where the conditions are met. Any thoughts on how to adjust my code so
I am writing a custom indicator and trying to print Daily time but its giving NULL (-1) int shift = iBarShift ( _Symbol , PERIOD_D1 ,time[i], false ); Print (time[i], " = " , iTime ( _Symbol , PERIOD_D1 , shift));
  coding  (3)
How can i learn how to code indicators
Hi all, I am trying to create and indicator whereby I use the input box to manually type a new level in each day. I have in my code... input int Level = 1.2300; It wont accept the decimal point.. How can I use this to set the buffer I did try several things using 12300/10000 but not good.. Any help
is this normal for custom indicators to get automatically removed from the previous timeframe each time I switch to another timeframe
Hi, I want to modify the Donchian indicator to add the posibility to instead of working with lowest lows and higher highs uses with lowest close/open and higher close/open. How can I do that
I've written this simple custom indicator , when I change Timeframe, the terminal log shows it loaded successfully, then immediately removed. while the changes on the current bar (most recent bar in chart) still updates the indicator. why it's so ? #property indicator_separate_window #property