Carl Schreiber
Carl Schreiber
  • Information
10+ years
experience
2
products
7
demo versions
0
jobs
0
signals
0
subscribers
Carl Schreiber
Added topic Coloring the Symbols for Entry and Exit
Is it possible to color the exit symbol of a position acc. to profit (e.g. green) and loss (e.g. red) (where how)? Where can I change the color of the Entry and Exit Symbols? MqlTradeRequest does not provide anything like that :(
Carl Schreiber
Added topic Is this a Feature or a Failor?
I want to run the same EA on a MQ- Demo account in one terminal and on 4 different charts M10, M15, M30 and H1. But as soon install this EA on one chart it is removed from the other? here are my helpless attempts to have them all together running in
Carl Schreiber
Added topic Optimization: How do you do avoid passes of meaningless sets (Best Practice)?
Hi, I want to optimize various MAs. only the iMA() 'knows' different methods (sma, ema, smma, lwma) the others (iDEMA, iTEMA, iAMA) don't. So any setup with MaMethod != iMA that varies sma, ema, smma, lwma are meaningless like: enum €ChooseMA
Carl Schreiber
Added poll Is Anybody Interested in Light Text on a Black Background?
  • 47% (7)
  • 47% (7)
  • 7% (1)
  • 20% (3)
Total voters: 15
Carl Schreiber
Carl Schreiber
Ceterum censeo fenestras X non esse ad rem accommodatas
Carl Schreiber
Added topic Am I wrong or is it the new mql5 build 1915?
It's just a tiny little indicator to check the local existence of the bars that is started on GBPUSD H1 of the MQ- Demo account: //+------------------------------------------------------------------+
Carl Schreiber
Added topic Is there a Way to Delete/Remove an Indicator e.g. by deleting the handle
Hi, Is there a way to delete an Indicator that was started in OnInit() by handle = iCustom(..) and then after some 'live-time' in OnCalculate() or OnTick() it is not needed any more and could be deleted to remove it from RAM and further calculation
Carl Schreiber
Added topic Anyone with a Light in my Darkness of CopyBuffer?
I just want to see a simple ema: In OnInit() I create the handle and defined 3 buffers successfully!! In OnCalculate() I want to copy the values into the buffer:    int limit=rates_total-prev_calculated;    int count=(limit> 1
Carl Schreiber
Added topic Windows Oct.-Update next week - gonna be fun!
next week there will be the Win 10 update, but it is already available and there are first testimonials, taken from here https://winfuture.de/news,105358.html (German):     .. files disappeared after the installation of the October
Carl Schreiber
Added topic What is wrong here: Err 4002: ERR_WRONG_INTERNAL_PARAMETER: Wrong parameter in the inner call of the client terminal function" ??
My (win10,64, Mt5 b 1881)  call: .. input int       BB_Period = 14 ; input double    BB_Devi   = 2 ; .. int Hdl_BB; int OnInit () {    ..    Hdl_BB = iBands ( _Symbol
Carl Schreiber
Added topic OpenOrders shows 0 despite I have 13 open positions??
I have on a demo account 13 open positions: but OrdersTotal() shows zero(?):      uint o = OrdersTotal ();      Comment ( "OrdTotal " ,o); How do you get the open positions in MQL5
Carl Schreiber
Added topic Metaquotes Demo-Server is missconfigured ...
hopefully someone of the staff is reading it and start to change it! I tried to debug an indicator with mt5 connected to MetaQuotes-Demo: MetaTrader 5 Desktop Demo. In the option for the debugger I wanted set: And these are the first Bars I get
Carl Schreiber
Added topic Credits and debits - how to catch them in mql5?
Hi, with MQL4 credits and debits and other bookings on the account are cached with OrdersTotal ( "history" ). In MQL5 HistoryOrdersTotal() seems to ignore them. On the other hand to get account information 'knows' only
Carl Schreiber
Added topic script on chart and the first bar..?
Hi, I want to write e little script which needs the first bar of the chart ( Eurusd m1) it is attached to. Naively I use (mql5) iTime: void OnStart ()   { //---    datetime tOne  = iTime ( _Symbol , _Period , 0 );
Carl Schreiber
Added topic The Initial Thread Race
Since now all techn. questions should go to the forum here is mine: The start of an indicator or an EA starts a thread race of various things. Especially if one uses OOP the setup of all the instances of the classes took quite a while - that's my
Carl Schreiber
Added topic IndicatorRemove
Is there a way that an indicator can remove itself? I tried ExpertRemove() which worked as far as I remember for mql4 - but mql5 it does not - do I have to force a division by zero or an invalid array access
Carl Schreiber Published product

Check Online-Status monitors your terminal. If its connection to the server is interrupted for longer time, you will receive an email and/or a push notification, depending on what your settings. You can find out how long the terminal has been offline and can judge the quality of your brokers and/or the provider of your VPS after some time. Remember, the terminal manages and controls your money. Everything hangs in the air if it has no connection to the server! Check Online-Status displays the

Carl Schreiber Published product

Check Online-Status monitors your terminal. If its connection to the server is interrupted for longer time, you will receive an email and/or a push notification, depending on what your settings. You can find out how long the terminal has been offline and can judge the quality of your brokers and/or the provider of your VPS after some time. Remember, the terminal manages and controls your money. Everything hangs in the air if it has no connection to the server! Check Online-Status displays the

Carl Schreiber
Added topic FYI: Unexpected Behaviour of CopyRates
This little piece of code: int OnInit () {    MqlRates r[];    int nR,nB = iBars ( _Symbol ,     PERIOD_M1 );    Print ( __LINE__ , "  nB: " ,nB, "  " ,err( _LastError ));