@traderthomas
Probably because you hide the item before remove the "tick" at the input box. Just recall the item and remove the "tick"
Best posts made by sktsec
-
RE: Updating codeposted in Questions & Answers
-
RE: Transformation of profit/loss into price levelposted in Questions & Answers
Idea:
x = Money/lot size
a = Money per tick
b = tick sizeamount = b(x/a)
-
RE: Any experienced freelancers available?posted in Questions & Answers
@ceeganlaub
Try to reach @roar. He can offer paid services and we all know he is one of the best in this forum -
RE: play soundposted in Questions & Answers
@l-andorrà
There is a block to play sound, doesn't it work for you?According to MQL4 document:
The file must be located in terminal_directory\Sounds or its sub-directory. Only WAV files are played.Just create the directory "Sounds" and put the wave file there.
-
RE: What do you use to backtest?posted in Questions & Answers
@GTOAT777
Tradingview is trending. It seems quite indicator based which is not my style. Sure the strategy development is easy and user experience is good.Trading Station is good and reliable, but LUA is too difficult for me to write practical EA.
Some may use MultiCharts, but it was once a nightmare to me. It is easy to write a simple program, but not really something you would want.
Python sounds good if you use AI. Believe me, it is very time consuming to develop a simple AI project for trading. You need a lot of effort to 'guess' what hypothetical model would fit the market.
Zorro-trader claims that it can trade with AI using C programming readily. However, no way I can find it practically work. Much marketing + poor SDK/support
-
RE: How to get level of price of channels?posted in Questions & Answers
https://fxdreema.com/shared/sGEWJfiV

Getting the center line value can be done by selecting its name. But getting its channel level values seems not straightforward. Further knowledge on the function/formula for the channel width is needed.
-
RE: Avoid Range conditions for trend following setups onlyposted in Questions & Answers
It is a big question. Whether the price has a trend is a random variable itself.
-
RE: News filterposted in Questions & Answers
@jstap
Yes. The indicator is not smart enough to auto adjust the DST itself -
RE: List of things to cause EA to not work properly?posted in Questions & Answers
@James-d
I use MT4 but I think MT5 may be better in terms of backtest and response speed. -
RE: Quicker way to edit and previewposted in Questions & Answers
Tick for the first option
It will ask you every time where to download -
RE: Web Request - $EVZ (barchart.com)posted in Questions & Answers
How can you request data from barchart.com ?
-
RE: Backtesting resultsposted in Questions & Answers
Of course backtesting can alway get a good result.
Why the backtest have all 300 long trades without any short trades ?
Simply because the period is in bull trend.
-
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: 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: 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: Is it possible to add the open option to the right-click menu for mobile devices?posted in Questions & Answers
Agree. If the context menu of the block contains the Open action, we can work on fxDreema with mobile phone.
-
RE: Selecting Individual Profit instead of total profit tradesposted in Questions & Answers
For each trade --> Modify variable
https://fxdreema.com/shared/kSEHL5AMd
In this case all trades are considered to get the latest open trade (position).
You can also modify Group Mode and Symbol Mode to filter out what you want
-
RE: Someone Please Explain This Strange EA Behaviourposted in Questions & Answers
@funmi
Are you sure it is the EA that trigger the undesired trade ?Happened only once ?