Do you mean closing partially 20% of the current trade when it's 50% in profit?
Posts made by l'andorrà
-
RE: how sell part of my position?posted in Questions & Answers
-
RE: Trade Mgnt Heiken Ashiposted in Questions & Answers
You can remove all those AND blocks. They are redundant. I don't understand the logic for those 'OR' blocks though. What are those supposed to do?
-
RE: Bollinger Bands Flag +Stochasticposted in Questions & Answers
Then the only reason I can say for that to happen is that the indicator repaints. You should definitely check it doesn't repaint before moving on.
-
RE: How to locate and mark the oldest or most losable open trade as a variabel value?posted in Questions & Answers
That is a more complex loob because we can never know when the most losable trade was closed. I guess ou will need custom code to do that because the only way I know to do it is via arrays storing the info of the ticket number for that specific trade. I'm afraid that goes beyond my capabilities, sorry.
-
RE: How to change minimum lot size from 0.01 to 0.001?posted in Questions & Answers
@Desco Beacause it is a custom code block, I'm afraid this is not my field of expertise. You should contact pentest3rz to ask him how to implement it.
-
RE: How to remove the stop loss in interbank timeposted in Questions & Answers
The easiet solution is simply changing the SL distance one minute before the closure from its current position to 1000 pips away, for example. Then repositioninh again to its correct place the following session.
-
RE: How to locate and mark the oldest or most losable open trade as a variabel value?posted in Questions & Answers
You can use a 'for each trade' blok tree searching for those specific trades and then store their ticket numbers into variables. But I dont full y understand the part for profits. Do you mean you need to know the combined profit of all open trades? That's exactly the value of current floating.
-
RE: Trail step instead of trail stopposted in Questions & Answers
@Leop15 You need both values to be equal:

-
RE: want to put a blue line on the chartposted in Questions & Answers
Do you really need lines? They are unnecessary for the bot calculations, only for visual effect. That would make the structure far easier.
-
RE: Draw ZigZag On RSIposted in Questions & Answers
If you you are hiring a programmer please tell him/her that all the indicator's buffers should be identifible by fxDreema. Otherwise you will be paying for nothing.
-
RE: Trailing Stop For Each Trade Blockposted in Questions & Answers
Will that horizontal line be plotted manually or automatically?
-
RE: reset by max lotsposted in Questions & Answers
@ettaher You need to create a new variable to establish the maximum lot size here:

-
RE: Trade Mgnt Heiken Ashiposted in Questions & Answers
IMHO the only reliable infor provided by the ADX is the mail line. Both DI+ and DI- lines are COMPLETELY unreliable. Just forget them, they will never provide any good info.
-
RE: Can someone help me on how to put a price ranger on a EA.posted in Questions & Answers
@alexisnegron Can yu please share the link to your project like this?:

-
RE: close all trades when profit percentage achieved(closed trades + open trades ))posted in Questions & Answers
The structure I provided definitely does that. Probaly you embedded it into a larger structure that is conflicting it.