Technical Indicators - page 80

HOw does one test a demo version of an indictor or utiity product in the strategy tester?
My VWAP indicator stopped to work recently, after an update. I noticed that the volume_tick array returns 1 in the last iteration. In the next iteration the before values are right. I coded the follow indicator to show the problem: #property copyright "Copyright 2018, MetaQuotes Software Corp...
It may seem like a silly question but I haven't actually seen any explanation of this anywhere - what is the difference between an indicator plot and an indicator buffer in MQL5?
Welcome, please someone with ability to reprogram this Multitime Frame Rsi indicator to show real time value changes (within a bar) not only after closed bar. I use it to show rsi H1 value on 1D chart which is usefull all other indi i found does it in a different way. truly Thanks for help
Hello, I want to detect the relative minute candle number within a superior period. For example: Using the 1M timeframe, and the superior timeframe of 5 minutes. The first minute candle will be labelled 0, the second 1, the third 2, the forth 3, and the final candle 4. No matter what period or...
Hi my friends, I'm new to programming indicators, and I'm having some problems, hope you can help me. I'm trying to do a simple indicator of squeeze in bollinger bands. The indicator will go blue when the bollinger is outside keltner channel and red when its inside (all or just one line). The...
Hi, I want to place a moving average on heiken ashi chart in MT5. Couldn't figure how to do that. Help will be appreciated.
i learn to code mql5 and trying to create indicator. i know there is tons indi on this web that i can use. But i just want to learn how to code it. Here i try to draw histogram and line based on average of 3 high - low value of 3 candles. But i got this weird look on my script. Could some body...
[Deleted]
Someone please help. datetime time=ObjectGet("name",OBJPROP_TIME2); gives a warning - possible loss of data due to type conversion. Why is it so? Thanks in advance 
Hello everyone! Please bear with me, I searched everywhere and tried to fix this for many days now. Still no luck. When adding handles to other indicators from within custom indicator by calling either iMA(), iCustom or Trend.mqh class, the indicator often shows junk arrows when changing...
Hello. Can someone give me guidance ? I would like to test out some HTF indicators that come with various other indicators but , it comes up blank when I add to the chart. It's the same for all HTF indicators I try to use , not just one. Please let me know. thanks...
  Vertical line.  (66   1 2 3 4 5 6 7)
Hello! Started to make an indicator that will draw a line between two pips in time and price, the way the line is drawn is like this: for ( int w=limit;w<rates_total;w++) SupportBuffer[w]=low[s1]+speeds*(w-s1); Everything is fine, but sometimes the time points can be in one candle, you get a
Fractal Adaptive Moving Average (FRAMA) Fractal Adaptive Moving Average Technical Indicator (FRAMA) was developed by John Ehlers. Ehler's Fractal Adaptive Moving Average (FRAMA) | Indicators https://www.metatrader5.com/en/terminal/help/indicators/trend_indicators/fama Optimal parametrs to MT5 EA ?
Hi everybody, let us have timeframe M1 and the following simple indicator: #property indicator_buffers 1double What_a_waste[];int OnInit() {  SetIndexBuffer (0, What_a_waste);  return 0;}int OnCalculate(const int rates_total,                const int prev_calculated,                const datetime...
Hi, If you enter a Stochastic with inputs 9,3,3 in both tradingview and mt4 you get different results. Does anyone know how I can adjust MT4 to match tradingview ? Here is the out of the box code for MT4 Stochastic:...
Hello, I am looking for an indicator from a screenshot below. Any one knows it? Settings: MaMetod=2 MaPeriod=6 MaMetod2=3 MaPeriod2=2 Regards, Valerii
Hi, I do understand about iMAonArray. To my Understanding if physically, the Moving Average Apply To is set to First Indicator Data which is the Stochastic. Someone send me this and i'm wondering how do i code this as his Moving Average is in the Stochastic Window But his Apply To is set to close
  MT4 TO EFS  (1)
I am looking for someone to convert a custom mt4 indicator to EFS so can run on <name removed >
  Digital ACSTrend  (427   1 2 3 4 5 ... 42 43)
Hi all I started this thread to gather in one place the ideas for the next generation of ASCTrend. This is necessary because this new instruments require appropriate testing as they are new. It is not possible to use new instruments in older strategies without verification. So here it is the thread....
hi,  I need help on this indicator. I tried the iMAonArray, it is working but some how it doesn't indicate on all the point. MA is inside the Stochastic. EMA12 and EMA5. When both EMA at OB, it will indicate in the chart and same goes for OS...
Since sometimes it happened to me that I tested an indicator in the strategy tester and it didn't seem to repaint, but when used in live it repainted because for example it was using future values, I would appreciate if some expert coder could tell, reading the code, if this indicator repaints...
Hi, everyone. When I was testing my own EA, I found BB MACD indicator behaved good in demo account. The default value in BB MACD indicator is: FastLen = 12 SlowLen = 26 Length = 10 barsCount = 400 StDv = 2.5 So here is my question: what's your opinions about the values's setup in 1H time frame?...
Hello, I need help about indicator. 1) I have an indicator with the name file "test.mq4". 2) I load /link it with a chart EURUSD, all is good 3) now I do the same as before (line 2) 4) I got 2 identical indicators in the same chart 5) question : how to stop the second loading before it run ?? I did
  Pips Counter  (1)
Hi guys, can any1 help me for create a simple indicator? I try to search but not found anything. I need to create a indicator that show in windows the pips differenze from last candle to Tenkan (ichimoku).  Like this..  Thaks Alot guys!
Hi Does anyone know MT5 version or can Translate it. Atached is the MQ4 version That can be opened on the Meta Editor. Thanks
Hi everyone, Im new to mql4 & I got some problem working with object property. Let's say I want to access to property "PRICE1" of Rectangles of all open charts if availalble. My code looks fine :) & have no errors but there is something wrong & It doesnt work. I think it may be these lines: .......
Hello, I have been looking for an MT5 indicator which would give an alert when price crosses upper or lower bollinger band. The alerts i prefer are an arrow/dot on the chart, pop up and an push notification. Something like this famous MT4 indicator BolliToucher would be ideal.  <advertising...
Guys, can you recommend any good logic/indicator for determining swing points marked on this chart? Strong downtrend, seeing correction up, possible reversal into uptrend, but then it just changes direction and continues down. RSI usually between 30 and 60 so nowhere close to being overBought. Would...
  BB-Fibs  (3)
New at programming, need help programming a Bollinger Bands - Fibonacci Indicator. It is like a regular BBs but instead of using standard deviation as the measure of volatility, a Wilders Smoothed ATR is used in its place. The middle band remains the same. UpperBand3:= MidPoint + (factor3 *...