Carl Schreiber
Carl Schreiber
  • Information
8+ years
experience
2
products
7
demo versions
0
jobs
0
signals
0
subscribers
Carl Schreiber
Added topic a Kling on Every (Re-) Load of a Web-Page, Anybody else too?
Hi, since this morning I get on every (re-) load of any web-page a kling - while I defined to be noticed only on special occasions (see my notification tab): ‌ ‌For quite some time I haven't got any of these "klings". It seems that they all have been
Carl Schreiber
Added topic ATTENTION: mt4 b1052 (27.2.2017) editor 1545 (17.2.2017)
Be aware that the a.m. editor seem to have problems with file names like test_v0.1.mq4. Sad to say, but I would not recommend anybody to update :( I created a new file test_Names_v0.1 that seems to be ok. Then I saved it as test_Names_v0.2 - in the
Carl Schreiber
Added topic Is This a Bug, a Feature or a Lazy Broker?
Hi, I need the quotes of the m1 bars together with the quotes of the bars of the current chart to go back for "LookBackBars" (if possible) of the actual timeframe Mt4 now offers 'me' for this 3 'data-streams': time[] (or Time[]) from Bars-1 to 0
Carl Schreiber
Added topic no debugger for mt4-indicators??
Please can s.o. check? I loaded the simple ATR.mq4 in my mt4.editor (mt4 b 1045 editor: b 1526). As the debugger button is grey I pretend to save it under a different name but used the same name and confirmed overwriting the original file. Now if I
Carl Schreiber
Added topic Direction of OnCalculate() in MQL4 and MQL5
Hi, thinking about being forced to switch from MQL4 to MQL5 I would like if someone can confirm this. In MQL4: int OnCalculate ( const int rates_total, // oldest: time[rates_total-1] .. most recent: time[0]
Carl Schreiber
Added topic MqlTick, Time - No fractals of seconds?
Hi, Is it correct that live the time of MqlTick does not show fractals - the last one from Friday doesn't show any? Fractals would mean that each new tick would have a different timestamp (fractal) than the previous one, while otherwise several ticks
Carl Schreiber
Added topic Exists a Function to Know Whether a Class ia used by an Indicator, Expert or a Script?
Hi, Am I correct, that there is no function or system-variable that tells a class whether it is called by an indicator, expert or a script
Carl Schreiber
Added topic How Can I Find the Program-Name from within a Class-File?
Is there a tricky way for a class to get the program-name which is calling/using/instantiating this class. If I use __FILE__ I get the filename of the class - which is useful too of course - but not the the name of the running EA or indicator or
Carl Schreiber
Added topic Incremental Bollinger bands calculation ...
Hi, due to a paper linked here by Fernando (thanks!) I tried to use this by indicators. First I wanted to compare it to the original - to check whether it is correct or weird. First I compare the 'selfmade' BB (Tomato, sma dotted) against the
Carl Schreiber
Added topic Paypal is blocked?? Any one with some information?
Hi, Yesterday I asked Metaquotes to send me my money via Paypal. After I gave this order Metaquotes writes: "Paypal doesn't answer" and therefore my money 1) hasn't been sent to Paypal and 2) is blocked on Metaquotes side as they are still waiting
Carl Schreiber
Added topic iADX-MQL4 <=> iAdx-MQL5
Hi, I just realized in MQL4 iADX is defined as: double    iADX (    string        symbol,         // symbol    int
Carl Schreiber
Added topic True: No way to use the Wingding-Symbols by Comment?
Hi, Is it true, that mt4-Comment() cannot show the Wingdings (while it show e.g. the greak letters like: α,β,ø,µ while others like δ ε appear as d e) on the chart in an easy way like: string OK   = WingdingToString( 252 )
Carl Schreiber
Added topic Open[], High[], .. Volume[] equivalent in MQL5
Hi, is there an equivalent for Open[], High[], .. Volume[] of MQL4 in MQL5? Actually I am using Volume[i] in OnInit for a volume-indicator in a separate chart-window to set the max. and min. int OnInit () {    ...    while
Carl Schreiber
Added topic StrinFormate, double and initial zeros..
Is it true that I cannot define e.g. for Comment(..) leading zeros  before the decimal point. As I want to show percent-numbers which range from 1.1% to 999.9% and I want to be able to see mat the chart (with Comment(..)) 001.1% .. 009.9 %
Carl Schreiber
Added topic Hex to color ???
Hi, I am building a colour scheme for me and I was using this to get the Hex-code of e.g. yellow 0xFFFF00: But if I use this in mql4 I get clrAqua (light blue): Comment ( "Clr-Schemes: " + ColorToString ( 0xFFFF00 , true )+ "\n" ) Of course the
Carl Schreiber
Added topic Switching TF in the Terminal causes sometimes(?) questionable results - any idea what to do?
Hi, (preliminary comment: absolutely no line of code was changed during the following procedures!!) I wrote in OOP a simple ema based on M1 for which I can define its TF and its paints it ema lines on the chart. Here you see TF of the ema and the
Carl Schreiber
Added topic is It True that ...
.. this does not work as the ArraySize is zero: //within OnInit() of an indicator:          int i= 0 ;          SetIndexBuffer (i,Buff_A);
Carl Schreiber
Added topic Showing the Ask-Line :(
Hi, do I miss something? Hi I enabled in the chart properties "Show Ask-Line" and set the colour of Ask-Line to "White" but it is not shown
Carl Schreiber
Added topic Matringale or Grid-EA Optimized by AI or NN - does this exist?
Hi, I think it would be quite interesting to see the outcome of Martingale- or Grid-EAs which were optimized by Atrificial Intellingence and or neural networks . As for Martingale- or Grid-EAsthe the crash risk is very high - I would like to know
Carl Schreiber
Added topic Is it true - there is no way ..
to get the name of the class (like EnumToString()) except by the file name - which fails as soon as you have (to have) two or more classes within the same file