The purpose of my "for each closed trade" blocks was to calculate the daily gain but I found a blue one called "Check profit (period of time)", so I solved it, thanks for the help!
Best posts made by Meshii
-
RE: Question about "check age" blockposted in Questions & Answers
-
RE: a guide on Time Filterposted in Questions & Answers
You can terminate the entire EA but you can't turn on again, so by placing time filters inside "on tick" tab you can disable and enable some functions to eventually prevent the trade
Latest posts made by Meshii
-
Reopen a pending after closing itposted in Questions & Answers
Hi all, that's my question:
Using pending orders in grid, can I open at the same 'open price' another pending when one of these closes?
Because now I'm making all manually, I mean, I created 10 pending at various price with numbered groups, so the program can identify the trade and when it close, another is opened at same open price;
it works but needs a lot of blocksThanks, Meshii.
-
RE: Question about "check age" blockposted in Questions & Answers
The purpose of my "for each closed trade" blocks was to calculate the daily gain but I found a blue one called "Check profit (period of time)", so I solved it, thanks for the help!
-
Question about "check age" blockposted in Questions & Answers
Hello guys, I have several "For each closed trade" blocks inside my ea and they have to store daily trades only, but I can't reset them without reload the ea on the chart.
I thought that a check age could be the solution but if I put for example newer than 13 hours, he still can load trades of the day before
What do you suggest? -
RE: Create a pending every new trade at fixed distanceposted in Questions & Answers
@tipsywisdom said in Create a pending every new trade at fixed distance:
for slippage, i dont know. No broker is going to let you trade that cheap though and get away with it. Unfortuntaely as well, thats something youll never know how it affects the robot until you start trading it on demo. With that low of pips, you probably also have to worry about your latency, VPS would be suggested.
If I understand correctly what you wrote, the ea doesn't close the operations with 1 pip, the operations will be open all at the same time, however it will go on a vps near the broker, so no issues about latency.
@jstap said in Create a pending every new trade at fixed distance:
@meshii As others have said, you may find that your broker wont allow a pending placed at such a small distance, check your journal for info on this, on the on trade tab you have purple blacks that act only on specific trade information, you also have a trail pending block so if you have to place a further distance away you can at least trail behind price.
I have no problem about small distance, I have just a maximum number of pending.
@bk7 said in Create a pending every new trade at fixed distance:
pending test 2
you would have to loop for the last open order, grab the price add and/or subtract 1 point and place the pending orders based on this calculation.
I'll try to work in this
-
RE: Create a pending every new trade at fixed distanceposted in Questions & Answers
@tipsywisdom What value do you suggest, 2?
-
RE: Create a pending every new trade at fixed distanceposted in Questions & Answers
@tipsywisdom I have 0 spread with a lot of symbols, however no matter the distance, I wanted to make the system work
-
Create a pending every new trade at fixed distanceposted in Questions & Answers
Hi guys, I tried everything but I can't do it.
I have two trades open buy and sell, with 2 pending orders for each one with 1 pip distance.
I want that every pending triggered (so each new trade) he creates a new pending with 1 pip distance.I tried for each trade, once per trade/order, also inside "on trade" But he updates pending only for buy or only for Sell
-
Add spread to pending orderposted in General Discussions
Hello guys, I created a script that opens 2 pending orders: buy and sell at the extremes of candle 1, but I want to add the current spread to the value and I didn't understand how to do it.
Adds the value before the order or move the order after, both modes are fineThanks in advance for the help