Technical Indicators - page 74

Hi guys, Here you have an indicator for MT4 to see the real ask and bid prices that your broker is appliying to you. Some brokers try to cheat on you by "manipulating" the ask/bid lines on the chart. In my case, I was confused because my limit orders were triggered before the bid/ask line got the...
Hello dont know much about MQL4  just was editing free code to get something what suit me better .... the thing is than i out of idea how to do it.... after clicking on object 16 part of code if (id == CHARTEVENT_OBJECT_CLICK) {       string clickedChartObject = sparam;      if (clickedChartObject...
In stochastic oscillator code at (\MQL4\Indicators\Stochastic.mq4) on line number = 90,117,141 this code exists: pos=prev_calculated-2; My question : similar to other indicator, why is not this? pos=prev_calculated-1; I chose the second method, but there was no change in the results !?
Hi there, I've noticed when looking on certain FX news feeds that whenever someone shares a chart with moving averages on i always seem to have different levels to them (simple MA that applies to the close). They might not be out by much but it will certainly effect my trading and my technical...
I am trying to plot the RSI of an indicator, "xxx.mq4", as follows: #property indicator_buffers 1#property indicator_color1 Red#property indicator_width1 2//---- buffersdouble ExtMapBufferCustomIndicator[];double ExtMapBufferRSICustomIndicator[];int i;string...
[Deleted]
I have an indicator with sound alert, however I can't change it within the indicator, it doesn't give me the option. If I go to Tools-option and try to change the alert sound,I can pick my sound in the drop down menu, but when I click on it, it goes back to default sound. What are my options here?...
Hello there,I am looking for a horizontal line indicator that draw two lines on candle high and candle low,  It should draw lines only on 4:00 hour candle on h1 time frame.  Meaning that it should only draw 1 horizontal line at candle high and one at candle low.  If anybody have such indicators...
Hi I'm facing an challenge to read multiple indicator buffers in my EA. CopyBuffer copies first inidicator but for rest, always returns -1. Here is test indicator code: #property indicator_chart_window#property indicator_buffers 3double _b1[], _b2[],...
Please help. Need a MT5 indicator that can send a notification in case of MAs crossover (e.g. EMA100 crosses above EMA200). Cannot find one... Don't need EA, buy/sell signals or arrows; only an indicator that send a notification to my phone. So just a couple of MAs, MA mode and period... that's all
Are there any free or paid Ringed high and ringed low indicators which scans all currencies and provide a notification?
this indicator show supply demand based on fractals , i need to filter them for example show supply only if fractal is on red candle and demand if fractal is on green candle
i've realized that every time a line is created by the indicator the market changes in direction, so right now i have to keep on going around every chart to see if it has created a line and am missing it,  i was thinking if it has an alert it would be very helpful. kindly anyone thank you! Regards...
Hi,  Does anyone have or can create an alertfor when the ATR crosses its own exponential moving average. Like an arrow onthe cross or something similar. The problem is that when I place the ATR withthe EMA on the chart the lines are very close together and I cannot see themproperly unless I take...
Hello friends, Need help here, How to make mobile push notification from this SupDem indicator Pop up alert already equipped thank you
My trading strategy is pretty quite simple. Indicators: 1. Hieken Ashi 2. 2 -SMA 3. Moving Average Oscillator Do anyone know what indicator i can add to the OsMa to filter out my tradesfor better entries and exist?
Hi all, brand new here and to trading. I currently hold cryptos on procoinbase. There are only 2 indicators on coinbase . EMA13 and EMA26. Both can be great indicators BEFORE, but most often DURING a run eitherway. Can these indicators be created on MT4 or 5? Thanks in advance, Steve
Hi there, I've noticed when looking on certain FX news feeds that whenever someone shares a chart with moving averages on i always seem to have different levels to them. They might not be out by much but it will certainly effect my trading and my technical analysis. I was thinking it could be due to...
I'm somewhat familiar with C# and NOT with C++. I wrote an EMA indicator for Ninja Trader that I'd like to use on MT5 because that is where I trade Forex. Would someone please help me convert this to C++. Period        = 5;                 UpColor        = Brushes.LimeGreen;...
  help me  (1)
Hi  Helping you find the indicator name of image.  
Hi,  I share you a drawing that show scop of life for the global variables If somebody know more about or want to update the drawing, do it :)) Bye Laurent
Hi, do anyone has an indicator that alert when candle pullback below 50ma after 20/50 cross over. I tried to find it on google but only managed to find crossover alert. Thanks yeah.
There's a bug in the indicator I made where most of the times I add the indicator to the graph, the candle colors displayed aren't correct. The bug can be seen in the video below (the second time I add the indicator the colors are right): https://streamable.com/9pvqf Code: #property...
Hey - i have a scanner I've written that scans a lot of symbols for various things and there is something I need to add to the logic but am stumped. I have two points - I need the equation of the line that goes through those two points. I then need to be alerted next time price reaches that line....
Hi all,  Hoping someone can help, ive searched everywhere and cant find a fix apart from deleting everything (my profiles are quite complex id rather not try that just yet) I've been using MT4 for a while now. I have a simple cheap indicator and a free one. I've made no changes to the software and...
Hello, I have been struggling with this problem for too long now. How do I properly get previous two values of an indicator? The code I came up with is below, but it goes out of range on the last candle, and I can't figure it out why....
  Momentum on M1?  (4)
What are the best indicators or methods to see the MOMENTUM for correct trending entry on m1? I think I'm doing quite fine understanding TREND direction, I'm using CCI-20 crossing -100 or 0 or 100 as a TRIGGER, but very often I end up catching end of the move. I'd appreciate any advice on how to
Hello all pro Coders, Im new to coding & just wondering that: IS IT POSSIBLE to code an Indicator that will open a  profile with selected name by clicking on a button created on current chart when the indi is attached ? so when I want to change to the other profile ... I just have to click on the...
Hi, I opened a new topic for the ccanvas clock. So voila, the updated version. please try it , tell me if it works. more improvement on the way (minute, hours,etc....:)) The code is a bit crapy , I need to clean it a bit.... but it works on my computer use: click LMB, realese the button, drag where...
Hello, I have a serious problem with ccanvas If I use mycanvas.Destroy() in OnDeinit() it will reset all my globals variables. If I don't use it I will keep all in same place but I loose all information about my canvas ofcourse. It must be created a new time by OnInit with a new object because it...
Hey, I have some calculations to do on a pre-determined number of M1 bars. (120, 240, 360 or 480 or... based on input) and I want to write my first indicator ever. from the new indicator wizard, I have created the source file. added my codes and functions to calculate my variables. but there's...