Carl Schreiber
Carl Schreiber
  • Information
10+ years
experience
2
products
7
demo versions
0
jobs
0
signals
0
subscribers
Carl Schreiber
Added topic How do I change the description of an arrow?
Hi, I want to place arrows and want to write the exact price where they are placed at the description-field of the objects. How can I do this? The only thing I found is to place text-objects and they have without any further interaction a description
Carl Schreiber
Added topic WindowScreenShot: How many pixels (size_x) does have one candle on a chart with chart_scale=5 (biggest) and others?
Hi, does anybody knows ho many pixel in x-direction (size_x) does have one candle of the chart with chart_scale 5 (and 4,3,2..)? Is there a way to calculate the size_y out of the High[iHighest(..)] and Low[iLowest(..)] ? Thanks in advance, Gooly PS
Carl Schreiber
Added topic Errors after hibernation ??
Hi, I wrote a little M1-indicatior (here simplified): int start()   {    int limit,i, n= 0 , b=- 1 ;    static datetime lstQts= 0 ;    //---- last counted bar will be recounted    int counted_bars=
Carl Schreiber
Added topic trading functions: local or remote answers?
Hi, does anyone know where in general the 'answers' of the trading function are stored: eitheralready hold locally in the client-MT4 or remotely at the server? Especially: OrdersTotal(). Thanks in advance
Carl Schreiber
Added topic HowTo change Server (rescan and new connect/login) by an EA?
Hi, is that possible and how can it be done, that an EA checks 1) the latency to an server check the latency of its actual server mybe just by beg = GetTickCount (); ord = OrdersTotal (); latency = GetTickCount () - beg; decides: this os ok - do
Carl Schreiber
Added topic CompareDoubles - a 'security question'
I have read avout the problems of CompareDoubles. But would it be safe (and faster) NOT to use the coorect way: if( NoramlizeDouble(doubleValue,8)<0.0) ... if I only check the sign: if (doubleValue < 0.0 ) Alert ( "negative" ); else Alert (
Carl Schreiber
Added topic Backtest -> Expert Properties -> Optimization -> Limitation ..?
Hi, Do the Limitaions of the Backtest Expert-Setup window (it has three tabs: Testing, Inputs and Optimization) really work (and how)? I tried to use e.g. "Maximal drawdown". :( So I first enabled "Maximal drawdown" and then tried
Carl Schreiber
Added topic The Spread of the Backtests
I have seen and read a lot of commets about the spread (durig weekends, bougus server, ..) of MT4. But what I have not found is an answer to to that question: If I start a backtest - e.g. ~10'000 tries: is the spread taken once at the beginning this
Carl Schreiber
Added topic s.th that is equal is not reconized as equal ??
Hi, I am sorry for this rather ridiculous piece of code - but it drives me crazy. To save mainly backtest time I want to execute a function only once with in a bar not every tick so I wrote: // PERs[] = {PERIOD_M1, PERIOD_M5, PERIOD_M15, ... //
Carl Schreiber
Added topic mysterious compiler errors?
Hi, I (MT4 (from Boston Cons.) build 402) have written an EA that actually trades quite ok. Now I wanted to rewrite everything but the compiling fails with Errors that I don't understand! First Error message that shows up several times: ')' wrong
Carl Schreiber
Added topic double quotes needed ??
Hi, I want to use " kernel32 .dll" to read and write files. (from http://www.m-t-a-w.com/indicatorsandea/File%20Read%20Write.mq4) from other than the MT4-default-folders. So far so good. But now I want to define the path to the files to be
Carl Schreiber
Added topic how to change the "show Grid" default Test-Setting?
Hi, does anybody know, how I can change the dafeult setting of chart that are started by the tester (isVisualMode()). I would likt to start the new chart without the grid (uncheck "show grid") and with some other colors more darken one like
Carl Schreiber
Added topic time offest of the historical data from Metaquotes.
Hi, when I started to download historical Data MT4 informed me that I'm going to download data from Metaquotes, while my account is with Active Trades. ok, but from my broker I know the time-off of his data, but what is the time offset of the quotes
Carl Schreiber
Added topic How do I delete Label-Objects, can't get rid of them :(
Hi, I finally managed to run a variation of the support and resistance Indicator, where I place a price-label at the bar with either a high or a low forming a resinstance or a support: ...        //---- Upper Fractal
Carl Schreiber
Registered at MQL5.community
Carl Schreiber
Added topic another surprising Windows 7 feature (there are no bugs!)
Hi today all of a sudden this happens on my notebook with Win 7 beta: terminal.exe is runnuing my indicator, but after I closed I closed both and restarted terminal I clicked on the editor icon to start it, it coems up and consumes 100% of its core
Carl Schreiber
Added topic MT4 lost my custom indicators ??
Hi, today I started MT4 (223) the first time on my new notebook with Windows 7 beta 64 Bit. At first MT4 shows me the (custom) indicators and experts from the folder: C:\Users\cas\AppData\Local\VirtualStore\Program Files (x86)\MetaTrader
Carl Schreiber
Added topic Can I read from my EA a single Value from a customer-indicator => ExtMapVariable :) ??
Hi, as far as I have found all values that a customer-indicator can return has to be returned 'within' a buffer. But what if I want to calculate one value on the whole chart like: init() { SetIndexBuffer(6, myBuffer); } start() { .. double myVal =
Carl Schreiber
Added topic MarketInfo() - bug
Hi, I think, I just found a bug. To re-produce just install and insert as Custom-indicator, end and re-start MT4 - you'll find the window empty. Now just set faulty to false and feel better. I used this for my indicator in a separate_window
Carl Schreiber
Added topic Name-Formate of ExtMapBuffer1, ...
Do I need to keep the names of the buffers originally named by MT4: ExtMapBuffer5[] or can I replace the names e.g. according to the color they are paintend like smaBlue[] ?? Or does this mix up MT4? Carl