Marco Strazzeri
Marco Strazzeri
Friends 1
Marco Strazzeri
Added topic Accessing account with investor permissions ( Without using MT4 )
I need to access my account using investor password, connecting directly to my broker's servers via a non- MQL4 programming language ( it will be done externally, Metatrader 4 is not involved ). Is there any kind of documentation on how to connect
Marco Strazzeri
Added topic Accessing different buffers for same custom indicator
I'm working with an external indicator and access to different buffers is needed. For example, a Bollinger-Bands-like indicator has three buffers ( one for the central line, two for the external ones ). How to access those data? It seems it is not
Marco Strazzeri
Added topic Accessing account data from outside
Is there a way to read the account history from outside ( for evample via investor password ) like MyFxBook does
Marco Strazzeri
Added topic Binary Brokers Accessible from MT4 EAs
I'm looking for a broker which gives easy trading access on EAs ( binary dot com was offering a MQH library to connect on their APIs time ago ). Is still there a binary broker which offers this easy access to trading/account history
Marco Strazzeri
Added topic update prices for a specific symbol
I have an Expert Advisor which is operating on multiple pairs. The problem is that when i close positions, from time to time i get repeated 136 errors ( off quotes ). I'm getting Bid Ask through MarketInfo; since RefreshRates() is totally
Marco Strazzeri
Added topic Bad Bars reading
I'm using an Expert Advisor which is attached to a chart. Every new bar it has to real the last 5 bars of ALL timeframes of the same symbol. It comes that sometimes, on the other timeframes, the last bar ( index=1 ) results equal to its preceding bar
Marco Strazzeri
Added topic Open file outside MT4 while EA Writing on it
Is it possible to have access to a txt file while an EA is writing on it ( for example opening it with Notepad )? Actually i'm using the FILE_WRITE flag in FileOpen function . Tried with "FILE_WHARE_WRITE" but returns 5008 error constantly
Marco Strazzeri
Added topic Year() returning bad value inside OnInit() - Indicator
Here is the code i'm using int OnInit () {    Print ( "init Year: " + Year ());    //---    return ( INIT_SUCCEEDED ); } //+------------------------------------------------------------------+ //| Custom indicator
Marco Strazzeri
Added topic Set focus on OBJ_EDIT element
Is it possible to programmatically give the focus to a OBJ_EDIT element placed on chart? If yes, how to do it? Thanks
Marco Strazzeri
Added topic OBJ_EDIT always on top?
Is it possible to set  OBJ_EDIT graphical component always on top? I'm currently able to show it on top for existing component ( for example it overlays a trendline ) but it doesn't work for new components ( the user is able to draw a new
Marco Strazzeri
Added topic WindowPriceMax and WindowPriceMin, wrong values from time to time
Hi, placing an indicator which has it's own window ( Momentum indicator ) on a Forex Chart the value returned by WindowPriceMax(1) looks incorrect sometimes. The returned value should always match with the top-right value written on the indicator's
Marco Strazzeri
Added topic Dynamic lot calculation function not working for CFDs
I'm successfully calculating lot size given a certain risk and certain stop loss double getLot( double risk_per_trade_percent, int stopLossTicks) {    double actualBalance;    actualBalance= AccountBalance ();
Marco Strazzeri
Added topic MQL4: Decrypt a message which has been crypted by another language
I have seen that encrypting a message using Java ( or another language ) gives me an encrypted text which is partially different compared to the same message encrypted using MQL4 ( of course, the key and the encryption algorithm are the same ). Do
Marco Strazzeri
Added topic [MQL4 Indicator Dev] How to attach an indicator to the current chart?
Hi, i'm writing a custom indicator: because it uses a Heiken Ashi indicator internally, i need to show the Heiken Ashi on the chart on which my indicator is attached on. How can it be done using mql4? Thank you 
Marco Strazzeri
Registered at MQL5.community
Marco Strazzeri
Added topic Question for Pros
Hi there, im looking for a way to draw a chart indicator by getting user data in a special way. Like we do with Pitchfork, i need to be able to give some points to the indicator through some mouse clicks on the chart. Is there any way to do it? I was