Alberto Tortella
Added topic problem when market is closed
Hi all, I have the following error when market is closed I tried to fix placing the followng code at the beginning of the expert, but it doesn't work. void OnTick ()   {       if ( SymbolInfoInteger ( Symbol ()
Alberto Tortella
Added topic CFD expiration date
HI all, how can I recall CFD expiration date indicated in properties window? I tried with SYMBOL_EXPIRATION_TIME but I seem it's not correct. Thank you
Alberto Tortella
Added topic reason for error 4756
Hi all, I'm trying to open a sell stop order with the following parameters       request_3.action= TRADE_ACTION_PENDING ;       request_3.type= ORDER_TYPE_SELL_STOP ;  
Alberto Tortella
Added topic Virtual alloc error with custom symbol generator
Hi all, I have a problem with an indicator that generates a custom Symbol . When I apply the indicator on a chart, in some cases I have the attached error. Could you explain what kind of errori is it?   I didn’t find discussions or articles
Alberto Tortella
Added topic previous bar Sunday
Hi all, could you suggest a method to detect if previous bar is Sunday? Thank you
Alberto Tortella
Added topic avoid notification @ log in
Hi all, is it possible to avoid the mobile notifcation when I log in to mql5.com? Thank you
Alberto Tortella
Left feedback to developer for job Indicator drawing previous daily/weekly highs and lows with related buffers
Alberto Tortella
Added topic ORDER_TIME_DAY not respected
Hi all, I'm testing an expert on D1 time frame in which I wrote the following condition to open pending orders request_type = ORDER_TIME_DAY I see that in some cases pending orders are not deleted at the end of the day. What could be the reason
Alberto Tortella
Added topic error extracting session closing time
Hi all, with the following code I'm trying to extract the session closing time for DE30.pro (OANDA).    int session = 1 ;    MqlDateTime DateTimeStructure ;       TimeToStruct (time_local,DateTimeStructure);
Alberto Tortella
Added topic Trying to import this daily .csv
Hi all, I'm trying to import the attached file. Daily frequency. When I click on OK nothing happens. Is there a problem in the format? Thank you
Alberto Tortella
Added topic buy and sell arrows colors
Hi all, is there the possiblity to distinguish the buy arrow color that opens a new position (or pending order ) from the the buy arrow color that closes as sell position? Thank you
Alberto Tortella
Added topic problem with bool input in tester
Hi all, in an expert I modified an input variable as follow (from false to true) Then I compiled the expert as usual. When I lauch the strategy tester in the journal tab I still see the variable as false. Where could be my mistake? Thank you
Alberto Tortella
Added topic problem with iCustom indicator using strategy tester
Hi all, I'm trying to test an expert containing this custom indicator int DMI_handle; double DMI_spread[];    ArraySetAsSeries (DMI_spread, true );       DMI_handle = iCustom ( _Symbol , _Period
Alberto Tortella
Left feedback to developer for job Lot size calculator improving
Alberto Tortella
Added topic is MT5 more memory consuming then MT4?
Hi all, I'm comparing MT5 vs MT4 memory usage. I load same graphs with same experts and indicators on a MT5 and on a MT4 platform. For MT4 platform memory usage is 81 MB amd for MT5 platform memory usage is around 180 MB. Could you confirm that MT5
Alberto Tortella
Added topic problem with DateTimeStructure
Hi all, at row 5 I have the following error: "Day_of_week" cannot convert ENUM. When I print int Day_of_week is 0 (today is Sunday). Could you help me? Thank you!    datetime time_local= TimeTradeServer () ;      
Alberto Tortella
Added topic download doesn't work
Hi all, I'm trying to download the following utilty but the download is not available. When I click on "I have MT4" nothing happens. Thank you
Alberto Tortella
Added topic Problem with Off Quotes
Hi all, I'm trying to manually close a sell order but I have an Off Quotes result. I push yellow key to close by market. Position size is 2.9 and I'm trying to close 0.7. Open price: 4450 Stop: 4500 Bid: 4409.4. I don't understand where is the
Alberto Tortella
Added topic problem with data import
HI all, I'm trying to load the attached file. When I select it from Browse in History Center the window remains empty. Where is the problem? Thank you
Alberto Tortella
Added topic Stop Level for Gold
Hi all, how can I set the minimum entry level if the stop level in the specs is zero?  I would like to write something like this to avoid error 130: Entry_Long = Max(Entry_Long,Ask+MarketInfo( Symbol (),MODE_STOPLEVEL)) Thank you