Technical Indicators - page 14

I wanted to port Kase Peak Oscillator indicator from mt4 to mt5 because couldn't find it by googling. I am new to mql that is why I don't know much about it but I have a little experience with coding. Below I've provided a code which I modified from mql4 using this guide
  Cycle indicators  (241   1 2 3 4 5 ... 24 25)
Are there any indicators/tools/methods for determining cycles? I am interested in finding daily cycles and also finding cycles on shorter time frames as well. As a side note:Does anyone know of certain times of the day when price is likely to reverse its direction? thank you
Hi, I'm trying build a tick indicator and while debugging I run in to this problem. So I create a test code as below. The code below get latest tick data from SymbolInfoTick and CopyTick then compare the time in msc if it is the same tick or not which it should always be the same since it is the
Hi guys, could someone please suggest a command to draw an indicator in foreground? I tried ObjectSetInteger(0,"My-indicator",OBJPROP_BACK,false); but the line is still projected under the candles
Hello, Grasping at straws here, but does anyone know a faster way to get an Objects type than good ol' ObjectGetInteger(chart_id, objname, OBJPROP_TYPE) ? Always seems to be the slowest part of any indicator or script I create. Thanks in advance :)
So, i've coded many EAs, but i'm a bit new on indicators. I made a Donchian Channels indicator for MT5, but i want to make an EMA of the BASE line and i can't find how, i already checked the Custom Moving Average indicator source without luck. So any help would be great, thanks :) In short: how to
Dear Fellows Greetings. I have created an indicator class and following methods are defined to get value on single index bar. //+-----------------------------------------------------------------------------------------------------------------------------+ //| METHOD: GetIndexTSV()
Dear Fellow I am having challenge to figure out why there is 2 bar shift when I send bar[index] to Indicator class. Even after two days for debugging I have failed to find the reason for it. The code and screen shot is attached for ready reference herewith. You will also notice that Hammer/Shooting
Hi Guys I wanna make inside my own custom indicator some modifications to the existing chart & period data, and save the results in my own series arrays (let's say: cust_open[], cust_close[], cust_high[], cust_low[], cust_time[], cust_tick_volume[], cust_volume[], cust_spread[]). so it's technically
Hello everyone, I tried to setup an Expert-Advisor in mql5 trading with several Indicator-Signals using the Signal-Classes from StdLib. I've searched a lot for examples, but can only find complete Trading-Systems with objects of "CExpert" (propably just made with a wizard). But I cannot find any
Hi, I want to create CSignalRSI class object to get signal result. I've create object, but how can I set my symbol and period to get LongCondition() and ShortCondition()? I've created SignalRSI object, but how I can set my symbol and time period to get signal result? SignalRSI = new CSignalRSI;
I am just beginning to learn MQL5, and wonder if I can get your help with a problem I encounter. Lets consider an example in which I want to calculate the median price of the last 10 days, I collect one array of the low prices and other for the high prices of the last 10 days. One could loop over
Hi there, I'm looking for an indicator just like the atas system for meta trader. I see there is a volume order book on (Alt+B) orderbook section which is only working on win10 or above. ( maybe good if it's useable on win 8.1 as well, but not relevant it this case ) So is there any kind of
Hello, In MQL4 there was IndicatorCounted () whose equivalent in MQL5 is prev_calculated. But the big difference is that IndicatorCounted () is accessible from anywhere in the program, whereas prev_calculated is only accessible from the OnCalculate event. Is there an equivalent function in MQL5 to...
How to use Fibonacci time zone
Hello everyone I have a mql4 code who paint an arrow when (CCI shift = 2) and CCI(shift =1) > CCI (shift = 2) and I want to convert it into mql5. In mql4it's possible to include the shift but with mql5, iCCI can only use 4 arguments(no shift) Can anyone help me on how can I do it The mql4 code is
As my first project I've started by trying to convert the following to MT5. // // @author LazyBear // If you use this code in its orignal/modified form, do drop me a note. // // Modified by Bromley study( "TDI - Traders Dynamic Index [Goldminds]" , shorttitle= "TDIGM" ) rsiPeriod = input ( 11
Hi, this is my report on a problem that started to happen with me some days ago and also the solution I found. I hope it might reach Metaquotes so they find a solution to this obvious bug (even though my situation with another of such problems gives me little hope for that). So what happened is that
I have written an indicator that colors candles based on The Strat method. The indicator works as I intended coloring the 1 candles yellow and they 3 candles Magenta. Unfortunately this overrides the chart's default settings for Bull/Bear candles. I like for my Bull candles to be hollow and I am
As title, i've already set INDICATOR_LEVELCOLOR = clrNONE but it still show level color on initialize. for ( int i = 0 ; i < 8 ; ++i) { IndicatorSetDouble ( INDICATOR_LEVELVALUE , i, i + 1 ); IndicatorSetInteger ( INDICATOR_LEVELCOLOR , i, clrNONE ); IndicatorSetInteger (
I'm seeking confirmation regarding the utilization of the Symbol() and Period() functions within custom indicator code, particularly concerning their impact when the indicator is utilized within a Multi-Currency EA. The Multi-Symbol EA is designed to facilitate trading across multiple symbols using
Hello forum members, I'm seeking help regarding text alignment displayed on a candlestick chart. I've encountered an issue where the labels are overlapping with the right candlestick and not displaying properly (please refer to the attached image). Upon reviewing my code, I'm struggling to identify
In MT5, when using channel indicators like Bollinger Bands that fill the space between the bands with color, any text labels or objects placed over the indicator are hidden behind the filled channel bands (See below an example image). However, in MT4, text labels and objects can be placed in the
I was thinking about this, and wondering if there's actually a limitation in the API. Let's say I'm currently on the 5M timeframe, the indicator should only alert on the H1 timefreame with the Alert() function regardless of what timeframe I'm currently on. Is there a way to do this? It seems that
I need help in this case: ERROR: '-' - open parenthesis expected 73: 43 { // Calcular médias móveis int limit = MathMin (rates_total, ( Bars - prev_calculated)); if (limit <= 0 ) return ( 0 ); for ( int i = prev_calculated; i < limit; i++) { EMA9Buffer[i] = iMA ( _Symbol , 0
We know that OnTick() will not do anything in MT5 indicator scripts, and MqlTick is a structure based on tick retrieval (historic ticks, not live). I haven't worked with MQL4, but I believe it was possible to work with live ticks in mql4 indicators, but not mql5, is that correct
[Deleted]
Hello, I have a strange problem when I add Point() in code it causes buffers to disappear from candles for some candlesticks. When i remove point it works fine on all bar. How can i fix this? //+------------------------------------------------------------------+ //|
OBJ_EDIT input is always behind OBJ_RECTANGLE_LABEL what could I do to make it on top ? Help me please. MQL5 Code Picture below
This is RSI indicator in MT5 and I need to write my own one. only change the Symbol. But I can't find where to change from current symbol to another Symbol help me please #property indicator_separate_window #property indicator_minimum 0 #property indicator_maximum 100 #property indicator_level1 30
I am trying to add alerts to Mladen's filtered deviation scaled ma. I want an alert when the ma changes colour from red to green as buy signal and green to red as sell signal. I was able to add the alert code but both the buy and sell alerts triggers at the beginning of a new candle. This is my