Forum

Possible to get the buffer values from another indicator on the chart

Hi, is it possible for my indicator to get the buffer value from another indicator which is placed on the chart? I don't want to call it with iCustom(...) because the parameter for this indicator is unknown or can be changed in the meantime. I only want to get the values I can see in the data

Is it possible to call an indicator out of another indicator

Is it possible to call an indicator from another indicator so that the graphic objects (rectangles and lines) of this indicator are drawn. It would be best if this could be done with a call. So not just the pure query of a buffer value

Virtual Tester doesn't react to buttons

Hi, I am trying to test an expert which has some buttons on the chart f.e. to pause buying new positions. But if I am running a virtual test the ea doesn't react when I press the button. Is there any possibility, to use this features also during virtual testing

Scrollbar at IndicatorWindow

Hi, I have programmed an indicator that is shown below my chart (with indicator_separate_window). This indicator shows a table, but there are more lines then the high of the window. So how can I add a scrollbar in a simple way? I saw, this article https://www.mql5.com/de/articles/2379 but I am not

VPS Server - need many metatrader accounts

Hi, I am using a VPN Server. How many metatrader accounts can I run on my server? I need six accounts, is this possible? What are the hardware requirements? I

Order of my charts changes everytime after reboot

Hi, how / where can I change the order from my underlyings ( open Charts ) after rebooting my metatrader

Getting values from free indicator from the market

Hi, is it possible to get the buffer value from an indicator which I have downloaded from the market? If I use want to open the indicator than I am getting the message "cannot open file '... .ex4' [2] "

FileMove with portable version

Hi, I am having a portable metatrader version on my pc. Now I am searching for a way of renaming my file and therefore I tested the FileMove-Funktion. So the file is created on my local path at D:\.. But the copy is created at C:\Users\nbh\AppData\Roaming\MetaQuotes\Terminal\Common\Files What can I

Creating an average line from a mtf buffer

Hi, The values from the lines are in buffers. How can I calulate and draw an average line from each line

iBarShift first price every YEAR

Hi, how can I get the first price of every YEAR out of my D1-Quotes? I tried something like that, but it isn't working datetime tm = StringToTime ( StringConcatenate ( "D'" ,TimeYear(iTime( NULL , PERIOD_M1 ,i_mn1)), ".01.01 00:00'" )); iLastClose = iBarShift( NULL , PERIOD_D1 ,tm);