@felixnr If your conditions check candle 1, then as a new 0 opens candle 1 is checked.
Posts made by jstap
-
RE: Close position when next candle close [SOLVED]posted in Questions & Answers
-
RE: Simple Pip Counter for all open trades on terminal.posted in Questions & Answers
@savagetrades The reason it shows 0 is because the used variable isn't being used, change the variable being used and may work.
-
RE: Simple Pip Counter for all open trades on terminal.posted in Questions & Answers
@savagetrades You are welcome to, no formula may work as the pink may check all running and add up. You'll only know by checking.
-
RE: Simple Pip Counter for all open trades on terminal.posted in Questions & Answers
@savagetrades Try this but i have no idea if will work:
-
RE: Close position when next candle close [SOLVED]posted in Questions & Answers
@felixnr Candle close on 0 happens as candle becomes 1, but candle close on 1 has already happened until it becomes 2.
-
RE: RSI as a signalposted in Questions & Answers
@andrewfrank I would set up a separate project with a comment so I can watch on back test and see if what I require is happening, I would add to this so each step I can and then add something else. For the RSI to work as a trigger something happens once when all other conditions are already set. For example RSI is above 80, something else like RSI X< 90 happens as a trigger to place trade.
-
RE: Simple Pip Counter for all open trades on terminal.posted in Questions & Answers
@savagetrades Not sure how to change to pips, if you change symbol from specified to any it should work.

-
RE: RSI as a signalposted in Questions & Answers
@savagetrades This is true, I too tend not to look through peoples projects in depth, often to complete an Idea there are different ways, and 1 way isn't necessary better than another. The more help tor people on these forums the better: )
-
RE: RSI as a signalposted in Questions & Answers
@savagetrades Ok but if you look in his project getting things to react to the RSI he was doing, he wanted to know how to reset a condition.
-
RE: Simple Pip Counter for all open trades on terminal.posted in Questions & Answers
@savagetrades Set the trades it works on:

-
RE: RSI as a signalposted in Questions & Answers
@savagetrades Think you missed the whole point, when a bool condition is set to true at a level, then set to false at a different level, reset this this back to false at a different point for another reason.
-
RE: Simple Pip Counter for all open trades on terminal.posted in Questions & Answers
@savagetrades This will do it, I think it will give you in money not pips though:
-
RE: RSI as a signalposted in Questions & Answers
@andrewfrank This is your choice, any condition with the modify variables block under, as you have it will still work.
-
RE: Lot calculationposted in Questions & Answers
@andrewfrank I am not sure how you get a verified lot size as, the atr that is constantly changing is setting your stop, as your balance changes so will the lot, that's 2 factors dynamically changing your lot. On certain brokers you have things like minimum stop loss, this could also change how your lot is calculated, how are you verifying all parameters are as required to give you your lot?
-
RE: Orders created manually in MT4posted in Questions & Answers
@pedrog Magic number 0 will work on manually placed trades, inside blocks you also have the option to work with all trades, manually placed and automatically created.
-
RE: RSI as a signalposted in Questions & Answers
@andrewfrank What I meant was, you have the RSI setting bool true/false when over/under a set level, once this level get's back to a certain level so the original condition is no longer valid, use another condition to reset the bool back to the opposite true/false.
-
RE: Is there a Limit on How many Blocks can be attached to another?posted in Questions & Answers
@davidmcc There is no limit on the payed version, the more blocks you have though the slower things will become.
-
RE: martingale that works like this, Buy if TP hit you Buy if SL hit you Sell.lot size increases.posted in Questions & Answers
@maop1994 Do you mean the FX mql4 file? This is the button next to the ex4 button.
-
RE: How to limit the number of trades?posted in Questions & Answers
@joe_fx I do not know, it would work if I did it, the no trade block limits trades to 1 I do it nearly every day, check the settings inside all blocks.
-
RE: I need to check 2 previous Candle size Before currentposted in Questions & Answers
@sharktooth This could be because you are trying to catch the total size of a candle that hasn't closed yet, set can ID's to 1 & 2, this way as 0 closes and becomes 1, the EA can check the size of 1 & 2 so it will take action on the open of the new 0.