- Search Crypto Craft
-
rockit replied Aug 10, 2018I think you are using iBarShift correctly, except that you have to pay attention to the direction of indexing of the arrays. The Time[] array is indexed right-to-left, while the other arrays may by default index left-to-right. Perhaps use time[] ...
Help with basic coding problem
-
rockit replied Aug 10, 2018Would You not have two index variables for the different time frames? For there are i.e. twelve M5 bars in H1..
Help with basic coding problem
-
rockit replied Aug 9, 2018The comment at the code line is a bit weird, and in my opinion the equation for m_pip1 is wrong. The variable is supposed to hold the value for one pip. Meaning, for a 4/5 digit instrument, it is 0.0001; for a 2/3 digit instrument it is 0.01.
Trio Orchestra EA: A free - no expiry - little grid rider
-
rockit replied Aug 6, 2018Not 4, 2 (either in two accounts of same broker or seperate accounts at two brokers). And because the positions are opposite, one account gains more than the other loses, makes a net gain. However, I see a (possible) problem with the stop out level.
Risk-free trade with the help of ESMA?
-
rockit replied Aug 6, 2018I think this: // on tick: if(OrdersTotal() == 0) { equity_high = AccountEquity(); } else if(AccountEquity() > equity_high) { equity_high = AccountEquity(); } relative_dd_pc = (equity_high - AccountEquity()) / equity_high * 100;
Simplified algo for calculating relative DD?
-
rockit replied Aug 5, 2018Unfortunately not, the (old) data is lost when I update it. Also, the data is a snapshot for a particular point in time, there is new data every 20 minutes, it is public data from oanda. Such an indicator can be had from oanda itself, albeit one ...
(binned per thread starter's request)Fractal Freak's Not So Fra
-
rockit replied Aug 5, 2018Possibly. However, slippage can be a problem in case of stop loss - stop loss is not warranted (at desired price), whereas NBP is.
Risk-free trade with the help of ESMA?
-
Risk-free trade with the help of ESMA?
Started Aug 5, 2018|Trading Discussion|10 replies
I read on the Internet (on a French website) about side effects from the ESMA ruling, in ...
-
rockit replied Aug 3, 2018A generic code to extract the number from that string (in C; C without the clutter that is
): source = "<td>6586.97 Lots</td>" result = 0.0 i = 0 c = source[0] while c > 0 && c != '.' if c >= '0' && c <= '9' result = result * 10 + (c-'0') c = ...Code question: How to detect a string end postion?
-
rockit replied Aug 2, 2018Let me rephrase: As a consequence of ESMA's NBP rule, we will mainly have b-book brokers in the future and therefore brokers with conflict of interest, because only by this (b-book) brokers can hold themselves harmless in case the balance on a ...
Official percentage of clients losing money (EU brokers)
-
rockit replied Aug 2, 2018One fallout of the new ESMA rules, namely the negative balance protection, is, that now brokers that pass orders to their liquidity providers take on the risk (of negative balances). Therefore, we shall see a 'flight' back to mainly b-books and thus ...
Official percentage of clients losing money (EU brokers)
-
rockit replied Aug 2, 2018The latency of 22 ms points to London as the server location, while 107 ms points to New York as the server location. And you can see that Axi and Pepperstone have UK outlets (ICM has not). It has nothing to do with your optical fiber connection: I ...
Breaking: ESMA finalizes new rules to govern leveraged trading
-
rockit replied Aug 2, 2018I see. However, and you know, FractalFreak's indicator is much much more sophisticated and complete.
(binned per thread starter's request)Fractal Freak's Not So Fra
-
rockit replied Aug 2, 2018That's right, it seems MQ has disabled the feature. And I think it did not work in MT5 either. So, one has to know the server name exactly, then it works. Good!
MT4 Question: Different brokerage accounts under one instance?
-
rockit replied Aug 2, 2018And.. 3. image And now it looks: image
(binned per thread starter's request)Fractal Freak's Not So Fra
-
rockit replied Aug 2, 2018And there's still some fat bars left, so, if ya wanna try..
(binned per thread starter's request)Fractal Freak's Not So Fra
-
rockit replied Aug 2, 2018Sure, ya know: No Easy Money For You.
(binned per thread starter's request)Fractal Freak's Not So Fra
-
rockit replied Aug 2, 2018Tapping it.. 1. image 2. image
(binned per thread starter's request)Fractal Freak's Not So Fra
-
rockit replied Aug 1, 2018Apparently he could convince ForexFactory of the opposite - thus he can continue his thread. You see, your gang has not exposed anything, you are just imagining things.. Also, a pro scammer would not make such naive mistakes, like reveal his real ...
(binned per thread starter's request)Fractal Freak's Not So Fra
-
rockit replied Jul 31, 2018If you come to the point where you need to speed up Python, there is Cython or PyPy (a JIT compiler).
Peering down the algorithmic trading rabbit hole