Technical Indicators - page 9

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
  Indicators with alerts/signal  (15924   1 2 3 4 5 ... 1592 1593)
Some indicators with alert/signals with author's comments: - EMA-Crossover_Signal: Enter two Exponential Moving Average periods and it'll tell you when they crossed. - SMA-Crossover_Signal: Enter two Simple Moving Average periods and it'll tell you when they crossed. - SMMA-Crossover_Signal: Enter...
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
I have a test script that just draws a couple of HLines in the chart when pressing a keyboard key, any key (just for testing). Something like this: void OnChartEvent ( const int id, const long & lparam, const double & dparam, const string & sparam) { if (id== CHARTEVENT_KEYDOWN ){
double low_array[]; double high_array[]; int entry = 0 ; int OnInit () { return ( INIT_SUCCEEDED ); } //+------------------------------------------------------------------+ //| Custom indicator iteration function |
Hi, I'm trying to draw 8 color lines with 8 buffer colors in one day, base on time range, but almost of them are not showed on the chart, it only shows 4 buffers on data window. I spent all day without finding the cause. Where did I go wrong? My code file attached below The order of these buffers
Dear MT5 community, I have been using the attached indicator to add empty space on the top and bottom of each chart as per pics attached. I find the indicator useful and well conceived but it might be using too much ressources and I experience some lags. My question was with other users and MT5
  Random Indicator  (1)
Hi!! where I can find a Random Indicator that show in a chart a short or a long order completely random?. I would like to test one thing...hahahah
Hello everyone, I recently purchased a compiled indicator (.ex5) that plots arrows on the chart to indicate buy and sell points. When hovering over the arrows, a popup displays "ARR-UP" on the buy arrow and "ARR-DOWN" on the sell arrow. I am seeking assistance in creating a script that can
  Impulse MACD  (2)
Hello. Tradingview has an indicator. It's called "Impulse MACD". Can anyone code this indicator according to Metatrader5? Source codes are below. thanks Auto-translation applied by moderator ... Improperly formatted code removed by moderator. Please EDIT your post and use the CODE button (Alt-S)
Hello would be possible to plot into a chart something like this? (for hystorical prices)
Dear Fellows I am trying to create custom indicator i CandlePatterns.mq5 for identifying patterns. The Indicators works fine when loaded for the first time on chart and finds patterns for all the history data. However, after that it does not update patterns as new candles are formed. I could not
I am trading a strategy that uses EMA crossover + RSI to detect trends. However, there's still the possibility of false breakouts. Does anyone know of a good indicator to help detect when a false breakout is happening? Thanks
Hi guys, I wrote an indicator in IDE on my MacBook, and it works like a charm. I can add it to plots, and it shows correct data. If I try to load the indicator in a EA, however, I get "cannot load customer indicator [4802]". I try to load the indicator in the EA code like this: string ind_path=
can anyone help to convert this code to mql5? //@version=5 indicator( "condition counting with valuewhen" , overlay = true ) m1 = ta.ema(close, 30 ) m2 = ta.ema(close, 100 ) plot(m1, color = color .red) plot(m2, color = color .yellow) cond = ta.crossover(m1, m2) var int count = na if cond count
Hi good coders, I am trying to make MTF this brilliant indicator: My results are always with array out of range. Could you help me find the errors? Thanks in advance //+------------------------------------------------------------------+ //|
  Tick Indicator and EAs  (244   1 2 3 4 5 ... 24 25)
hi, a cool indicator Tick_on_Chart i all TimeFrames :cool: only Live Tick !!!
  Pip Value Script  (2)
Can someone tell me if this script is 100% correct? I am having some doubts because, for example, I was not taking into account that in the indices 1 pips is not the minimum unit of change, that is, it is not a decimal, but rather the change of 1 integer. And that has confused me // Define the
MQL4 code: //+------------------------------------------------------------------+ //| AMA.mq4 | //| Copyright © 2004, MetaQuotes Software Corp. | //| http://www.metaquotes.net |
I am MQL5 beginner, and wonder if I can get an expert feedback on something. I found several codes that calculate lot size based on risk amount, etc. I want to create a simpler function to calculate the lot size in any given currency pair, given a USD amount. I created the function below, which
Good day to you all. I have experience coding in other languages so I am not a complete noob. That being said, being so new to MQL5, I know that I am making mistakes and need to learn the proper use and limitations of the language, which I am working on. I am not here looking for code or strategies
I have an EA that uses an indicator. I would like to see the indicator when running the EA. However, each time I change a parameter in the EA, the indicator is doubled in the chart. In the example below the Ibands has 3 lines, when I load the EA for the first time...but if I change any parameter in
I am working on an EA that for the last candle uses, say the value 5 candles ago. To visualize this, I use PLOT_SHIFT with a value of 5, so I can see the value 5 candles ago in the latest candle. Graphically looks fine. The problem I am having is that this ruins the data I get in the CopyBuffer
Hi, I am having difficulty programming a currency strength meter type indicator in python. I would later like to use it for a neural network. Could anyone help me? Thanks a lot