Technical Indicators - page 31

Hello, first of all thank you for helping. I just want to create indicator which shows me daily drawdown in metatrader5. How to create it? Thank you. I only have indicator which shows drawdown of current open position. But I need indicator which shows drawdown with period of daily
Is there a way to make this a Double Sine Weighted MA? double workSineWMA[][_maWorkBufferx1]; #define Pi 3.14159265358979323846264338327950288 double iSineWMA( double price, int period, int r, int instanceNo= 0 ) { if (period< 1 ) return (price); if ( ArrayRange (workSineWMA, 0 )!= totalBars)
These great pages describe how well-known standard indicators are calculated. (With calculation examples) https://www.earnforex.com/guides/average-true-range/ https://www.earnforex.com/guides/what-is-moving-average/ However, when compared, these do not match those of MT5. The help at
Hi I used the Stoch RSI indicator and received an error when I changed the period of the stochastics to be higher than the period value of the RSI. The exit error is " array out of range in 'Stoch RSI.mq5' (162,29)" The error occurs on the line "if(Result==0 || (high[i]>Result &&
Hey guys ,, i've tried to install mt5 on linux -ubuntu 20- and everything went well .. But when i tried to add 2 custom indicators ,they didnt show up !! but Default indicators are working well ! Does anyone has a clue about this issue ?? Thank you
hello this i have this indicator which gives array out of range and on backtest it give zero divide error can someone assit to figure it out thanks //**************************************************************************// // Solar Wind Joy DS RP AA MTF TT
hi, int start() { if (NewBar()== true ) { double sma6 = iMA ( Symbol (), 0 , 6 , 0 , MODE_SMA , PRICE_CLOSE , 0 ); Sleep ( 2000 ); //buy if (sma6<Close[ 0 ]) { SaveInfoMovingAverageToTheFile( "BUY" ); //
Hello guys, Im new to coding, and seeking your help with a little issue :) MT5 I want this indicator to draw two lines at the first 4H candle of the day, (one at the high & second at the low), and I want these two lines to stay fixed for the rest of the day, ( i don't want to draw the upcoming 4H
  Hull Moving Average  (430   1 2 3 4 5 ... 42 43)
Attached is a coloured Hull MA. It's a fast moving average and gives quick signals for trend changes, excelent to use with a long term trend indicator! What I'd ask a programer is to program it so that once the line changes an arrow appears, bullish or bearish and an alert is signaled. Actually the
  Gann is the Man Indicators  (173   1 2 3 4 5 ... 17 18)
Here are a couple of interesting indicators from W.D. Gann (aren't they all?), as well as a link to his bio. W.D Gann Methods , Time and Price & Trading Experts *** Gann also studied and applied astrology to trading. Therefore, also included are a couple of astro indicators that wasn't available...
How do you change color of lines? I have set 5 colors into indicator_color1,3 & 5. Assigned INDICATOR_COLOR_INDEX after INDICATOR_DATA When activating the indicator, the color is red instead changing blue & green. Please advise, code is below, thank you
I would like to copy the buffers of an indicator that is shifted forward, how to do it? Indicator: IChimoku Buffer: Senkou A and B
I'm attempting to create my first MQL5 indicator, the Relative Volume. Relative Volume is just the current tick's volume / average volume over past n bars. Simple. I've read the two articles for newbies ( here and here ), but am just a bit unclear on some things that I will be able to decipher on
I really don't understand MT5... I'm using a custom indicator that works perfectly when loaded on a chart. Zero lag, fast, no issues. I can modify every parameter, remove it and reload it on other 20 other charts, and it still works perfectly. You know when it doesn't work? When I close MT5 and then
Somehow when printing out iBarShift() it appears to be going in reverse order from high to low while our time is being printed from past to present. We are sending in the most recent time and getting back the lowest index in our indicator buffer (obvBuffer[]) . We would expect the current index to
I press a button and at the end of various calculations objects are drawn on the graph. If I delete the indicator I delete the drawings with "ObjectDelete()" in the "OnDeinit()" function, it's fine. However, after drawing the indicator, I close and open the terminal and of course everything resets
Multi-Dimensional Fractals (up to 4 Dimension) give us market structure with different kinds of supports and resistances. Just some words about market structure from Larry Williams "LONG-TERM SECRETS TO SHORT-TERM TRADING": "Why This Is Important Once you have this basic understanding of market...
The problem is having object created in a TF (e.g the 4H TF) to be displayed on the the 4H TF and lower TF, anything greater than the 4H TF it won't display. I know using OBJ_PERIOD_D1|OBJ_PERIOD_H4 // would get you to display the Object on only the 4H and Daily TF and nothing else but getting it to
Hi there, I am looking for an indicator or EA (paid) here. <Deleted. Discussion of market products is not allowed in the forum>
Hi, First of all sorry if this has been discussed before, i did my best to find the right topic but didn't find anything. can someone please tell me what the reason can be for an indicator to plot all over after being loaded for some time on the charts? Look at the screenshot, the upper oscillator
Hello I'm looking for a free feature in MT5 where it is possible to link charts of the same security (eg google) with different timeframes. When I add an indicator, I want it to appear on the other timeframe charts as well. eg. I want to see a resistance/support line on the day chart as wel on the
  How to hide indicator plot  (17   1 2)
I want to hide/show my indicator plot based on a criteria. If I set the color to clrNONE, I still get a pop-up on mouseover of the invisible plot. That's still the simplest way to hide the indicator though so I wonder if there is a similarly simple solution to this or if I should just forget about
Good day, I have created this indicator to look for fair value gaps and it loads fine for 1 chart. But if I try to load it onto a second chart then it does not load. Can anybody advise why this would be the case? I did not limit the indicator to a specific chart. I would appreciate any assistance. I
Any idea why a script is taking hours to scan through 500+ symbols? Yes 500 symbols! At first, it didn't have any issue with that except occasionally displaying "Error out of range" so I fixed it by using the lines of codes inserted below and suddenly the script is now so slow. Please any suggestion
Please tell me the name(or url link) of this indicator
  Market Hours Indicators  (174   1 2 3 4 5 ... 17 18)
Does anyone have an indicator that will highlight the major market hours for London, New York, Tokyo... etc. The only similar indicator I have will only let you highlight 2 zones. Any help is appretiated.
int OnInit () { return ( INIT_SUCCEEDED ); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int OnCalculate (
I have created a custom indicator using... int indicatorHandle = iCustom (symbol, PERIOD_M1 , "MyIndicator" ); ..and at some later stage, I attach it to a new chart that I have created... long chartHandle = ChartOpen (symbol, PERIOD_M1 ); ChartIndicatorAdd (chartHandle, 0 , indicatorHandle); I
I'm new to MQL programming and would like some help on build a simple code which lists all currency pairs whose stochastic value is under 25. Thank you
Good evening everyone. I am trying to develop a techniche using FIBO_FAN, thought i am strunggle to try to get the value of my fibo lines in the current candle. Follow image Illustrating what i want. I would like to know how to get the value of the fibonnaci fan exactly on that purple point in the