- Search Metals Mine
-
7bit replied Sep 15, 2010I will now watch it closely and take decisive steps if needed. LOL.
USD/JPY Discussion
-
7bit replied Sep 15, 2010And how will you make sure you get the same number again after a crash/restart/recompile so that the EA can continue where it left?
Dynamic (Magic Number) - Randomizing
-
7bit replied Sep 14, 2010#include <common_functions.mqh> int magic; int init() { magic = makeMagicNumber(WindowExpertName() + Symbol() + Period()); } int start() { } All problems solved, EA usage simplified, user confusion and questions avoided.
Dynamic (Magic Number) - Randomizing
-
7bit replied Sep 14, 2010and USDCHF broke through this line, I almost expected that. And I promise it will go lower much more now. Maybe some crazy short term moves now but this is not a fake-out, it will drop more, I'm absolutely sure. image
EURUSD
-
7bit replied Sep 14, 2010I did not observe any change in the new frequencies that are in place since the flash crash. see here: url so I assume the "trend" (or whatever this is) is still the same. The new (old) resonances are exactly the same as they were throughout 2009. ...
EURUSD
-
7bit replied Sep 14, 2010not possible. Try setting in the MT4 options to require a double-click for selecting, this makes it a bit harder to accidentally select something.
How to set chart objects as background/non-clickable in MT4?
-
7bit replied Sep 13, 2010to run as an indicator it must contain the line #property indicator_chart_window at the top and put into the indicators folder. For testing and experimenting just leave it as an EA.
trying to write a script that emails me
-
7bit replied Sep 13, 2010Insert some Print() and look at the experts tab (log) what it outputs. This is easier than waiting for emails for testing and debugging. int start() { static int lasttime; double diff; if (Time[0] != lasttime) { lasttime = Time[0]; diff = ...
trying to write a script that emails me
-
7bit replied Sep 13, 2010Time[0] is always the opening of the current (incomplete) bar. Whenever this changes we know that a new bar just began and then do our things that must be done only once on bar open. iClose(Null, 0, 1) refers to the previous now just completed bar. ...
trying to write a script that emails me
-
7bit replied Sep 13, 2010Where should I begin? if (iClose(NULL,0,1) == iOpen(NULL,0,1) || value == 2 || value == 1 || value == -1 || value == -2) better: if (MathAbs(value) <= 2 * Point) // or 20 for the 5 digit brokers now you need some code for calling this only once on a ...
trying to write a script that emails me
-
7bit replied Sep 13, 2010SHORT usd/cad if you want to protect against falling USD or rising CAD. Short, not long or you will have the opposite effect! Whether a falling USDCAD (the scenario you fear) will actually happen is of course a completely different question.
Protecting my Canadian account value
-
7bit replied Sep 13, 2010In this chart you posted (see below) (Metatrader can restore closed charts even if you closed them) hover your mouse over one of these arrows, wait for the little hint window and write down the ticket number and see if it corresponds to a trade that ...
MT4 Problem - Opening a Deal, then Closing it again straight away
-
7bit replied Sep 13, 2010You could try to use a real data mining tool like Knime for trying to find statistical relationships and then doing predictions from the models that you generate. It has most of the commonly used learners like SVM or MLP and many others already ...
Neuroshell prediction help
-
7bit replied Sep 13, 2010No, I dont see any possibility to use iCustom because you don't know all the needed parameters and their type at runtime to load the manually added indicator a second time through iCustom with the exact same parameters. I have another idea: The data ...
Is a horizontal line indicator with alarm on separate window possible?
-
7bit replied Sep 13, 2010Do the "closing arrows" that most (all) EAs plot into the chart (its actually happening automatically) when closing a trade with OrderClose() appear anywhere on any EA's chart at these times? Do they appear on FAP's own chart or are they missing and ...
MT4 Problem - Opening a Deal, then Closing it again straight away
-
7bit replied Sep 13, 2010What is in the 3 other experts log folders on the other terminals for this exact same time, so we can finally find out who is actually closing the orders since obviously FAP did not close it?
MT4 Problem - Opening a Deal, then Closing it again straight away