Stefano Cerbioni
Stefano Cerbioni
  • Information
no
experience
1
products
3
demo versions
0
jobs
0
signals
0
subscribers
Stefano Cerbioni
Added topic cicle for problem
hi guys  i have  a  script , this script  read a txt file (with this function , i create a global array aGLineReadHSprd[9999] ) //+------------------------------------------------------------------+
Stefano Cerbioni
Added topic rectangle draw by hand return X Y + position
hi guys  if i draw  by hand  a rectangle  is  possible by script   have  a coordinate in chart  and dimention ?? anyone  have some example  thankz
Stefano Cerbioni
Added topic COT data questions
hi guy i look this  page  https://www.cftc.gov/MarketReports/CommitmentsofTraders/HistoricalViewable/cotvariablestfm  in this page i saw Dealer_Positions_Long_All  --------------->  commercial Asset_Mgr_Positions_Long_All
Stefano Cerbioni
Added topic Array resize question
hi guys , i have  a Array bidimentional , i not  have  clear  some particular of Arrayresize . My Scenario: i  have a bi dimentional array    Array[column][row]  the  row  is  not a constant
Stefano Cerbioni
Added topic help example function must have body why ?
hi guys  i try to run a example in EA https://docs.mql4.com/check/isdllsallowed #property strict #import "user32.dll" #import int      MessageBoxA( int hWnd, string szText, string szCaption, int nType); // Global Variables
Stefano Cerbioni
Added topic Memory Mapped file without dll and persistent file
hi guys  i try to  read in MT4 a  Memory mapped file , i look this  example https://www.mql5.com/en/forum/142721 i have created  a C#  memory mapped file  this is a code using System; using System.IO; using
Stefano Cerbioni
Added topic file search in folder FILE o_O
hi guys , i have in folder FILE  this txt, 2016.txt , i  want , when people find 2015.txt  return simply error, for do that i use  this code int YearCtrl  = 5 ; Print ( "I ANNI  SONO QUESTI--- " +
Stefano Cerbioni
Added topic overload with ArrayBsearch why ?
hi guys  i try to search in array bidimentional a string but return me  error 'ArrayBsearch' - no one of the overloads can be applied to the function call     why ? int start()   {    string nameFile=
Stefano Cerbioni
Added topic again read File where mistake ?
hi guys  i read this part https://docs.mql4.com/files and i try to read  a file  i use this code  for do that  but  nothing  i tryed  in all mode possible i think, but  probably  escape somthing i try
Stefano Cerbioni
Added topic how to write text under or up candle
hi guys i try to write text  under or up a candel i  try with this code but write in left up corner o_O        ObjectCreate ( "Demade" , OBJ_LABEL , 0 , Time[ 0 ], (Low[ 0 ]));
Stefano Cerbioni
Added topic path file problem
hi guy  i have in my terminal \MQL4\Files\dataCOT\Finance\forexsymbol.csv  file  csv  i  try to load  with this script  but  return me error in path not exist a file o_O how  is  possible ? int
Stefano Cerbioni
Added topic memory mapped file question
Hi  guys  anyone , have  example of memory mapped file  ?? thnakz at all
Stefano Cerbioni
Added topic stringtodouble not work
hi guys  i have this  script //+------------------------------------------------------------------+
Stefano Cerbioni
Added topic crash script overflow ?
hi guys  anyone  now  why this is  script  crashed ??? //+-----------------------------------------------------------+ //| MT4 CUSTOM
Stefano Cerbioni
Added topic when start period ?
hi guys , suppose i have  a script , and  i want  run it  only  one  time in period example  if  i set M30 at a start  of 14.30 start  after restart at  15.00, but if  i set M15  start
Stefano Cerbioni
Added topic how compare a time frame ?
hi guys  i try to compare  the time frame  for exclude 3 type of time frame  but not  work i tryed also with use  a second like but nothing , whats wrong ? sinput ENUM_TIMEFRAMES TimeFrameChoice= PERIOD_CURRENT ; //
Stefano Cerbioni
Added topic if and or value required ?? hwy?
hi guys  i have this part of script return me error '!=' - l-value required    but  why i used it sinput ENUM_TIMEFRAMES TimeFrameChoice= PERIOD_CURRENT ; // Timeframe void OnInit ()   { if ((TimeFrameChoice!=
Stefano Cerbioni
Added topic question about external program
hi guys  exist some tutorial or simple explae for comunicate MT4 with external program ? example i  want create a  indicator  attach over  3 or 4 cross and if appen somthing in cros send me data  in my external program
Stefano Cerbioni
Added topic set time frame when add indicator
hi guys  exist a command for set timeframe  on thefly when i add indicator ? example when i write script  and clic over play in metaeditor  in default , it set me H1  but if i want set M30 ? on the fly ? i look
Stefano Cerbioni
Added topic date to integer or long ?
hi guys   is correct  write  in this mode?? long   RslTime ; int ManyTime= 2 ; RslTime = Hour()*ManyTime;