Agree. If the context menu of the block contains the Open action, we can work on fxDreema with mobile phone.
Posts made by sktsec
-
RE: Is it possible to add the open option to the right-click menu for mobile devices?posted in Questions & Answers
-
RE: 关于网格挂单里面没有马丁类型的可以选择posted in General Discussions
@jstap
Yes. Just in Chinese the same word (層) is often used for both "level" and "layer". Referring to the price levels for martingale trades. -
RE: 关于网格挂单里面没有马丁类型的可以选择posted in General Discussions
@jstap
He means martingale trading and each layer has a double lot size of the previous layer -
RE: EA that trade without uploading custom indicatorposted in Questions & Answers
@l-andorrà
He probably means to get the line object values as inputActually not all lines are objects
The best way, indeed, is to use some customer indicators that really works with EA
-
RE: take profitposted in Questions & Answers
Do you mean multiplying lowest price of the last 10 candles by 2 ?
Say, if the lowest price, say gold, is 2500, and you target is 5000 in pips?
Moreover, your tp value is calculated after trade. Should this be done before trade ?
-
RE: Metaquotes ID has been deleted!!!posted in Questions & Answers
Sign in again:
Messages -> SIGN IN
-
RE: Buy/Sell Now but open multiple positionsposted in Questions & Answers
Use 5 blocks in a row is good. Nevertheless, you can use the Loop Block
-
RE: cross open candle today no workposted in Questions & Answers
Moreover, the turn on block seems redundant
-
RE: cross open candle today no workposted in Questions & Answers
@MT4stefano
Sell Now Block. Adjust +50.That means add 50 rather than 50 pips
-
RE: MT5 Backtest consistence issuesposted in Questions & Answers
@fblanco
Are you using MT5 any custom indicator ? Maybe you can use Comment Block to output the buffer value and see if this is the problem -
RE: Several EA's, same instrument.posted in Questions & Answers
@Johnster
Different magic number should do the job right. I do this all the time -
RE: I need some help.posted in Questions & Answers
@duanvillanueva said in I need some help.:
Any ideas on how I can make this work?
Try:
USDJPY -> "USDJPY"
USDCAD -> "USDCAD"
USDCHF -> "USDCHF" -
RE: input my indicator name in the input settingposted in Questions & Answers
Suppose indicatorName is the indicator name variable.
The first signal is buy signal and second sell signal.
A MQL4 block simply containingbuySignal = iCustom(NULL, 0, indiatorName, 0, 0)
sellSignal = iCustom(NULL, 0, indiatorName, 1, 0)will get the corresponding signals from indicator named by the variable indicatorName
But the limitation in this case is that the inputs are all set to default value
-
RE: Variables in blocksposted in Questions & Answers
@amiinkiaei
Variables are for your calculationsIf you don't need it, simply neglect it
-
RE: special time framesposted in Questions & Answers
@amiinkiaei
Check
https://docs.mql4.com/constants/chartconstants/enum_timeframesActually, it is the number represented by the string that matters
-
RE: input my indicator name in the input settingposted in Questions & Answers
@l-andorrà
It is useful if you add a MQL block with the icustom function.Especially with default inputs and fixed buffer as signal (e.g. first buffer is buy signal and second signal is sell signal)
In this case, you can test a lot of strategies with just custom indicator name change.
As I remember, there was an old forum someone used similar technique to use many custom indicators as input signals to get final output signals.
-
RE: Close positions at end of the dayposted in Questions & Answers
Did you confirm your input time variable is the string data type ?
-
RE: EA that trade without uploading custom indicatorposted in Questions & Answers
Yes for buy/sell object signals created by your custom indicator.