Technical Indicators - page 11

Hi guys. Some brokers will limit the number of orders that a trader can open at the same time. So, is there an indicator that shows the maximum number of orders a trader can open at the same time? Thank you
Hello MQL5 members, I hope you are well. I have a very specific question When working with the functions of technical indicators such as iMA or iCCI, and some others, we can choose, according to the documentation, between APPLIED_PRICE or the handle of another indicator. Working with the
Hi All, First time reaching out on the forum. I normally try fixing issues by using the documentation and other online references but this has proven fruitless this time around. I have created a custom indicator based on a MA and some calculations (Code below). When I apply it to the screen, it
Why does the OBJECT_CREATE function normally to the LOW price, but not to the HIGH price? See the distance
Hi, I was trying to convert this indicator from TradingView to MQL5 but it badly prints the candles, as in the attached photo, and i don't understand where is the problem. From the TradingView indicator i want to convert only the Heiken Ashi code, not RSI and Stoch lines. Here there is the code
Hi, i have the following system: An indicator working on M15 period acting only when a new bar is created, using a system similar to the one below bool isNewBar() { static datetime PeriodLastBarOpenTime; datetime CurrentBarOpenTime = iTime ( Symbol (), Period (), 0 ); if
Since I am not satisfied with the format MT5 exports the trade history to excel, I wanted to create my own with my custom format. Now, while the following function works as expected, getting the trades for the current day, it seems to be retrieving both orders and deals, but I would be interested
Is there any indicator that records the first movement of the candle? Example: After the opening of the 5 min candle, if the movement is upward, this information will be recorded and in the same way, if the movement is downward. I have an operation based on this first movement, I have to be
Hey guys, there is a bug in this tool I created which is causing the file it creates to be overwritten, without an apparent reason. The utility is supposed to grab the new data from a site, then it updates the existing historical file it creates, so you have continuous historical data. For some
Greetings, MT5 enthusiasts. First forum post, so please be gentle with me. 🙂 In https://www.mql5.com/en/docs/runtime/running , there's a list of situations when an indicator gets loaded or unloaded. I suggest adding the case when a custom indicator is updated from the Market. Here's the scenario
Hi! I'm facing a problem here that is getting me crazy! I have an INDICATOR that works on the last close price (like Close[1]), and everything is functioning perfectly, either with TESTER or using real-time charts. I have no problem at all changing Timeframe and so forth. The problem: if I close the
Can you share the MACD with 2 moving averages cross for meta trader 5
  Help mql coding  (1)
Hi I been trying to make horizontal line indicator that draw in spesific candle in the olhc but the line need to be shorter when i make it ...it all the way longer so my chart full of horizontal line
I cannot change the color of the ZigZag indicator
Who has ever this problem? Indicator buffer is over value at sometime. Getting strange values even though we didn't set that value. I don't know where it gets the value from
"[MT5 bug]" removed from the title by moderator Download indicator file and include file. Then try run on your MT5. Then remove it from chart. You will see log still run in Expert tab even close chart. Way to stop process is only close terminal. I want to tell this to the Metaquotes dev for solve
"[MQL5 bug]" removed from topic title by moderator. Indicator call function like iMA(), iRSI(), iCustom() .... etc. It's strict must call only in OnInit() ? If call in other event like OnCalculate(), Buffer value will be distorted. (From code the red line buffer should be equal as moving average
I wrote an object label for my indicator signals. It looks great! BUT when my friend attaches it on their PC, the labels get mumbled up. <see pictures attached> Is there any explanation for this please. If so, how can I solve it? Thank you
Hello I made an indicator that exports data from mt5 to txt. The problem occurs when the Internet connection is interrupted. Message appears -> "Error defining data start, please try again later" So I think I did something wrong with theCopyTime() function I have one additional question. I am a
HI, im looking for some help.. im not sure if its possible but though to ask the question... im trying to find a way to get Senkou Span A highest and second highest values aswel as the times of those price level.in order to code into an indicator
  Get Indicator.  (8)
hello, In MT5 , the complete Basic Moving Average Indicator cannot be found in the Indicator Examples. Any reason for that
I am looking for the MACD Impulse MQ5 can anyone point me in the right direction
hi everyone, i can't code ichimoku mt5. Help me to do
[Deleted]
  Candle in series  (2)
Hello, I need some help in code line 83 for a logic which will continue the consecutive candles until a bull candle's low is broken by a wick. #property copyright "W.I.K, Copyright 2023" #property link "https://www.mql5.com" #property version "1.00" #property indicator_chart_window #property
  Indicator frame.  (3)
Like the TDI, is there a way of adding a combined indicator to the lower window in a single frame as an ea. input int InpMAPeriod = 5 ; input int InpRSIPeriod = 14 ; RSIHandle, MaHandle, EnvHandle , RSIBuffer[], MaBuffer[] ; ArraySetAsSeries (MA, true );
how does the rsi indicator appear in the lower window of ea ? input int InpPeriodRSI= 14 ; // Period //--- indicator buffers double ExtRSIBuffer[]; double ExtPosBuffer[]; ArraySetAsSeries (RSI, true ); RSIHandle=iRSi( Symbol , PRICE_CLOSE ); Improperly formatted code edited by moderator
I change the example of Ichimoku indicator . It work well. However, there are two questions. How to fill the cloud between SpanA and SpanB with STYLE_DOT like the built-in indicator? How to make indicator support shift beyond series with CopyBuffer()
How can I draw an object that wouldn't overlap and change the color of candles with its own color? Now my indicator looks like on the first screenshot but I want it to look like on the second. Please help
Hello thanks for your time to check my post I have made an indicator on mql4 called Advanced fractal using int start() function but when I tried to convert the indicator to mql5 It did not work as expected If you please give a feedback for my work ..MQL4
I have looked everywhere for a platform that offers "Single Regression Channel" But I have only found one so far, unfortunately the platform does not trade all night nor does it work on US30 or MT5. So I am left with having to somehow code Single Regression Channel, into my MT5, Does anyone know how