... ... ...
Posts made by miro1360
-
RE: SuperTrend with Macd Divergence and Semafor EAposted in Questions & Answers
you see, how good it can be done
it just need your effort 
-
RE: SuperTrend with Macd Divergence and Semafor EAposted in Questions & Answers
it depends on indicator itself ... when colors are in buffers, than red color is one buffer and green color is another buffer ... you can use condition block where you compare this buffer with EMPTY_VALUE ... like:
red buffer != EMPTY_VALUE
and this means that red signal is active ...
try it first as separate conditions (plot arrows on the chart, or vertical lines to be sure, that condition is working) ... and at the end connect all conditions togetheryou can also use another block for there indicators with colors ... like Indicator Appear block ...
I had in forum example with this block and it is no more here
... -
RE: SuperTrend with Macd Divergence and Semafor EAposted in Questions & Answers
hi,
as beginer you should start with simplier EAs and understand how fxdreema is working ...
start with examples and maybe few tutorials in forum (which are not the best
) and go and look for many replies here in forum ...
but for your strategy:
1- Super Trend is indicator? if so, you must download it into your indicator folder, than add it to fxdreema "my Indicators" and after that you can use it in conditions (you can trace it with Trace block to be sure, that buffers are working)
2- divergences for MACD are in fxdreema blocks, it is easy to use
3- semafor is alto indicator? than do the same as in first step ...use mostly condition blocks ...
-
RE: Problem with saving the robotposted in Questions & Answers
try more times
sometimes it gets stuck ... -
RE: Close Chart with EAposted in Questions & Answers
with custom code block, with this code:
ChartClose(0);
0 is chart ID (can be 0, 1, x)
there are many functions, like ChartFirst, or ChartNext, using with you can find right ID for close based on some conditions (like specific text in chart)
https://docs.mql4.com/chart_operations/chartnext ... -
RE: Custom EX4 indicator is not working with fxDreemaposted in Questions & Answers
input type must be enum for these:
Use this period to extimate peak ...
Create terminal alerts on buy/sell signals?
Send email alerts?
Send mobile push notifications?
Output to journalhow to do these enum, try to look in forum, it was discussed, or you can eventually share this ex4 indicator (without your email and key)
-
RE: Which module put first?posted in Questions & Answers
On Tick section (event) - first blocks are checked on each tick
when is first block "No trade" - it is checked on each tick ...
when is first block "Once per bar" - it is also checked on each tick ...
these blocks cost small amount of resources and are working as filters ... but other blocks like complicated indicators used in Condition block can cost you more resources ... and when you use "Once per bar" block before them, you can save resources
but it must be your strategy (strategy which will not depends on each tick) ....normally you can do it like this:
No trade
Once per bar
Condition1 (with candle ID=1)
Condition2 (candle ID=1)
Buy/Sellor:
No trade
Condition1 (candle ID=0)
Condition2 (candle ID=0)
Buy/Sellsecond example is using candle ID 0 (current candle) and you should not use Once per bar because you want check each tick (on current candle) ...
-
RE: Which module put first?posted in Questions & Answers
Hi, it depends on your strategy, first can be a lot of blocks ...
-
RE: independent buy sell ordersposted in Questions & Answers
try to use logic from this martingale example and edit it for your own application:
https://fxdreema.com/shared/tti114Nae -
RE: Can't delete opbjectsposted in Questions & Answers
set it in project options (at bottom enable to no):

-
RE: Big challenge... for me at least: Count candles crossed by a horizontal lineposted in Questions & Answers
@moreirajbn said in Big challenge... for me at least: Count candles crossed by a horizontal line:
passes occurred, but I wasn't able to implement that.
which candles do you mean by "cross"?
-
RE: Moving to another VPSposted in Questions & Answers
it were old comments for contabo, in 2013, you can see that somebody commented with similiar experience in 2017 as me ... I tried them in 2016+2017 fully years ... parallel was here runing AWS free (until free ended) with 1gb ram and it was permanently restarted every two weeks, and was so sloooooow
contabo was restarted 1x per 2 months ...
and contabo sent me emails before this restart (it was some changes in their infrastructure or PS change, etc)...anyway guys, this is my experience with contabo, I can not guarantee nothing in general (I am not working for them), only tell you my experience
.... for 20USD/month such speed still be unbeatable 
-
RE: Moving to another VPSposted in Questions & Answers
I am very satisfied with contabo.com VPS with SSD performance, exactly this one:
https://contabo.com/?show=configurator&vserver_id=185
huge RAM, six cores and speed of SSD, unbeatable
... they have reasonable prices + licensed windows (you need check box while order), speed of VPS was really really fast, I never get problems and it past it has runned >15 metatraders with EAs at once and still have resources
without problems (I am with them > 2 years) ... previous I tried a lot of VPS and all was slow, maximal 2-3 metatraders and resources of VPS was on 100% ... amazon is not cheap ... and is slow for that price ..
I am talking about VPS up to 20USD/month ... -
RE: Moving to another VPSposted in Questions & Answers
note that some VPS providers are thieves and after few months of use they decrease parameters of your VPS, like speed of CPU, HDD speed ... and this will cause overload in CPU time (because CPU must working harder) and all will be veeery slow
thieves give you offer for their faster VPS program as a solution
(note, that you will be see the same parameters in system, but application speed will be slower) ... -
RE: How Do I Uploadposted in Questions & Answers
ex4 file is working as EA, mq4 file is source code ... you need to have ex4 file too
-
RE: 'toDigits' function does not seem to work anymore.posted in Questions & Answers
use it with Symbol() ... but note, that admin can change it anytime


