@nguyenjohn Hi, in this link link text you will see a few options on how to achieve a panel like your picture and different, I am not that well practiced on this and there are people much better than me, any objects you create you will need to delete on de init so if removed from chart it goes back to blank. Arrays on FX are quite difficult/maybe impossible and something I know nothing about, if you search the forum you will find lots on how to create a panel. Hope this helps
Posts made by jstap
-
RE: Scanner Stock in MT5 like Dashboardposted in Questions & Answers
-
RE: Is there a way to reset Turn on / off blocksposted in Questions & Answers
@saeed-2 Then you need a condition that turn on/off all required blocks when necessary, easiest way would be to remove EA from chart then reinsert but I don't think this can be done other than manually, you could just set a time to switch on/off.
-
RE: Help me tell me the use of the volume upper limitposted in Questions & Answers
@jolly-virox The blue block called check position count, this should go at the top of the tree.
-
RE: Help me tell me the use of the volume upper limitposted in Questions & Answers
@jolly-virox If you have the EA automatically increasing the LOT size, you can set a max LOT to stop increasing.
-
RE: AUTO WITHDRAWposted in General Discussions
@firima80 Don't think it can be done, check with broker.
-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 Tipsy is correct there is a candle 0 close but it happens at the same time as the new candle opens, in code you can specify C0 close (I am unsure how to do it) but it potentially moves until the candle closes, using C1 for everything, and then C0 open for C1 close is the best way. In this link you can see how I would achieve this link text
-
RE: Is there a way to reset Turn on / off blocksposted in Questions & Answers
@saeed-2 I am unsure exactly what you are asking but, there is blocks called turn off & turn on blocks, set a condition to activate and comma separate the block numbers, like 1342,456,7890 and they will switch off on as required. Hope this helps
-
RE: AUTO WITHDRAWposted in General Discussions
There is an MT5 withdraw block but, it only works for back test, am quite sure you cant do it from a live account.
-
RE: Partial horizontal lineposted in Questions & Answers
@raiderspaz I would add the indicator separately, MT5 save as a template on main chart as tester.tpl
Every EA will show on tester with these settings.
-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 I can help you with most of this, I am not a coder and what I know is self learnt. In here you will see a few examples of what you can do, anything your not sure about just ask, a simple formula would be variable1=(132+(45-5/2)); link text
I will also say that I try not to use too many formula blocks, previously I have found unexpected results, results that are corrected by using custom code, I still use formula blocks just not as many as I used to.
-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 Sorry I haven't been able to check, my mt5 has been busy optimising, FX uses numbers, the colours just help you know which buffer to choose, you can have them all black, works fine but difficult to remember which number to use when you have lots.
-
RE: how i remove magic number from expert setting page ?posted in Questions & Answers
@skf1883 You cant prevent it from appearing but, push the spanner at top right of screen, set to 0 and EA will work on manual trades.

-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 Ok I will have a look.
-
RE: Hedge tradeposted in Questions & Answers
@luckybest Hi, I think what's in this link will show you haw you can achieve this link text You can add to your existing project but you will probably need some more conditions. Hope this helps
-
RE: Hello Guys !! Trailing Startposted in Questions & Answers
@hanisheikh Hi' in this link you will see how I would achieve this. link text
-
RE: Regarding subscriptionposted in General Discussions
@arivazhagan-p For me it happens immediately.
-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 That's ok but the currency constants need to have something like EURUSD, otherwise the calculation for each formula cant happen, it uses the string to find the candle for the specific market. If you change this depending on what you are doing, put an example it so when I look I can reference why it's not working.
-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 Hi Mohamed, I will gladly go over this and see what I can, first though the symbols are correct in being strings but, to me there was no string in the constant? is this how it is for you? Also put variables/constants in a comment block then you can see if correct result is within, allows for easier fault finding.
-
RE: Need help with my Fibonacci EA planposted in Questions & Answers
@omerkarabay If this covers all your needs then well done, I will say though condition 1 looks for lo to be lower than hi between range 0-72, so the condition is always true, condition 2 looks for lo to be higher than hi between range 0-72, so condition is always false.