Hello,
I am trying to find an indicator that will do the following
Place a horizontal line at the exact middle of the previous candles open close.
So as each new candle opens (on any time frame) it will adjust the line to the new previous candles mid point?
Again mid point of open close not mid...
In the document here, it says the first param is the Index of the graphical plotting. Graphic plotting is one of the ENUM_DRAW_TYPE.
Why it is always 0 in the example here? I think it should be one of the ENUM_DRAW_TYPE. Why it is not?
PlotIndexSetInteger(0,PLOT_LINE_COLOR,0...
Hi guys,
Just wondering if someone can help me with how timeframes and indicators work across different charts.
Say for example I had an indicator that triggered a sell when RSI crossed 70 from top to bottom. If the RSI period was set to 5 on a 5 minute chart, this (and correct me if I am way...
When I want to apply the example indicator from the reference (shown below) to a different indicator by dragging it from the navigator window, why is the "previous indicator's data" option not shown on the indicator parameters windows? Thanks. #property indicator_chart_window #property
Hi,
Is there a script of some sort that draws in dashed Key Level lines onto a chart... ie: 1.300, 1325, 1.350, 1.375, 1.400 based on Price?
Thanks,Miles.
Hello,
I want to change the indicator for Renko candles only based on changes in PIPS and not on a time basis. That is to say, do not wait until the candlestick closing for the Renko candles are built but they are built gradually as the PIPS evolves without considering the candlesticks.
I do...
Hi,
are there tools for profiling a technical indicators system load?
With many indicators on many charts, sometimes it's difficult finding out which one is pushing the system to limits.
P.S. Hey Metaquotes, I would appreciate a lot, if Mt5 wouldn't heat up my CPU that much even in offline mode.
hi,
i need cycle indicator for confirmation. attaching here with image of same. its in chinese , if any one can provide said indicator will be helpful.
thanks in advance.
Happy trading
Paresh shah
My code:
//+------------------------------------------------------------------+//| 1.mq5 |//| Copyright 2014, MetaQuotes Software Corp. |//| http://www.mql5.com...
The Trends, Forecasts and Consequences section on 4 is not a bad idea, it is useful, and I have borrowed a lot from it, but it is overloaded with criticism, personal gossip, and psychological pressure from experienced traders. I have taken a lot from there, but it's overloaded with criticism
Hi Guys
I need some help to find a similar indicator to this indicator in this picture , that use Buffers not Objects , to detect the trend direction ...
It's the "3SMATrendFilterPro" for Hector .
Hi There
I Search for the best using of the MA to detect the trend direction , I am using now the Difference between two iMA() , if the difference > a number of pips then Up trend and vice-versa , but it's not an effective way .
please some help .
Thanks .
Hi Guys
I try To call a Custom Indicator in My Ea with iCustom() , But once I Run The Tester This Lines Appear on the Log
2015.01.10 12:07:35.103 EURUSD,H4: 2706 tick events (1056 bars, 3758 bar states) processed within 12480 ms (total time 12496 ms)2015.01.10 12:07:35.103 2010.01.14 23:59...
Good morning everyone.
Do you know where I can find an indicator that calculates the difference between PLUSDI and MINUSDI? I'm talking ADX.
On page codebase I found ADXCLOUD but for metatrader 5, I need for metatrader 4.
If you know where I can download it, attached the link or send me a private...
The 80-20s
http://www.forexmt4.com/_MT4_Systems%20Documentation/80-20%27S%20from%20Street%20Smarts%20-%20High%20Probability%20Short%20Term%20Trading%20Strategies%28Raschke%20&%20Connors%29.pdf
Now my question can someone programm an indicator (MT4) for the daily chart who can mark such Days with a...
Hi, is there a way to show last price on the price scale without the price line on the chart? On the preferences if I unmark "show last price line" it also removes the last price on the scale. Is there an indicator that makes it possible? I just don't want that line to be moving in front of me but
Hi, anyone could help me to find a way to anchor this indicator to the low of the candle, when i click on chart?
Thanks
input string InpName="ArrowBuy"; // Object name//+------------------------------------------------------------------+//| Expert initialization function...
Hi Folks,
I'm a newbie in mql4 programming an I need your held to understand the behavior of an indicator.
i downloaded it from her: HTTP://www.forexfactory.com/attachment.php?attachmentid=829174&d=1320999056
can someone explain me please, why while running a backtest I become different signal...
Hi guys,
I have a problem in my custom indicator. I call CopyRates function for different currency pairs in one time (EURUSD, USDCAD, ... ) with count demand of actual chart and timeframe. In case I've never opened chart with USDCAD (as example), CopyRates always returns -1 and GetLastError...
With #property indicator_separate_window can I add a new sub_window into main chart.
How can I add more than one sub_window?
why will some symbols show correct tp and others not.
some freelancer have programmed a table for us where to enter with SL TP and lot size
but some of the TP on some symbols is correct and then there is others on a sell the TP is higher that than the entry.
where it should be lower
can some one...
Hi everyone, I would like to change my indicator. Can somebody help me to program the indicator like following: The indicator shows the range for the days you can enter till the current day. But I want that the indicator shows me the range of a day period I can choose for myself, like the range from
Hi,
since documentation is rather slim I would like have an explanation of the signature of SmoothedMA in MovingAverages.mqh.
double SmoothedMA(const int position,const int period,const double prev_value,const double &price[])
So lets say I want to use this function to implement my own Moving...
Hi, I have a Question?!
What's equivalent of this code in MQL5?!
for(int i=1;i<1000;i++) { TBuffer[i]=iStochastic(NULL,PERIOD_H1,5,3,3,MODE_SMA,0,MAIN_LINE,i); }
How can we know the protrusion of a Candle from the others , can we use a moving average to do this ? For example with SMA applied to the high prices Like this : if (High[ 1 ]>iMa( Symbol (), 0 , 5 , 0 , 0 , 2 , 1 )) Alert ( "This bar is protruded" ); If there is another method Tell it To us
Hi,
I have a question about zero divide in indicator when it run. What is wrong. Should we use a trick to fix it? Thanks.
int OnCalculate(const int rates_total, const int prev_calculated...
does anyone know of any indicator that can correctly predict overbought/sold levels better than the stochastic , we all know the stochastic is accurate but sometimes it will hit overbought and still continue to go up/down..if you know please reply, thanks
I'm looking for an indicator that makes an up or down arrow above or bellow a candle stick to show which way the trade is going. I'm looking for a very good indicator that doesn't repaint, any suggestions?
I am trying to have a line connect the close value every quarter hour on a 1 minute chart. The line shows on 15 minute charts and above but not on the 1 minute chart.
Below is the code I use. I believe the problem may be in the section labeled //Block for calculating indicator values.
I have also...
I am trying to make an indicator that just draws a line every quarter hour to help me be able to keep track of time better.
Right now it only draws one line at the nearest hour. I am new to mql so any help would be greatly appreciated.
int init() { if(Minute()== 00 || Minute()==...
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
If you do not have an account, please register
Allow the use of cookies to log in to the MQL5.com website.
Please enable the necessary setting in your browser, otherwise you will not be able to log in.