Technical Indicators - page 19

  Camarilla  (32   1 2 3 4)
Camarilla indicator. And an other camarilla (camarilladt2) created by DanielTyrkiel. All the description here: https://www.mql5.com/en/forum/173143
Due to the horrendous state of the MT5 Toolbox I'm looking to make an indicator that can act as an alternative. The Trade, History, and Calendar tabs should be easy enough. That data can all be accessed readily as far as I can tell. The problem lies with a couple of the other tabs I'm interested
In Zigzag indicator . What mean of ExtDepth, ExtDeviation ,ExtBackstep ? thank you
I am righting a new indicator, i have added 3 line and one color buffer , but one of the lines not showing The code: #property indicator_chart_window #property indicator_buffers 4 #property indicator_plots 3 #property indicator_color1 clrBlue , clrCrimson input int ma_period = 14 ; int maHandle;
Hi, I searched through the entire forum and used google to find an example of an indicator that displays Heiken Ashi candles from higher timeframes onto the current main window of the chart. For example, I use the MQL5 standard Heiken_Ashi.ex5 indicator on the M1 timeframe to display the bars. Now
I have written an indicator that shows the candles after the vertical line with a different color. I use this indicator to get a backtest (the color of the candles after the vertical line is the same color as the background so that it is not shown) The problem is that the color of the candles after
Hello i am trying to change this code for my purpose. This code draws regression lines at chart. With inputs of start_bar and end_bar. start_bar's value is length of calculation. end_bar's value is always zero. I need to change this code with specific value of end_bar. I directly changed end_bar's
By default, MA method in Bollinger Bands (BB) is set to use with Simple Moving Average . Is there any custom BB that its MA method can be changed to other method like Exponential MA, Smoothed MA, Linear Weighted? One BB MT5 used in general attached below. I do appreciate if you can help or share
I wrote a custom indicator which attaches 5 other indicators to the chart - Yes, just like a template. Unfortunately, each time I change the periods of the MA and re-open MT5, the Moving Averages duplicate. Here is a pic of what I mean Here the MA where I changed the period is duplicated and shows
Hello Do you have any idea why a code does not give the same result on the trading terminal and the strategy tester? Here are the screenshots Tester Terminal Thank you
Hello, On some EA that I use, there is the option of Buying Above and Selling Bellow w.t.r Bollinger bands , which is, from what I understand, the opposite of the normal use of the Bollinger bands. Here it is in action on GBPUSD M15 The first trade is a short and the two last are longs. It seems to
hi... i try to create multi timeframe indicator, later, i want to apply it to my ea i use copyhigh() and copylow() functions to get data. but when i use arraymaximun an minimum function, it look like error please tell me what should i do here's the code #property version "1.00" #property
[Deleted]
I am using MqlRates to get live feed of OHLC data where Time = 1minute from a broker server I am able to change time to 1 second but OHLC info is copied to candlestick as per 1 minute data from broker (broker's OPEN remains same until 1 minute ends and I am expecting to make a new OPEN every
Hi guys, Merry Christmas to those who celebrate it. I would like to see whether anybody has this mt5 script as an indicator : https://www.mql5.com/en/code/18058 . Exactly the same, using the entire free margin available to calculate the maximum lot size available for trading. I do not need any risk
Hello, I'm looking for optimizations in the indicators and would like a suggestion. To prevent the indicator from representing empty_values, I am considering the function: PlotIndexSetDouble (index buffer, PLOT_EMPTY_VALUE, 0.0); My question is whether the best place to include this code is
Hello, I'm new to mql5. I'm doing this as a practice project. Is it possible to create a script, when triggered it'll draw 1. A horizontal line at the Y axis value of the crosshair and 2. It draws only on the current time frame
#property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Lime // Swing High color #property indicator_color2 Red // Swing Low color extern int lookbackBars = 10 ; // Number of bars to look back for swing high/low identification double swingHighBuffer[];
it not work. Hope results in Points. &&(iMAMQL4(NULL,0,89,0,MODE_EMA,PRICE_CLOSE,0)-iMAMQL4(NULL,0,200,0,MODE_EMA,PRICE_CLOSE,0)>100)
in mt5 with drag & drop several indicator in one separate window, value of buffers for that wrote after his name like below picture: with using; IndicatorSetString(INDICATOR_SHORTNAME,shortname); in a mql5, all value's for buffer's show's after name : if several indicator are in one code mql5...
Hello I have an indicator that sends me push notifications every time I get an X amount of consecutive low/high bars. The problem with the indicator is that it keeps sending me notifications for every tick after the alert condition has been met. Could someone please help me change it so that I only...
I been updating my indicators in resent time, I notice that I have successfully introduced, a model that shows volatility/Activity with numbers. so I want to know if its possible to see Volatility/Activity in Realtime..? if there is no Activity deviations of my numbers becomes stable. i want to know
I'm new to mq5 coding but I want to learn how to make 2 simple text indicator for xau like: 1. I want make fundamental price history, so the indicator should sync with forex calender (major pair country) and mark price movement right after the news happen. The table context should look like this
My audio alert should trigger when a certain condition is met, it does trigger on this condition and plays the alert, but the issue I'm facing is that once the alert triggers it doesn't just play once...it sounds like someone starts suddenly playing the alert on a vinyl turntable. I tried coding
if anyone have, please share this indicator
//+------------------------------------------------------------------+ //| t.mq5 | //| Copyright 2022, MetaQuotes Ltd. | //| https://www.mql5.com |
I had this funny idea to make a red spike appear under the candle when it is unsafe to buy. As a warning signal. When the price is high, the red spike gets larger in dimension...the larger the spike, the more the trader needs to be certain about their entry... the smaller the spike...the better for
Hi, I had a indicator that was working that no longer works. I ran on metaeditor to see for errors, and I got the following error. 'Period_W1'-cannot convert enum    [on line 22] Any suggestions on a fix? Anyone?
  Repainting indicators  (656   1 2 3 4 5 ... 65 66)
There has been a lot of discussion regarding repainting indicators. i thought to be a good idea to gather all the information in a separate thread. here some popular indicators that i know to repaint: Zigzags SilverTrend all Fisher , Solar and what ever they are called BrainTrend indicators: be
Hello i modified an indicator and got values in static array which is non dependent on bar number qnd i want to give this array's 0 value to indicator buffer array's 0 value and as you know indicator buffer array is dynamic and time dependent array. İ equaled [0] value of each array in indcator but
Good day! I wrote the code (attached below) for the indicator, everything counts correctly. However, only during initialization, during further drawing - the information is drawn incorrectly. I tried to use start () instead of a calculator, but everything is the same. Only 1 return;