Codes

RSI with BB for MetaTrader 5

RSI with Bollinger Bands calculated on it

Daily/Weekly HL for MetaTrader 4

Previous day&week High/Low

RSI with BB for MetaTrader 4

RSI with Bollinger Bands calculated on it

2 Days Breakout for MetaTrader 4

Follow daily movement after 2 days breakout

ThreeBreaky for MetaTrader 4

Multisystem of Volatility Breakout

Aroon EA for MetaTrader 4

EA that use Aroon indicator

Forum

MT5 - Force indicator refresh (like MT4)

Hello guys, I want to know if there is a method on MT5 to force indicator refresh/reload without re-initailize them one by one. I explain better: in MT4 if I copy a different version of an indicator in the Indicators\ folder, then on my platform, in Navigator panel I right click and do "Refresh" all

Serious problems with local networks MT5 Agents

Hello everybody, I always used 3 PC in my local networks for MT5 agents. Since some weeks for me it's totally impossible to use them anymore. I updated all versions, uninstalled and reinstalled services: nothing helps. 3 PC are in 3 differente locations so it's surely not a networking problem. (1 of

MT5 unable to connect at all!

Hello, I'm writing here because I really do not know how to solve my problem. Starting from Sunday I'm unable to connect my MT5 platforms from my home network. By other networks or mobile 4G it works perfectly. I tried restarting the router, using different DNS from both my ISP and also publics

Obtain ready and coherent data from other timeframes in MT5

Hello community, I'm having some strange behaviors in MT5 when working with indicators that use other timeframes for calculations (ex. Pivot indicators). Most of time they works fine on all symbols, but on some of them (in this particular case XAUUSD), data retrieved are not valid and so, all

Feedbacks on products received but no stars in title

Hello, I thought it was better to write to Service Desk, but due to the fact there are no subject about my problem, the only option is to post it on the forum. Basically I only want to understand why I received a feedback on one of my product but in the title bar stars remain gray, seems like the

ChartSetSymbolPeriod during iCustom calls

Hello, I'm having some issue while using in an EA indicators that use ChartSetSymbolPeriod(0,NULL,0) function . I used this function in some of my indicator because it's the only way to trigger indicator recalculation without waiting a new tick but: In case of I call multiple of these indicators of

OnCalculate during weekend MT5

Hello, I always had issues when creating indicators in MT5 that access data from different symbols and timeframes rather than current. From documentation I found this in a lot of places. For Expert Advisors and indicators, it is better to use the event model of handling. If during handling of

Avoiding MT5 update to modify Include\Trade\ files

Hello, due to obvious reason related to buggy metaquotes libraries (that they seems not want to fix them) every time that my MT5 platform get updated library are restored to "original" with all related problems. Is there a way to avoid MT5 to update libraries? Or better, is there some way to invite

Zooming with +/- keys in strategy tester MT5

Hello, I found a strange behavior on MT5 strategy tester . In my MT5 platform, if I open a chart and use +/- keys (both keys on "main" section or in the "number pad" section) it zooms correctly but, when I run strategy tester I'm able to zoom only using keys on number pad. On my main PC is not a

Conditional assignments (?then:else)

Hello, I discover (watching on some EA/Indicators) that there is a conditional assignment command that is not written in documentation (or maybe I've not found that). Very probably most skilled people know it and use it everyday. int a = 1 ; string Test = a>= 0 ? "Positive" : "Negative" ; I