@arkannor Use standard moving avarege indicator combined with any oscillator you want, but never supertrend, please!
Posts made by l'andorrà
-
RE: Custom indicator Supertrendposted in Questions & Answers
-
RE: help with grid orderposted in Questions & Answers
@mcvinbabas Can you please reupload? No image is visible.
-
RE: is there a way for the EA to only enter a new order when the previous one is closed.posted in Questions & Answers
@gggvvvv Do you mean having no more that one open trade at any time or opeining a new one as soon as a previous one is closed?
-
RE: How to martingale on profit ?posted in Questions & Answers
@farizramli08 Martingales are not strategies to consider seriously for trading. They can be proftable in the short term bet never in the long run.
-
RE: PULLBACK TRADES ALONG MAposted in Tutorials by Users
@josh-2 You definitely need to use variables to control those conditions on different moments. You can use boolean variables (or flags) as 'switches' to do that.
-
RE: Save all trades in .csv fileposted in Questions & Answers
@ontradingx It should work, but never tried it personally. Please confirm if it works.
-
RE: PLEASE ADD THISposted in Questions & Answers
@kestra There is a lot of loops there. As soon as there are many open trades, all those loops are executed very quickly. I don't see a solution other than rebuilding the whole structore with less loops, if that is possible.
-
RE: PLEASE ADD THISposted in Questions & Answers
@kestra I don't know. I have no idea what your project looks like.

-
RE: Did I connect the blocks like this correctly?posted in Questions & Answers
@gggvvvv Could you please focums on one thread only? This is the third one you create for the same question.
-
RE: Create buttons that work in MT4 & MT5 Live, Demo & Back testposted in Tutorials by Users
Simply EXCELLENT! Thank you for this Tutorial.
-
RE: Save all trades in .csv fileposted in Questions & Answers
@ontradingx You are requesting the loop to be executed avery tick. You'd better save the info just once by trying this on the 'on trade' tab:

-
RE: Comment Block - pseudo deleteposted in Bug Reports
@mantadiver Very interesting. Thanks for sharing.
-
RE: PLEASE ADD THISposted in Questions & Answers
@kestra There can be several reason for that to happen. One of them can be the amount of computing requirements involved. If your project is using many loops on the 'on tick' tab, probably there is not enough time for the EA to complete all calculations befroe the next tick arrives to the MT4. That is ver common when the market is very volatile.
-
RE: William % crossover Momentum but not workingposted in Questions & Answers
@siuteino You need a combined custom indicator to do what you want.
-
RE: hi how can i additional pending order when my first pending order turn negative i want to add pending order 1x atrposted in Questions & Answers
@mcvinbabas Could you please be more detailed? How can a pending order turn negative? Do you mean maybe a a trade going negative, maybe? More info would help.
-
RE: ADDING POSITIONS AFTER EVERY 'X' PIPSposted in Questions & Answers
@musa-5 This is an example for buys and price moving up:

-
RE: I am willing to pay anyone who can help meposted in Questions & Answers
@gggvvvv You should never connect a 'for each position' block below a 'no trade' block. That will stop them. Additionally, are combining mq4 and mq5 blocks, maybe? That 'no trade' block is correct for mq4, but the 'for each position' one will not work correctly here. It is used on mq5.