Carl Schreiber
Carl Schreiber
  • Information
8+ years
experience
2
products
7
demo versions
0
jobs
0
signals
0
subscribers
Carl Schreiber
Added topic spooky spots
I have made a simple indicator (attached) that detects a simple ma change. It calcs down to i>0 (min==1) sets the buffer i-1 (min==0!!) the open[i-1] which would be a possible enter-price. This simple indicator creates after some hours of running
Carl Schreiber
Added topic Have you seen that picture?
Hi, I created an indicator to display volume + spread as 90° turned text objects in its separate window. At the beginning everything looks perfect!, but after a while (some hours on the m1 chart) it gets mad look at the attached snapshot. Can it be
Carl Schreiber
Added topic For the moderators of this page ...
Hi would it be possible to place the search field right beside Topics in the headline, may be with the hint to seek the key words first
Carl Schreiber
Added topic What means the first number in the Expert and Journal log?
Hi, I just realized that if I Print("something") I read in the Expert-Jounal: 0        09 : 50 : 28.626     myEA EURUSD,M1: something What means that 0 at the beginning? Here all the lines (so far)
Carl Schreiber
Added topic an new terminal start-option: /skipupdate ??
Hi, I normally start my terminals in portable mode by a short-cut: path..\terminal.exe /portable. Yesterday I saw in Windows' TaskManager-Command-Line-Tab: path..\terminal.exe /portable /skipupdate. The terminals were started automatically after the
Carl Schreiber
Added topic Mt4 on WindowsServer versus KVM and/or Linux+Wine
Hi, are here some people that can tell us (me) about their experience with running mt4 on (vps) either KVM with Windows || Linux+Wine or directly Linux+Wine compared to either WindowsServer: crashes, updates, ( backtest -) speed, .. Thanks in
Carl Schreiber
Added topic bug or feature?
Hi I am experimenting with the good old CCI and enabled to see its 'hidden' buffers in the MarketWatch: #property indicator_separate_window #property indicator_buffers 4 #property indicator_color1 LightSeaGreen #property indicator_color2 clrNONE
Carl Schreiber
Added topic Is there a bug in "iMAOnArray" ?
Hi, after I wasn't able to eliminate some differences I had closer look at iMaOnArray and I programmed a simple example. I created a buffer (sma(n)-sma(2n)) and let iMaOnArray create another sma(2) which I calculated my self too and displayed the
Carl Schreiber
Added topic Troubles with iMAOnArray(..) ??
Hi, I realized that the mt4 built-in function iMaOnArray(..) seems not to update the average with the new ticks of the actual bar. It seem to calc. only at the beginning of the bar - quasi at open - and then the average is not updated each time a new
Carl Schreiber
Added topic hidden feature in b670??
Hi, I was looking at the source code of the Traders Dynamic Index. First of all I cannot start this indicator by the debugger (- the green button is grey and so disabled??) BUT I can attach it to a chart and it works perfectly!! OK - Now I did this
Carl Schreiber
Added topic very strange behaviour of the compiler ??
Hi I coded a function in a script ( with #property strict ) and it compiles and works perfectly! Now I pasted just this function in my EA which compiles with no error before the pasting(!) it is 'strict' as well and there is so far no call of this
Carl Schreiber
Added topic IsTesting() and IsOptimization() ..
Hi, does anybody know how IsTesting() and IsOptimization() are connected: 1) Not connected: if IsOptimization()==true =>  IsTesting() == false ? 2) Connected: if IsOptimization()==true =>  IsTesting() == true (too) ? Which one is
Carl Schreiber
Added topic place the volume as text at the bottom of the chart?
Hi, I want to place the volume of a bar as a (text-)number at the bottom of the chart, below the bar and always 5 ticks off the bottom. That means 1) if the next bar appears this volume-number should shift 1 bar to the left and 2) it should not move
Carl Schreiber
Added topic my vps-provider flies at 99,997% of light-speed ;)
Hi, I recently realized that the clock of my vps is delayed by ~30 seconds per hour. After some searching I found the reason. Acc. to Einsteins's fomula ;) delay² = 1 / ( 1 - x²/c²); // c = speed of light, x = speed of the server-farm   
Carl Schreiber
Added topic The Login-Rectangle at the Bottom of the MT4
Hi, as everybody I see the rectangle at the bottom line of the terminal. Now I find it sometimes on the right corner sometimes on the left corner. One broker shows a green triangle above a black one, the other broker a green one above a red one. If
Carl Schreiber
Added topic intersting MT4-link ;)
Hi, answering the question of   deysmacro   I saw this link ( https://www.mql5.com/en/articles/1540 ) between his question and the first answer: File Operations via WinAPI Environment MQL4 is based on the conception of safe "sandbox"
Carl Schreiber
Added topic new indicator structure ..
Hi, after I realized a problem of the way mt4 is painting a second indicator in the same indicator sub-window: If you apply the ATR-14 at the chart (extra sub-window) and you pull this ATR again from the Navigator in this window and define a
Carl Schreiber
Added topic writing TickData and TickVolume
Hi, has any body experience with s.th. mt4 does not like to talk about - there are some discrepancies. In the MQL4 Reference I read under long Volume[]: and long Volume[] Series array that contains tick volumes of each bar of the current chart
Carl Schreiber
Added topic OrderHistoryTotal()-Results on a new account ?
Hi, The Doc. of mt4 tells me: int   OrdersHistoryTotal();   Returned value :     The number of closed orders in the account history loaded into the terminal.     The history list size
Carl Schreiber
Added topic mt4 stops painting a modified ATR-indicator ??
Hi I modified the default ATR.mq4 just a bit (4 lines, marked green and: // NEW): //+------------------------------------------------------------------+