lippmaje
lippmaje
Software test engineer & MQL coder
pm me for projects
lippmaje
Hat den Code Log4mql(mini) MT5 veröffentlicht
A light header-only version of Log4mql that provides standardized logging.
1 158
lippmaje
Hat den Code Log4mql(mini) MT4 veröffentlicht
A light header-only version of Log4mql that provides standardized logging.
lippmaje
Hat den Code Log4mql (MT5) veröffentlicht
A logging library similar to Log4j but for MQL.
334
lippmaje
Hat den Code Log4mql (MT4) veröffentlicht
A logging library similar to Log4j but for MQL.
lippmaje
lippmaje
How to display the error text of a runtime error, MQL 4/5 compliant:
 
#ifdef __MQL5__
#include <errordescription.mqh>
#else
#include <stdlib.mqh>
#endif
 
int OnInit ()
  {
   ResetLastError ();
   // do something that might set an error
   if ( _LastError )
     {
       Print ( "error: " , _LastError , " " ,ErrorDescription( _LastError )); // error: 4802 Indicator cannot be created
       return INIT_FAILED ;
     }
   return INIT_SUCCEEDED ;
  }
 
And the errordescription.mqh (needed for .mq5) you get from here:
https://www.mql5.com/en/code/79
lippmaje
Hat das Thema Carl hat seinen 8888-ten hinzugefügt
Schmeißt mal ein paar Daumen für unseren Moderator, Leute. 👍
lippmaje
Hat den Code iRSIOnArray for MT5 veröffentlicht
Header with iRSIOnArray function for use with MQL 4 or 5 code.
339
lippmaje
Hat das Thema Carry Trades hinzugefügt
Ich wollte mal fragen, ob ihr Swap-positive Positionen nur wegen ihres Ertrags führt. Was ja laut Definition dann Carry Trades wären. Gibt es Strategien , die darauf basieren? Die Threads, die man zum Thema findet sind ja schon etwas angegraut. Also
lippmaje
Hat das Thema Frage zu Optimierung hinzugefügt
Hallo, ich optimiere gerade einige Parameter mit dem Strategietester und habe zwei Richtungen, in die ich weiter optimieren könnte. Die eine Richtung wäre besserer Profitfaktor bei weniger Trades. Hier habe ich einen Faktor von um die 2 erreichen
lippmaje
Hat sich auf MQL5.community registriert