Technical Indicators - page 45

Hello I programmed this awesome arrow indicator to scalp on forex now my challenge is to make it send alerts when an arrow shows can someone please help
Hi everyone. Hope you are doing good. I have created many indicators in mql4. Now I'm converging towards mql5 and trying to create indicator in mql5. Can anyone let me know what I'm doing wrong here. Cause I've tried multiple things but wasn't able to sort out that why my 2nd buffer is not showing
hi i would like to have universal connector for MT4 to automate my indicator or help me to remove licence from attached one. thanks for your help
Hello The indicator consists of 2 lines that if it is ascending, for example, green, and if it is descending, it will be another color, for example, red. I do not know why the lines do not change color. Help me if you can. Thank
Hi everyone, Here’s the question: I get buffers from example indicator multiple buffers like iEnvelopes correctly through numbering in CopyBuffer handle1 = iEnvelopes ( NULL , 0 , period, 0 , method, price, deviation); CopyBuffer (handle1, buffer= 0 , 0 , 3 , arrayUpper)> 0 ) CopyBuffer (handle1
  Volume and Price  (1)
Hello, does somebody know a free indicator which can show me at which last price levels there was most voume? Or does somebody know how you can code such indicator yourself or maybe the metatrader have already a build in indicator for that
Hi Everyone, I'd like to make a simple custom indicator that appears in a separate window, as an exercise to help me understand Mql5 a little better! The indicator will use the data from the chart it is attached to, and have an input to select a second symbol. For example: Attach the indicator to
Hello, Since trading is all based on a forecast about the future, being able to draw indicators' plots beyond current bar [rates_total-1] would be nice. The idea came to me while thinking of MAs and timing moves. Especially for higher period MAs, a visual representation of the nearby future with a
  MQL4 to MQL5  (4)
Hi guys i am at the beginning of learning mql5 and trying to convert an indicator. Its not plotting any idea what i #property copyright "T/oligarch" #property link "t/o" #property version "1.00" //--- indicator settings #property indicator_separate_window #property indicator_buffers 12
  [DL] Trend scanner and Currency index  (103   1 2 3 4 5 ... 10 11)
Here is my contribution to the community...two very useful custom indicators. If someone dont know how to use them feell free to ask.
UPDATE: See the workaround below CopyBuffer() throws an error of 4806 (Indicator data not accessible) when calling an indicator with a different Time-Frame from within the code of an indicator. It happens when calling a valid Indicator handle to a different Time-Frame from the current working
Hi i create one indicator for metetrader 4 and 5. this program work correctly on my system and my broker metetrader, but some brokers not drawing my indicator. even I try compile and debug my code on it and there is no problem. But when i wants use it the indicator not working. why this is happened
Hi, i am trying to learn to program indicator and EA. My indicator doesnt work well, it doesn't auto update the new price except i refresh chart or recompile. I dont know why. When the new candle generated, LSMA indicator (the red one) is falling down at 0 value. Can anyone point me in the right
Hi guy, i'm writting a LSMA indicator but it display incorrectly, it work well except the at the first bar. here is my plot display *** I find out when i compile the OnCalculate() will be run 2 times, i try to console log the rates_total and prev_calculated and the result is: *** It lead to this
Goodmorning everyone, I am new to programming, I have been looking for the solution to the "array out of range" problem of the following lines of code for a week ... you can help me? int OnInit () { ArraySetAsSeries (arrayPriceData, true ); int nrBarreMemorizzate = CopyRates ( _Symbol , _Period
Please some kind soul can check the script for mql5 with following conditions: 1 - Creates a horizontal line on the opening price; 2 - Start drawing the lines from today onwards; 3- It has to be editable where I can delete or move the created lines. I made the code based on some models, but the
Hey guys, there is a simple code from another platform that I wanted to replicate in metatrader, could you help me? if (rsi( 2 , 0 ) < lowest(rsi( 2 , 0 ), 10 )[ 1 ]) then BuyAtMarket; I need to create a buy signal for when the 2-period rsi is less than the 2-period rsi of the last 10 periods
Morning Does anyone know where I might find an indicator/EA that shows/activates when a moving average crosses the price line long or short. I've seen hundreds of MA Cross indicators (when MA crosses another MA) but struggling to find when a single MA crosses the price line. Thank you
People help plyz to remake the indicator of levels of round numbers from MT4 under MT5. I can't afford to pay for the work. If there is a kind person, I will be sincerely grateful
Hello. I am having difficulty finding a method to create a dropdown menu within an indicator that chooses between histogram and line. I am wondering if anyone could give me some example code or direct me to a resource that is not too complex. I would very much appreciate it :)
Hi, I am developing an indicator and I don't understand the OnCalculate event at all. From what I can see, this indicator runs every time there is a new tick on the chart. So, I calculate for all candles the indicator (I limit it to 1000 candles) for ( int i = ( int ) MathMax (prev_calculated- 1
I have a strategy that apparently is very good when there are trends. But this has great losses when the market is consolidating. In fact, it almost lost 90% of the capital between 2000 and 2003. So if I can filter those periods in which the market does not have strength, maybe this strategy can be
  ADX calculation  (6)
Hi everyone, I'm trying to figure out how ADX is calculated in MT. I have studied the documentation and the mql code of the indicator but am still observing something wrong. I'm experimenting with monthly data to see the calculation from the first bars of history. Using the standard...
"Good evening I have to convert a tradingview indicator to MQL4 for a friend. I have to admitt I have not much experience in pine script, but till now it was enough to creat some indicators or convert some to MQL. But the current one has some parts I don't understand completly. Pine Code: x =
Hi how can use and draw in the main and sub chart windows in same time? in both mql4 and mql5? I want show an indicator in the main chart and draw some object types in sub window. how can i do it
Does anybody know if there is an indicator which shows how much you have gained/lost per trade as percentage of your account? (MT5) I am talking about close trades. Thank you very much in advance
Hello! I'm trying to do an CCI indicator but show the error array out of range . Follow my code and please help me!! //--- plot candles #property indicator_chart_window #property indicator_buffers 6 #property indicator_plots 1 #property indicator_label1 "candles" #property indicator_type1
Good day fellas Can someone kindly assist me in coding a RSI(10) with a [SMA(10), Apply To: Previous Indicators Data...] Like so: (iRSI(NULL,0,10,PRICE_CLOSE,0)>iMA(NULL,0,10,0,MODE_SMA,.......,0) The blank part I want it to be Applied To: Previous Indicators Data. Your assistance will be highly...
Hello guys, I want news indicator lines with vertical line object by importance like this in picture. Can someone help with code
Hi guys, i managed to create a MACD of an indicator buffer an its MA i was able to show the MACD either as a line or a histogram is there a way to create an option in the indicator inputs to choose between DRAW_LINE and DRAW_HISTOGRAM without ??? Thanks