Forum

Windows in Desktop

Is there some documentation about arranging windows within the desktop? I'd like to put the DOM to the left of my chart, for instance. Thanks

OnTradeTransaction: Is deal being closed?

I'm using OnTradeTransaction() to monitor trades. Is there a way to tell if the deal is being opened or closed? Right now I'm filtering the callbacks using trans.type == TRADE_TRANSACTION_DEAL_ADD Thanks

Add symbol to Marketwatch

How can I programmatically add a symbol to the marketwatch? Thank you

Indicator Bars in EA OnTick()

Am I doing this right at all? I have an indicator (it's BrainTrend2Sig from the codebase). It outputs a buyarray[] and a sellarray[] In my EA I first link to that indicator indicator_handle= iCustom ( NULL , PERIOD_CURRENT , "BrainTrend2Sig" ); Then in OnTick() I call for the arrays. double

Chart Object Property for Select/drag

What property of an object (a chart object) makes the object available for dragging with the mouse (the red dot in the upper-left corner)? Thanks

mql5 storage

I'd like to use the storage but I don't see the activate command on the Navigator menu: https://www.metatrader5.com/en/metaeditor/help/mql5storage/mql5storage_connect I have logged into the MT5 community (at least I think I'm logged in -- how to tell)? Thanks

zoom the marketbook ladder

Is there any way to zoom the ladder in the DOM to bring in more prices? Thanks

call OnInit() from the chart

So I have an indicator and I print some stuff to the chart in OnInit(). It doesn't need to occur regularly. Is there a way to call OnInit() from the chart? To reload the indicator I guess. I was thinking Refresh would do it, but no. Thanks

Android mobile app doesn't retain chosen symbols

My mobile app keeps going back to some default list of symbols after I delete the ones I don't want. It's a new symptom in the past week or so. Thanks

OBJPROP_BGCOLOR not applied

This code never seems to apply a background color to my text OBJ_LABEL . The background is always clear. Am I missing something? Thanks. //+------------------------------------------------------------------+ //| test.mq5 | //|