DeltaElectronics
DeltaElectronics
DeltaElectronics
Added topic How to hide a CLabel
Hello to everybody; I am new to MQL5 and I am trying to experience in making a simple form, for now. My goal is to hide a CLabel , once c reated it and added to the form. In the Create() method bool CFormDialog::Create( long chart, string name, int
DeltaElectronics
Added topic Subscribe for a signal
Hello to everybody... I want to subscribe for a particular signal; I want to know how to do. It's a stock exchange signal
DeltaElectronics
Added topic Identity Certificate vs. ID Card
Hello to everybody, My goal is to register myself as a seller, but it is not clear for me which is the exact difference among Identity Certificate and ID Card. Better if an Italian user could reply me. Davide 
DeltaElectronics
Added topic Closing a deal
Hello to everybody, My goal is to write an EA which react in a particular way once I close a specified deal; i.e. suppose I have just closed a specified deal by the following code       ticket = PositionGetTicket (i);
DeltaElectronics
Added topic CTrade.PositionClose()
With reference to this page: https://www.mql5.com/en/docs/standardlibrary/tradeclasses/ctrade/ctradepositionclose , I want that once a deal is just closed whit this chunk of code: int posOpened = PositionsTotal ();    for ( int i= 0 ;
DeltaElectronics
Added topic Pointer to a funcion in MQL5
Hello to everybody, My question is quite simple and I want to know if MQL5 supports the pointer to a function paradigma exactly like in C++... is yes where can I find an exhaustive tutorial ? Regards
DeltaElectronics
Added topic Buy Operation not Ok
Hello to everybody, I try to run this chunk of code double price = 0 ; double sl, tp; price = SymbolInfoDouble ( Symbol (), SYMBOL_ASK )+offs*point; sl    = price-stopLoss*point; tp    = price+takeProfit*point;
DeltaElectronics
Added topic Check order status
Hello to everybody, I have a little problem, because of my little knowledge of MQL5 language... Once I open an order, using OrderOpen() of Ctrade class, now I want to know to check its status at every tick; i.e. I want to know if it is still opened
DeltaElectronics
Added topic ASK vs. BID
Someone of you, could be so kind to explain me which is the differencie between ASK and BID quotations, and how these quotations are related whith the values I get from CopyHigh and CopyLow mql functions ? How could I use these values in my trading
DeltaElectronics
Added topic Price for pending orders ASK vs. BID
Hello to everybody... Even though I know very well the art of the computer programming, I do not know almost anything about coding for trading online... My need now is to get price for pending orders so, if I well understood  the differencies
DeltaElectronics
Added topic Is there an error in this page ?
Hello to everybody: Pls. look at this link, https://www.mql5.com/en/docs/constants/tradingconstants/enum_trade_request_actions#trade_action_pending in particular at this chunk of code which I write again: #property description "Example of placing
DeltaElectronics
Added topic Writing an EA from scratch
Hello to everybody; I am new of trading on line, even though I know very well computer science and programming; because my goal is to write an automated MQL5 trading robot, I am asking you tutorials which explain from scratch how to place and monitor
DeltaElectronics
Added topic Import a .csv data for BakcTest purposes in MQL5
Hello, I downloaded -csv trade datas from a broker and now I want to import them for running my BackTest EA directly from the graph, instead of opening the .csv file as I am forced to do now. It is the same way I have done in MQL4. But I have any
DeltaElectronics
Added topic Polymorfism in MQL5 seems does not work.
Hello to everybody, I tried to execute this simple example about polymorphism (https://www.mql5.com/en/docs/basis/oop/polymorphism), copying and pasting the code in my MetaEditor; but when I tried to execute it does not work because it alwasy call
DeltaElectronics
Added topic Datas for BackTest
Hello to everybody... I need forex data for backtest purposes; where could get them
DeltaElectronics
Added topic MetaTrader 4 download
Hello, I have the need to download MetaTrader 4 for development purposes.... I tried this link https://www.metatrader4.com/en/automated-trading/mql4-ide, where I got the file mt4-setup.exe; but once clicked on it, and finished the installation
DeltaElectronics
Added topic Read historical Forex Data
Hello, I noticed that in order to read data from an attached chart, I can use CopyHigh() function , for example. Everything is OK when I try to get chart datas of a recent, for example datas of May 3 2018. But when I try to get chart data of an older
DeltaElectronics
Added topic Compile error: "some operator expected"
Hello to everybody, I am getting mad in dealing with array passing to a function . I have defined a function called clear() , with the following prototype void clear( string &[],int); and defined in such way: void clear( string
DeltaElectronics
Added topic MathTrunc does not work
Hello to everybody... I would like get the integer part of a double number, so I guessed to use the library function MathTrunc()  (https://www.mql5.com/en/docs/standardlibrary/mathematics/stat/mathsubfunctions/statmathtrunc) but such function is
DeltaElectronics
Added topic Declare a Pointer to an int variable
Hello, I have written this simple chunk of code    int *quotient; But, when I try to compile, I got the following error: '*'pointer cannot be use. Is there a way to declare a pointer to an 'int' value 
12