- Search Energy EXCH
- 399 Results (272 Replies, 127 Comments)
- iwjw replied Jan 2, 2016
Thanks for your explanation But one thing you have to keep in mind: With a "traditional" renko chart builder the open price of a candle is not correct if a candle is in reverse direction of the previous one (up followed by down and vice versa) A ...
Renko BackTest (RenkoToCSV.mq4)
- iwjw replied Dec 30, 2015
the first three variable names are typical for a decompiled EA what about that?
forex-center EA
- iwjw replied Dec 19, 2015
Same problem with digits here Solution for me was to normalize the openprice of the order NormalizeDouble(price,Digits); After that the correct price was shown in the tester
Metatrader v4 build 940 - Issue with Strategy Tester
- iwjw commented Oct 28, 2015
there they will decide, that they will decide in the next finally
FOMC Statement
- iwjw replied Oct 8, 2015
should be same as with candles (Time[0]-Time[x])/60
Add 'time to form bar check' to a Renko EA
- iwjw replied Sep 15, 2015
from my personal experience one thing, that is extremely slowing down iCustom, is passing of parameters the more input parameters your indicator has, the slower iCustom will be to work around this, best would be to call iCustom without any parameter ...
How to free indicator resources? indicator called from EA
- iwjw replied Sep 14, 2015
this is a script that builds a matrix with all possible combinations and prints it to the expert log
How to output and/or test all possible permuations of 7 bools
- iwjw replied Sep 14, 2015
the way you are addressing the arrays, the size of the arrays has to be OrdersTotal() because you are using x as index another way would be to use a seperate index that's only incremented when data is written into the array The way I would solve ...
Help with " array out of range in" - Error
- iwjw replied Sep 5, 2015
you can add Levels in the properties like 10pips above/below the ma
How can I move MA line vertically in the MT4?
- iwjw replied Jul 3, 2015
what about the negative balance on the losing account? Since SNB we all know that it does matter A lot of brokers will increase the margin requiements for euro pairs over the weekend
Next Monday - EUR/USD trading plan
- iwjw replied Jun 17, 2015
you could use a global var bool PrintComment Set it to false after the print of the comment and change it to true when there is a new signal if ((BuySignalA) && ((Ask-Bid) <= AvgSpreadHigh) && PrintComment) { ...
Question about comment handling in mt4
- iwjw commented Jan 14, 2015
Remember the spike in usdchf as of January, 5th when eurchf spiked If you think that usdchf will come down, I would prefer a long eurusd over a short usdchf because of eurchf kreeping at the floor. But only if you believe that 1.20 eurchf will hold, ...
USD/CHF: exhausted Swissy points to a possible bounce in EUR/USD
- iwjw replied Dec 22, 2014
Just wondering why u are using M5, because that's a MT4 chart timeframe and shouldn't be used for offline charts The wicks of your bricks are looking really strange. They are sometimes expanding over several bricks
As simple as possible: RENKO M5 trading
- iwjw replied Dec 11, 2014
As far as I know, you can't modify the size of an existing pending order It would have to be replaced by a new order
Script to modify lot size of pending order
- iwjw replied Dec 7, 2014
try this one: StringFind( OrderComment(), "[tp]" ) >= 0
How to find if any EA order has been closed by TP
- iwjw replied Dec 6, 2014
The problem is the following: This kind of EAs have been coded over and over again and all got the same result: they do not work in the long run You will make some nice profits, but the day will come where it all blows up One would have to rewrite ...
How to find if any EA order has been closed by TP
- iwjw replied Dec 5, 2014
Are you testing your code before posting it? Because OrderComment() == "[tp]" doesn't work in this case Have a look what happens in OrderSend and you will see why it can't work Btw. did you notice that the EA will never be able to open a sell trade ...
How to find if any EA order has been closed by TP
- iwjw replied Dec 4, 2014
you have to look for the TPed position in the OrderHistory But to be on the save side, your set of positions should have something in common You could always use a new unique magicnumber to identify trades that are belonging together and look for a ...
How to find if any EA order has been closed by TP
- iwjw replied Dec 4, 2014
don't know whether it's valid for all brokers, but u will find [tp] in the comment / as part of the comment
How to find if any EA order has been closed by TP