Technical Indicators - page 2

Hi,while uploading to metaquotes a new indicator,I receive the following error message:test on EURUSD,H1 (netting)not synchronized with trade serverwhat does it means?thank you
Hello, im trying to make an indicator that extends trendlines to the current time on the chart, this is the code //+------------------------------------------------------------------+ //| HorizontalTrendlines.mq4 | //| Copyright 2024
  Zorder Function  (4)
Hello I am trying to make an interactive line over an already presented 2 other lines. so I can drag it through chart if (ObjectFind(interactive_line_name) == -1) { ObjectCreate(interactive_line_name, OBJ_HLINE, 0, Time[0], Ask); ObjectSet(interactive_line_name, OBJPROP_COLOR, DarkKhaki);
I have been trying to code a simple price pattern indicator to print arrows when pattern is detected but it seems not to work. Please help out
bool IsValidOrderBlock(int index, const double &open[], const double &high[], const double &low[], const double &close[]) { if(close[index] > open[index] && close[index - 1] < open[index - 1]) { if((high[index] > high[index + 1] && high[index] > high[index - 1]) && (close[index] - open[index]
hello, I want to apply moving average or RSI on a second data/line of a custom indicator. My indicator draws two lines. There is no difference between choosing first indicator's data and previous indicator's data. on both options the moving average is calculated for the first line
Good day to all, I am currently using Mt5 with 100,000 max bars in chart to keep my system running smoothly given high number of charts and indicators. My issue is that Fibonacci levels drawn on Monthly, Weekly, and sometimes Daily timeframes are not showing on M1 and M5. I do understand the work
Hi everybody hope everything in fine i use to have two indicators but due to some issue in my laptop i have lost them...i only have pictures of both they are free and available online but i cant remember their name can any boby tell me which indicator are these name of indicators. 1st indicator
Hi, On mouse hover over the regular candle stick, it displays open, close, high, low, and volume of that candle stick. I want to do the same thing with HeikenAshi candle stick. How can it be done, any suggestion will be appreciated? Thanks.
@Vladimir Karputov Alain Verleyen William Roeder I have zigzag based indicator. The code makes sense to me but the objects(HLINE) drawn on screen keep disappearing, please help //+------------------------------------------------------------------+ //|
Hi! I want an alert system for technical indicators. It's been rather difficult to implement that into the existing source code of the indicator. I have searched online and found no reliable or latest results for this. Basically, I want a read, yellow and green box whenever the indicator reach a
Does any one know if it is possible to add/download a favourite inticator to any smart phone version of Meter Trader 4 of 5? Thanks in view of your kind reply and assistance.
What are the most effective indicators people use either standalone or in combination? I use EMA, RSI with ATR and they seem to work well, but haven't tried other indicators
  Chaikin Money Flow for MT5?  (12   1 2)
I'm looking for the chaikin money flow for MT5, but I didn't find anything here. If exist, can you share the link to download it
Hello Does the PO3 "power of three" mean anything to you? Here is one in M30, for a PO3 daily POC "Point of control"? Here is one, still in M30 for a POC daily Shall we talk about it in PM
Hello, I know it sounds strange but after a lot of time stuck with this problem I'm starting to get a little crazy. The thing is I am trying to do an EA to make size positions. Right now, I am in the step of creating the different HLines of the order before creating it. This is done in an indicator
Im working on this indicator, it draws swing points..I just need a more efficient way to perfom this task..my code appears messy to me...some times it misses a point. //+------------------------------------------------------------------+ //|
HI there , is there anyone here who know where to find a Script or Indicator for changing a Linear (Arithmetic ) Chart in MT4/MT5 into a Logarithmic Chart in MT4/MT5 ? I appreciate any help .Thanks Greeds Zack
//+------------------------------------------------------------------+ //| MondayBreak.mq5| //| Copyright 2024, MetaQuotes Software Corp. | //| https://www.mql5.com |
  QQE Cross over alerts on screen  (47   1 2 3 4 5)
Hi Can anyone modify the QQE to place an arrow when there is a crossover ? Thanks
  Moving Average  (1548   1 2 3 4 5 ... 154 155)
Post all MA indicators here
greetings fellas, I want to ask if anyone have reference about making symbol as indicator but other than this reference https://www.mql5.com/en/docs/customind/indicators_examples/draw_candles
Hello Friends Please Help me check while the Histogram isn't drawing properly. I'm trying to convert from mql4 to mql5. I'm getting correct buffer values but the drawings are not correct #property copyright "" #property link "" #property version "1.00" #property strict #property
Hi, I coded a small indicator that uses not only OHLC of the symbol where the indicator is placed, but it also uses OHLC from other symbols to generate signals. At the very first tick of a new candle I try to get the OHLC from the symbols with CopyRates into a MqlRates struct. MqlRates firstRates[];
The iTime() function (and no doubt other i____() functions) return 0 if they get an index that's greater than the TERMINAL_MAXBARS value returned by TerminalInfoInteger(). Rates_total, Bars(), and iBars() have no trouble returning bar counts that exceed TERMINAL_MAXBARS. The standard arrays passed
Hello, I want to have a chart with an indicator that will only display information that I give. So, for efficiency purposes I would like to know if there is a way to "kill" that chart and only respond to my functions. That way, it won't have to calculate anything nor draw anything except when I
Hi everyone I have written an expert that runs custom macdonrsi indicator on 3500 Renko charts with different size candles. In the end, when I want to delete the expert or change the profile, it automatically tries to close all these indicator handles at once, and that's why it hangs and I have to
  Forecasting indicators  (344   1 2 3 4 5 ... 34 35)
Please find some indicators which are forecasting something. First is i-DRProjections_v.0.1. This indicator shows the support and resistance of current day forecasting on the base of previous day. All the calculation is based on Thomas R. DeMark book "New Science of Technical Analysis".
Hi Can someone please help me have a look why is it on my computer(first image) the MCDX blue lines matching the bullish candlle which is WRONG, but the(second image) on someone elses computer the MCDX blue lines matching the bearish candle which is CORRECT, why is there 1 bar delay? Thanks in
Hello, refactoring my code I've found a place where instead of comparing two symbols with StringCompare, I was doing == of both ChartSymbol(chartID). Suposedly ChartSymbol() returns a string and when comparing two strings if == is used, only returns true if both string are pointing to the same