@abbas25 Yes but a custom indicator that is causing errors, if it doesn't for me you have done something wrong, if it does then there is likely nothing that can be done, your choice.
Posts made by jstap
-
RE: Custom Indicatorposted in Questions & Answers
-
RE: Why does the boolean block not open the sell order in the EA belowposted in Questions & Answers
@od Boolean is true or false, i assume that variable is a double, your condition is always correct because they both get the same value.
-
RE: Block that opens an operation by copying anotherposted in Questions & Answers
@rodrigo-ortuzar You have nothing placing a buy or sell? on trade is used for purple blocks otherwise use on tick.
-
RE: I need to create a counter on the chart that counts all my trades.posted in Questions & Answers
@dazmed9 No worries, when you reply to a person reply to their last post, notifies them so post doesn't get lost.
-
RE: Entry trade at MA crossover: function not reliable?posted in Questions & Answers
@e-so Put a shared project here, have used many times and always works as expected.
-
RE: Block that opens an operation by copying anotherposted in Questions & Answers
@rodrigo-ortuzar This is how to get the information.
-
RE: Block that opens an operation by copying anotherposted in Questions & Answers
@rodrigo-ortuzar It's because this is MT5, for each position = for each trade, rest should be the same.
Do you know how to add and use variables?
-
RE: Block that opens an operation by copying anotherposted in Questions & Answers
@rodrigo-ortuzar Pink for each trade block--modify variables block with what you want to copy--your condition to place new trade and the used variables in the buy/sell blocks.
-
RE: Best practices to improve EA speed (Backtesting)posted in General Discussions
@trdjb3 Your first picture: I assume there similar but the bool flag may use less code so maybe quicker, every tick the blocks run so the flag may only have 1 line NAME==true/false.
Your second picture probably the one with the close block, the other has to turn on another block which then runs another another 2.
As a general rule the fewer blocks the quicker, every block adds lines to the code, the more lines the slower.
If you back test on control points you cannot rely on results but for testing before a final run you'll save lots of time. -
RE: Block that opens an operation by copying anotherposted in Questions & Answers
@rodrigo-ortuzar Am unsure what exactly you need but, a condition block will check 2 values, you need a variable to save/change values when something happens.
-
RE: repeat this block using another timeframeposted in Questions & Answers
@mcarl42 You select different TF's on each option and this creates a loop that changes all connected blocks beneath to the other timeframes, a diffract one for every loop.
-
RE: Custom Indicatorposted in Questions & Answers
@abbas25 Put the indicator here and I'll have a look.
-
RE: Formula for specific candles like Doji, Marubozu etcposted in Questions & Answers
@gtoat777 Use single candle template, set the percentages that you would count as good.
-
RE: block triggered stays active ?posted in Questions & Answers
@mcarl42 Count 1 minute candles, switch block off at 60.
-
RE: Entry trade at MA crossover: function not reliable?posted in Questions & Answers
@e-so Try changing candle close to high, candle 0 closes at the point it becomes 1.
-
RE: I need to create a counter on the chart that counts all my trades.posted in Questions & Answers
@dazmed9 Only works in the on trade tab
-
RE: Get a part of description only (object list)posted in Questions & Answers
@ambrogio Create 2 variables, put the object on chart into variable a then use this code:
variable b=StringSubstr(variable a,0,3);
