I replied you because I think where is your main issue (server scammers).
Posts made by miro1360
-
RE: on timer of on tick chartposted in Questions & Answers
-
RE: High cpu usage on server but not on Laptopposted in Questions & Answers
Whats your server? Is that dedicated or shared? Shared, right?
There are tricky hosting services which offers you fast xeon but in the reality they are hosting too many users on one machine via some virtualization technology - so everything is slow even if you think that you got fast server
They are using other tricky techniques. They offers for you a fast server for a low price. Everything goes so far good, until they decide to decrease the power of your hosted server
What happens after that? Your metatrader is than slower, using too much CPU. If you decide to run even more metatraders with EAs, the CPU time will be exceeded by your activity and after some time they contact you back with the message: "Hey, your CPU time was exceeded and the CPU power of your server will be limited. Therefore consider buying the "PLUS SuperFast Overpriced" plan where you get more power for your apps." - They will limit you even more, into an almost unusable state, to put a pressure on you for buying faster plan and pay them more money
Of course, if you contact them, they will beat you with standard deceptive phrases. -
RE: Is this forum read by the administrator?posted in Bug Reports
@unicornmadness said in Is this forum read by the administrator?:
...
Is there a backup plan?
Will we lose everything?You must back up all your EAs in MQL4 or MQL5 code. You will have these EAs in code. This code can be edited by an experienced programmer. Nothing more, nothing less

-
RE: Is this forum read by the administrator?posted in Bug Reports
I don't know. we'll see what the future bring

-
RE: Custom MQL Code MathRoundposted in Questions & Answers
https://docs.mql4.com/constants/environment_state/marketinfoconstants
create new variable lot_step, and use this custom code function:
lot_step = MarketInfo(Symbol(), MODE_LOTSTEP);there are other lot values which can be achieved:
lot_min = MarketInfo(Symbol(), MODE_MINLOT);
lot_max = MarketInfo(Symbol(), MODE_MAXLOT);you can get them all and create some custom math for your purposes
-
RE: How to use ZigZag [advanced]posted in Tutorials by Users
because you messed up it completely
... I told many times, and I repeat myself once again and again: zigzag is not simple for beginners (or not coders)
... and I'm banging my head on the table, why the hell I got this idea to create the zigzag thread, because instead of explaining how the zigzag works I do the whole project for people from scratch
...https://fxdreema.com/shared/8Xeio059c



Anyway, this is my last reply for this ZigZag thread. Everything was covered here into details with many examples ... If you does not understand zigzag, read it once again, and once again. Notice also how important are block IDs - order. If you failed, give a break for zigzag and do anything other. Come back after a few days and read everything again and give a new try.
-
RE: I Want Add This Indicator in FXdreema ?posted in Questions & Answers
because some TMA indicators are complicated and are not created for the signal purposes ..
-
RE: Custom MQL Code MathRoundposted in Questions & Answers
for 0.1 format, do this:
TP1 = NormalizeDouble(TP1, 1); -
RE: Custom MQL Code MathRoundposted in Questions & Answers
try the code like:
TP1 = NormalizeDouble(TP1, 2); -
RE: I Want Add This Indicator in FXdreema ?posted in Questions & Answers
instead of TMA use the integrated MACD with weighted price:

-
RE: Is this forum read by the administrator?posted in Bug Reports
MT5 is offered because a lot of things are working. Sometimes is an error produced, but a lot of things is ok.
I think, his support email is mostly for problems with the site itself, like something is down, blocks are not working or showing right an so on.
I experienced other web projects (not for EAs) which worked as a ticketing system. You paid for month or year payment for technical support, even for the current unsolved bugs (if the member was not able to deal with them). The basic questions were solved like one answer per day, your respond and the answer next day or even worse. If a question was more complicated (staffs team decided
) the custom solution was offered with additional payment (not cheap :D).
I don't think this is what you (or other members) want to see here
-
RE: Is this forum read by the administrator?posted in Bug Reports
@isp00rt said in Is this forum read by the administrator?:
That's not the solution. This is a commercial site. If I pay for a service, I want that service! I don't expect all other clients helping me!
You paid for the tool as is, there is no paid helping service
Admin is working on rough bugs immediately, but something is not possible. Most random errors are produced by MT5, especially after updates from the side of MT5. I think your issue will not be solved, because other people are using the blocks as they are (the counting pips problem). You can try to find an workaround, or use what works (MT4). I think, you found some help in your 400 posts, people did their best what was possible in their free time, for free. -
RE: How to use ZigZag [advanced]posted in Tutorials by Users
H1 and L1 are not future points, they are past points ... candles are marked 0,1,2,... from left (0 is the most recent candle) to the right (past candles)
-
RE: How to use ZigZag [advanced]posted in Tutorials by Users
the whole project is about this what you asked ...
variables:
var_zz_H0_ID, var_zz_H1_ID, var_zz_H2_ID
var_zz_L0_ID, var_zz_L1_ID, var_zz_L2_IDif you compare them as this:
var_zz_L0_ID < var_zz_H0_ID, if the condition is true, then you know that L0 is the last zigzag leg (pointing down), and you know where is L1
if the condition is false, then you know that H0 is the last zigzag leg (pointing up), and you know where is H1ID is not the price, it is ID of specific zigzag candle ...
prices are variables without ID (var_zz_L0, var_zz_H0, ...) -
RE: Tutorial Loop [advanced?] - find and save specific value from indicator historyposted in Tutorials by Users
as I told you, is not that simple ... something like this:
https://fxdreema.com/shared/GmgFkC3sd
(RSI must be imported in My Indicators)
it can be simplified into Custom Code block, this is only demonstration how it can be done from blocks

... note, that parabolic sar is repainted indicator, the previous spot is sometimes repainted - some inaccuracy can appears ...
maybe between blocks is some logical mistake, I have not tested it deeply



-
RE: Tutorial Loop [advanced?] - find and save specific value from indicator historyposted in Tutorials by Users
you can do that with a few variables, it won't be so easy as one block ... at least a few blocks ...
-
RE: Tutorial Loop [advanced?] - find and save specific value from indicator historyposted in Tutorials by Users
meantime some functions were added, you can do it easily ... import RSI into My Indicators and set the Modify Variables block as this:

(I have not tested) .... -
RE: error include custom indicator but mq4 compile fine?posted in Bug Reports
0_1556803966818_trend-direction-amp-force-index-smoothed-4.mq4
I had not installed MT4 so I edited the code in text editor without compiling test
I changed tf_cu to PERIOD_CURRENT, now it should compile rightenum in meta code are just INT values, you can read everything here:
https://docs.mql4.com/basis/types/integer/enumeration -
RE: error include custom indicator but mq4 compile fine?posted in Bug Reports
0_1556736060684_trend-direction-amp-force-index-smoothed-4.mq4
perhaps bug in fxdreema, for now try the version above, the timeframe enter in numerical format (0 is current TF, 1 is M1, 60 is H1, and so on) ...
-
RE: Dukascopy Data - Array out of rangeposted in Questions & Answers
this should open trades:
https://fxdreema.com/shared/Rd6D3Txpb