- Search Crypto Craft
-
rockit replied May 22, 2018"No commission" is like "free shipping": no such thing exist. No one is working for free. Either commission is incorporated into the spread, or extra. What is more, if incorporated into spread, one pays even more, as the technology for making the ...
EURUSD - Sub 1 Pip Spread - Zero Commissions?
-
rockit replied May 18, 2018EA will open a position with the first tick of a new candle: will buy if previous candle open > close; sell if previous candle open < close. So, if you put it on a H1 chart, it will do so every hour.
Need EA to trade the candle color
-
rockit replied May 18, 2018The error you get reads: "4112 ERR_TRADE_EXPERT_DISABLED_BY_SERVER Automated trading by Expert Advisors/Scripts disabled by trade server" You are with the wrong broker..
Success with Martingale & Hedge - Possible?
-
rockit replied May 17, 2018Great, however, still no big difference: It had a large DD (>66%) at some point, meaning that, if you started the test later in time, and the algo had not had the chance to accumulate enough profit, it might have "broke its neck". And that is ...
Success with Martingale & Hedge - Possible?
-
rockit replied May 17, 2018It is almost unavoidable with this kind of algo. However, not a deal breaker: The strategy around that fact is to, make money, take out money, and, when the algo burns its stake, one hopefully has drawn more money out of the market already, and ...
Success with Martingale & Hedge - Possible?
-
rockit replied May 17, 2018That is certainly not true in one case: If your strategy works not in the tester, it is highly unlikely it will work in reality..
Success with Martingale & Hedge - Possible?
-
rockit replied May 16, 2018Hello Tickmill, how are your plans for MT5 (or any other MT4 alternative)? It must not be that traders have to operate (only) with unmaintained software (MT4). May I remind you of your own claim (from 1st post in this thread!): "Our mission is to ...
Tickmill
-
rockit replied May 16, 2018The big big advantage CT has over MT ist that one gets access over FIX API for free. That way one can use and make any third party software to the fullest, with no restrictions (devel. env., computer lang. etc) whatsoever. The only, and only, adv. ...
MT4 vs cTrader: Which platform would you recommend?
-
rockit replied May 13, 2018I would call that fanciful accounting.. Someone who does know can tell you (video below called 'Anton Kreil Annihilates Retail Brokers and "Trading Educators"'; I think he states the stats from GS somewhere near the end of the video, but everyone ...
99.99999% lose money
-
rockit replied May 10, 2018After all major regulators have cut leverage radically, do you not expect the australian regulator to cut leverage, too? I would expect them to follow.
Pepperstone, IC Markets, Tickmill? Which one to choose?
-
rockit replied May 2, 2018Code could look like so: #property strict bool maytrade = true; double where = Ask; double upperlimit = 3000*_Point, lowerlimit = 3000*_Point; // assuming 5|3 digits for(int i = 0; i < OrdersTotal(); i++) { if(OrderSelect(i, SELECT_BY_POS)) { double ...
EA places too many orders at a time
-
rockit replied May 2, 2018Straight forward: 1.Count your pips, if x reached, do or do not do whatever.. 2.Check all order open prices, if within defined range, do or do not do whatever..
EA places too many orders at a time
-
rockit replied Apr 27, 2018I have only litte computing power at hand, long tests are not feasible. However, markets are fractal: you seen a (repres.) piece of it, ''you seen it all''. Now to the difference in modelling quality / real ticks: Here is MT4 low quality modelled ...
Forex expert vr smart grid lite develop
-
rockit replied Apr 27, 2018Not really. I have ported 18-46 robot and my own robots to MT5 to test with 100% real ticks (from ICMarkets). There are minor differences but nothing spectacular.
Forex expert vr smart grid lite develop
-
rockit replied Apr 27, 2018Well, looks not that spectacular.. image In example, this looks ok: D image
Forex expert vr smart grid lite develop
-
rockit replied Apr 27, 2018Zip file cannot be extracted, used two uncompressors to no avail.
Forex expert vr smart grid lite develop
-
rockit replied Apr 26, 2018Also, check this code which is suitable for arbitrary time frames (detected with the first price quote): #property strict void OnStart() { datetime seconds = _Period * 60; // state any amount in seconds datetime t_last_recorded = 0; // for ...
MQL4 Script - open on new bar question
-
rockit replied Apr 26, 2018Be advised that this method is not reliable, as MT stops updating bars count after max bars setting is achieved. So, the only! reliable method is to check time.
MQL4 Script - open on new bar question