@MigSornrakrit I am giving you years of knowledge and testing, so don't complain to me and try what I said, prove your bug on a small project, then a bug can be seen.
Best posts made by jstap
-
RE: ZigZag indicator errorposted in Bug Reports
-
RE: Tutorial - Create Custom Blocks with "FXDreema Studio"posted in Tutorials by Users
In the studio I have added to in settings and functions once created this is part of the EA code so you can access in project.
-
RE: I Want To Correction In My Zigzag EAposted in Questions & Answers
@muneeb00 Test it with buys off, then test with sells off, if these line up then you have a problem with your logic, and you probably need to more close above buy/sell.
-
RE: Cannot obtain price from Zigzag indicatorposted in Bug Reports
Then make a small test project to show it, I have used ZZ for years on here and it always does as expected
-
RE: I Want To Correction In My Zigzag EAposted in Questions & Answers
@muneeb00 You didn't put the flags in as I said, you have been using without them working, flags are an on/off switch, test without, if needed add back in, simple robots don't need. People that use learn how to use once the basic EA is working, then they are added to specify the logic.
-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 When I get a minute I will go over your questions, for now though (Symbol()==SYMBOL);
(OrderSymbol()==SYMBOL);
both go into custom code, although I haven't tried I think the string in SYMBOL variable is what is used and probably OrderSymbol is what to use for placing an order. -
RE: I Want To Correction In My Zigzag EAposted in Questions & Answers
@muneeb00 If you are talking about the zigzag, on the same post you got mt4 from is the information on how to use in mt5, is in the comments near the bottom.
-
RE: DAILY TARGETposted in General Discussions
@edenclean20 Hi, in this link you will see how you can achieve this, the idea can be used for most ways you decide your target. Hope this helps
-
RE: Fibonacci retracementposted in Bug Reports
You are redrawing it on every tick, which means it will be named fib1,2,3,4 etc set a reason to draw above and delete when you draw so it is always named fib, let me know if this works...
-
RE: I Want To Correction In My Zigzag EAposted in Questions & Answers
@muneeb00 I think you are looking for this, the logic is if input buys = true activate next block.

-
RE: How to set a stop loss (x) pips below or above a moving average.posted in General Discussions
@kelrobot You can do it like this, if you want this value in a constant just type + or - and the name of the constant.

-
RE: PENDING ORDER NOT PLACED CORRECTLY,KINDLY ASSISTposted in Bug Reports
According to your link you have both set to open at 01:00?

Then you are using a range for highest/lowest price, but at 01:00 this will be the same. -
RE: I Want To Correction In My Zigzag EAposted in Questions & Answers
@muneeb00 It doesn't matter it is exactly the same
-
RE: Ranking Simultaneous News Eventsposted in General Discussions
Writing by hand is a defonate help, and the only way of truly understanding. You can tell it any errors though and it will rewrite.
-
RE: Studio Custom Functions All Deletedposted in Bug Reports
Contact support that's the only possible way of getting help over this.
-
RE: Thoughts on Virtual TP and SLposted in General Discussions
Virtual is like closing a trade, fixed is set on the broker's server, normally works fine but occasionally will close at the wrong time.
-
RE: Error while compiling MQL5 code which is converted by Mql4 to Mql5 converterposted in Bug Reports
The compiler won't replace blocks. Any blocks that sat "trade" need to be manually replaced with the equivalent blocks that say "position"