Technical Indicators - page 43

Hello guys, based on 2 moving averages (fast and slow), I want to create an indicator cv which is cv[i] = 1, if a crossover happened at bar i cv[i] = 0 else When I add the indicator to the chart, cv[i] is always zero and checking the log, ExtFastMaBuffer[0] never changes the value besides being a
Since Windows 7, interfaces with volume and shadow effects have been available. So why should indicators remain drawn in 2D? Here is the first attempt to give volume to an indicator: Does it look like volume? This is a slightly modified Custom Moving Average - adding volume is only available for one
Hi there. Is there a piece of code somewhere I Can paste into mine to make it work only on EURUSD for example? Or to restrict the indicator to work only on the strategy tester? Thanks
  Helo everybody..  (2)
Any one can help me...i want make indicator candle pattern...can help me coding
Anyone know how to add the adx (previous indicators data)to the the stochastic
  Modify indicator  (2)
Hi guys ... I need good coder who can modify indicator It's not at mql5 market Who can help and get the strategy contact me quickly <Post edited by moderator>
Anyone know of an developer ADX that allows custom settings for each component? Example: ADX 14, DI+ 11, DI-11
Hi guys. newbie here ..I need some help. I would like to use rsi value of 5th candle as part of my entry so I need to keep checking for it's value . I compiled my code and have no errors or warnings. However when using strategy tester, I keep getting array out of range (89,38) . How can I fix this
  request  (5)
When I put several oscillators on the chart at the same time Checking them at the same time is a bit difficult Pulling them up or down one by one is time consuming Please add this in Meta 5: . Easily climb the lowest oscillator with one swipe . Or, for example, bring them all down In general, have
How do I code and get the ratio of 2 moving averages? Anyone kindly shed some light please. I need to calculate the ratio of 2 Moving averages
Hi, can anyone tell me how to install indicators on MT5 on MAC ? I tried all the instructions I found on the internet but thy don't work and are mostly super old
please guys i need help figuring out how to know if an indicator repaints or not. for starters i know that oracle indi repaints, but when i plugged it on my chart in mt5 and set timeframe to 1 minute, it didn't move but its head. youtube videos suggested that i use strategy tester but it only allows
How to code : plot indicator in selected range on the chart
I downloaded this indicator that allows the showing of multiple time frame pivot points (daily, weekly, hourly, yearly).  Problem is that I can not seem to get the labels to display for each point. According to their screen shot (see image) that is should display the labels for each "period"...
Hello, does anybody know where I can get an indicator that can refresh the charts every second or 2? I have an indicator that needs the time frame to be switched and back to the one I'm using in order to keep working
Dear community, I need a help to discover a way for dynamically identify the PLOT_ARROW code and Color used by DRAW_ARROW indicator type. My project is create an EA that sends orders using any DRAW_ARROW type indicator as buy/sell signal . Here is a test indicator source code. #property
If anybody could drop a function or method, it would be great help to me, thanks in advance
I created an indicator that is drawn on only a part of the chart according to the user's request and the values before and after it are filled with Empty_value so that they are not displayed. This section works well; But I need it when my indicator is active. If the user adds another technical or
I have this %K = (C−L14/H14−L14) × 100 %D = (Sum of last 3 %K) / 3 Where: C = The most recent closing price L14 = The lowest price traded of the 14 previous trading sessions H14 = The highest price traded during the same 14 -day period %K = The current value of the stochastic indicator but I see
Hello guys, I made this test-indicator which checks all of my selected pairs and timeframes for correct history data so I can work with them. This indicator should only check the timeframe when it's necessary. So it doesn't make sense to check the H4 chart for a new bar when it's 7:40 or so. Most of
Hello, I need the MACD with 2 lines like in the screenshot above if possible the code MQL5. The screenshot is taken in Tradingview. . Thank you for your help
Good afternoon, I have an indicator that shows me on the screen: - The Initial Balance - The Current Balance - The Net Balance Normally I operate in TimeFrame 1M and they allow me to know how the balance of the account evolves. It happens to me that when changing from TimeFrame to 5M, for example
Dear MetaQuotes! The need for higher TFs in Metatrader and MQL has been long overdue! Are there plans to increase the range of periods beyond MN ? In MT5 the upper TF button is signed as MN , while in MQL5 the higher period is PERIOD_MN1 , i.e. with an index. This is a very promising hint. It's a
Good day my learned community. Can anyone please help with with an indicator that draws the open prices of the various sessions horitazontally? For instance; Daily open, asian open,london open,and New york open. I would be grateful if there's a possibility to disable any of the sessions where
How do I can add alerts to pivot level at code
Hi, I was trying to submit an indicator to the codebase. In section "4. Code" it requires al least 2 files: a ".mq5 file" (no problem with that) and "At least one screenshot is required with dimensions up to 750x500". However, no matter what image file I upload (png, gif, jpeg...) or size, it always
Hi, Is it possible to demonstrate indicator charts in the chart window and in the separate window simultaneously? I would like to demonstrate my indicator charts in the lower window and to show simple moving average chart in the upper window together with price chart. Please see the picture
Hi does anyone know the name of this indicator which is the same or similar to it
In the Fractals.mq5 file there is no chart redraw or any function I was expecting in the onCalc and was wondering how MQL5 is drawing new fractal arrows? I understand how in the OnCalc new upper/lower fractals and those prices are being found and updated in their arrays, just not sure how that is
Hi guys, I wrote a test indicator and every start I got an error message (CopyBuffer 4806 error), I don't know why and hope, You can help me to solve it. The code: int macd_handle_m5, macd_handle_m10;double macd_values_m5[], macd_values_m10[];int OnInit()  {   ArraySetAsSeries(macd_values_m5,...