Carl Schreiber
Carl Schreiber
  • Information
8+ years
experience
2
products
7
demo versions
0
jobs
0
signals
0
subscribers
Carl Schreiber
Added topic VPS is not available:
Maybe someone can help? I MT5-user wants to use the VPS but what ever he tries the migration is deactivated (grey) and the option is not available: https://www.mql5.com/de/forum/362854/ :       He even checked and replaced his
Carl Schreiber
Added topic Common Folder in OnInit() and the Dbugger/Indicator => 5002 error??
Is there a mistake of mine (b.2615) or is it impossible to access the Common folder from the debugger and/or indicator? This little piece of code at the end of OnInit(): Oninit() { ...   string t = TerminalInfoString (
Carl Schreiber
Added topic ORDER_TYPE_SELL_STOP_LIMIT or ORDER_TYPE_BUY_STOP_LIMIT
Just a question to be sure: If I launch an ORDER_TYPE_SELL_STOP_LIMIT   or an  ORDER_TYPE_BUY_STOP_LIMIT pending order how do I properly get the relevant prices by OrderGetDouble (..) the example is a ORDER_TYPE_BUY_STOP_LIMIT so that the
Carl Schreiber
Added topic Debugging disabled (EA, included mqh are in the right place!!)
How do I motivate the Strategy-Tester again to debug my program? While I was debugging the Editor suddenly wasn't re-acting any more (everything was greyed) and I closed the debug-window, the editor and the terminal - after the restart of the
Carl Schreiber
Carl Schreiber
America is dwarfing itself under the President with the battle cry "Make America great again."
Ceterum censeo fenestras X non esse ad rem accommodatas!
Carl Schreiber
Carl Schreiber
Ceterum censeo fenestras X non esse ad rem accommodatas!
Carl Schreiber
Added topic StringFormat & PrintFormat
Hello, does anyone know how to store the number of 'integers' of a double value including leading zeros in a string variable? This is how it works with the decimal places: int digs = 2 ; string fmt = StringFormat ( "%%.%df" ,digs); string strVal =
Carl Schreiber
Carl Schreiber
Ceterum censeo fenestras X non esse ad rem accommodatas
Carl Schreiber
Added topic How can I copy all the data from the Datawindow of several previous bars in the clipboard??
Hi, How can I copy all the data from the Datawindow of several previous bars in the clipboard?? I place my mouse e.g. on top of the H1 bar from yesterday 09:00 (2018.11.26 09:00:00). Ho do I get the data of this bar (time, OHLC,vol,..,ind1,indi2, ..)
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