@saeed-2 This is a duplicated thread. Please do not duplicate threads.
Posts made by l'andorrà
-
RE: Just finished EA what you think ? one chart running EA opearte other selected pairs .. how ?posted in Questions & Answers
-
RE: strategy result .. whats your comments !!?posted in General Discussions
@jsauter86 Agreed. These results are not reliable at all. Do more backtesting with better quality data.
-
RE: Draw Tredlineposted in Questions & Answers
@xyon126 You need to specify two points is space and time:

The rectangle on top is definint the moment and place in which the second point defining the trend line is positioned (candle 0's close by default) This will always be the closest point to the right of the chart.
The rectangle below it is doing the same for the first point defining the trend line (candle 10's close by default). This point will always be the farthest point to the left of the chart.
-
RE: ketner chanelposted in Questions & Answers
@eduhansen Probably the indicator is not correctly identified by fxDreema. Can you please share it?
-
RE: Funcionamiento de consecutive lossesposted in Questions & Answers
@javherre Si te refieres a magic numbers dentro de un mismo EA, sí , lo puedes hacer aquí:

Si te refieres a los magic number de diferentes EAs entonces no. Deberás añadir bloques de condición para especificar el magic number del robot que quieras comprobar.
-
RE: [SOLVED] Cannot manage a position countingposted in Questions & Answers
@jerkha Wow, you are using many loops within loops! HonestlyI would recommend you to deconstruct the whole structure and rebluild it one step at a time. Once that step is confirmed then adding the new one. My guess (and it's just a guess) is that probably additional loops will be required to cover all your requirements per group.
What I can tell you now is that those 'Pass' blocks on top of the break even blocks are redundant. You can remove them.
-
RE: How to add cutsom distance in pips away blockposted in Questions & Answers
@tsheppo In that case you will need a loop searching for those levels and volumes. Sadly, loops are not my field of expertise. Maybe roar or miro can provide some useful hints here.
-
RE: Drawing lines at all 00, 20, 50 and 80 levels below bidposted in Questions & Answers
@xander An interesting question. Honestly I cannot imagine how to do that without a custom code block. Can anyone else shed some light here?
-
RE: El bloque de Trailing Stop no me funcionaposted in Questions & Answers
@michele-vitulli El bloque de trailing nunca funciona en ua estructura de lanzamiento de operaciones como la que tienes. Debe estar separado completamente de la misma mediante la creación de un árbol de bloques independiente. Elimina uno de ellos y traslada el otro debajo de un bloque 'Pass'. No es necesario duplicar los bloques de trailing. Para ello selecciona en su configuración interna que se active tanto para compras como para ventas.
-
RE: Change the SL if some amount of pips are reachedposted in Questions & Answers
@jaime-jimenez Then you need this:

This block tree moves the SL 20 pips in profit when price is 50 pips in profit.
-
RE: Where to place module to stop lossesposted in Questions & Answers
@ramon2020-1 That requires a much more complex structure. Firstly you need to define the precise conditions for a market to be considered as moving sideways. Then all the other features can be incorporated step by step.
On the other hand, when you say you want to limit 'the losses per stop', do you mean the maximum amount of consecutive losses maybe?
-
RE: Bucket of trades in tutorialsposted in Questions & Answers
@saeed-2 Can you please confirm this is the whole project. I guess no sells are open because there is something stopping them to do it. As you say. Those conditions above the 'sell now' project are correctly configured. The reason why there were not open before is because of the presence of those below block 59. If you removed them and the problem persists means that teh problem is anywhere else.
-
RE: Bucket of trades in tutorialsposted in Questions & Answers
@saeed-2 I think using buckets of trades is a very innefficient way to get info (IMHO). You should use other more efficient loops like 'For each trade', for example. On the other hand, I have a few questions:
- What are block 69 and 70 for? They are doing nothing right now.
- Why two different ways to open trades (one of them with random outpuits)? Why do you need those below block 59?
-
RE: Pending order based on price moving a percentage of ATR after a previous condition is metposted in Questions & Answers
@mikev_303 I see you are using a variable called 'Variable4' in block 12 but then it is not used anywhere else. Is this the whole project or just a part of it?
-
RE: Change the SL if some amount of pips are reachedposted in Questions & Answers
@jaime-jimenez This is the easiest way to have a breakeven feature. In my example, the SL will be moved to break even when the trade is 15 pips in profit:

-
RE: How to add cutsom distance in pips away blockposted in Questions & Answers
@tsheppo Do you mean adding volume at those distances, maybe? Please consider that it will create new trades for those added volumes.
-
RE: MA crossover close and reverse?posted in Questions & Answers
@mikeaprb Do ypu mean one new trade per crossing no matter what? That should be easy. Can you please share your project?
-
RE: How to modify OCO feature?posted in Questions & Answers
@cryptoknight It depends on the time required to restart. When should that happen? Once per day? Once per hour?