Anton Wibowo / Profile
- Information
- noexperience0products0demo versions0jobs0signals0subscribers
Friends
Requests
Add friends via their profile or user search and you will be able to see if they are online
Outgoing
Anton Wibowo
Added topic ERROR :10030
#property copyright "Lucas Mariano Vieira" #property link " https://www.mql5.com " #property version "1.00" input int MAPeriodShort= 9 ; input int MAPeriodLong= 21 ; input int MAShift= 0 ; input
Anton Wibowo
Left feedback to developer for job MQL4 and MQL5 DLL Library for MySQL 8+
Excellent developer, deliver more than expected, very satisfied!
Compliance with specification | 5.0 | |
Efficiency in resolving issues | 5.0 | |
Availability and communication skills | 5.0 |
Anton Wibowo
Left feedback to developer for job Convert MT4 indicator to MT5
Great coder and great personality
Compliance with specification | 5.0 | |
Efficiency in resolving issues | 5.0 | |
Availability and communication skills | 5.0 |
Anton Wibowo
Added topic MQL5 Array - did you forget array subscript []?
Hi there, Bellow code works perfectly in MQL4: void HMA07_LINES_ARRAY( int &HMA07_LINES_ARRAYx[]) { HMA07 b= 0 ; int result2[];
Anton Wibowo
Added topic Multi Symbols Indicator in MT5 - is it possible?
In MT4 - multiple offline charts can be created with only 1 RangeBar indicator which is attached to M1 regular chart For example - created 10 pip RangeBars chart as M21 offline timeframe and 50 pip RangeBars chart as M31 offline timeframe Then
Anton Wibowo
Added topic Why HistoryDealsTotal & HistoryOrdersTotal returns bigger number than actual MT5 History Tab?
Hi there, void OnStart () { //--- request all the existing history on the account if (! HistorySelect ( 0 , TimeCurrent ())) { Print ( "HistorySelect() failed
Anton Wibowo
Added topic MQL5 custom indicator turns to EA
Hi there, I am very new to MQL5 and trying to create custom indicator //+------------------------------------------------------------------+
Anton Wibowo
Added topic How to get current month working day in MQL4?
Hi, How to get current month working day in MQL4? int CurrentWorkDay() { int WorkDay = 0; for (int i=Day(); i >= 1; i--) { if( TimeDayOfWeek(TimeToStr(TimeCurrent() - 60 * 60 * 24 * i,TIME_DATE)) >= 1 &&
Anton Wibowo
Added topic [SOLVED] iCustom trouble
Hello, I am trying to get the values from indicator attached with iCustom: int barx = 0 ; int Loops = 8 ; for ( int x= 0 ; x<=Loops; x++) { ObjectCreate ("TEST" + ( string )x, OBJ_LABEL , 0 , 0 , 0 );
Anton Wibowo
Added topic iCustom TROUBLE - Too Many Extern Variables & repeatedly initialized and deinitialized
Hello, Already read Detailed Explanation of iCustom but still can't make iCustom working. As can see on above picture, ZigZagAdvanced_mj_v1.13 indicator has 66 extern variables. When include all 66 extern variables in iCustom: iCustom (
Anton Wibowo
Added topic Creating Enum from Array?
string TEST_A[ 3 ] = { "TEST_A_1" , "TEST_A_2" , "TEST_A_3" }; string TEST_B[ 5 ] = { "TEST_B_1" , "TEST_B_2" , "TEST_B_3" , "TEST_B_4" , "TEST_B_5" }; string TESTEnum[ 8 ]; ArrayResize (TESTEnum, ArraySize (TEST_A)+ ArraySize (TEST_B), ArraySize
Anton Wibowo
Added topic Data Types in Array
double test[ 3 ][ 2 ] = { { 1.11 , "test1" }, { 2.22 , "test2" }, { 3.33 , "test3" } }; // Result - compiler warnings "implicit conversion from 'string' to 'number'" // 1.11, 0 // 2.22, 0 // 3.33, 0 double test[ 3 ][ 2 ] = { { 1.11 , ( char ) "test1"
Anton Wibowo
Added topic Multiple Data Types in Multi Dimensional Array
int orderstotal = OrdersTotal (); int orders = 0 ; int ordticket[ 30 ][ 2 ]; ArrayResize (ordticket, 30 , 30 ); for ( int i
Anton Wibowo
Added topic How to pass ENUM values to Array?
I am very new to MQL4 How to pass ENUM values to array - ENUMDataInput ? How to programmatically count ENUM size (so I don't have defined ENUMSize=5) ? Thanks for the help. enum MALines{_20= 1 ,_34= 2 ,_50= 3 ,_100= 4 ,_200= 5 }; int
Anton Wibowo
Added topic Help Please - indicator does not refresh on offline chart
Hello, This indicator doesn't refresh on offline chart (range bars). I really don't have a clue how to fix it. //+------------------------------------------------------------------+