- Search Crypto Craft
-
rockit replied Apr 25, 2018My robot doing 5 pip on M1, only E/U, but it can of course do 3 pip too. It then looks like this (current month): And the robot has no brain, so.. image
Scalping 3 pips per trade
-
rockit replied Apr 25, 2018Unfortunately we have to do it "brute force" with RefreshRates(). MetaTrader is bad. This works: #property strict void OnStart() { datetime time = 0; int count = 0; int target = 3; while((count < target) && !IsStopped()) { if(time != ...
MQL4 Script - open on new bar question
-
rockit replied Apr 25, 2018Scripts are (more) intended as run-once. AFAIK they do not get (price etc) updates. If you need fresh data, you have to poll it. Try something along this (pseudo) code: time = 0 count = 0 while count < target if time != iTime(...,0) if open() ...
MQL4 Script - open on new bar question
-
rockit replied Apr 24, 2018Today I let briefly run 18-46 on my live account (Tickmill, €500) (E/U, M15). And its positions went into profit; however, I clicked them out manually to help out the robot. lol Basically, everything works like in demo mode.. I think version 18-46 ...
Forex expert vr smart grid lite develop
-
rockit replied Apr 22, 2018You had an OnStart-function at the start of the code, which is used for scripts, not EAs. Perhaps an artifact left behind..
Trio Orchestra EA: A free - no expiry - little grid rider
-
rockit replied Apr 22, 2018Just brutal for a robot lol: image It is not Setka but the well known concept, just other filter(s). In fact I wanted to run Setka 18-46 live tomorrow but tomorrow is heavy news day so nah.
Forex expert vr smart grid lite develop
-
rockit replied Apr 18, 2018Nah, you do not do the rounding; only in ordersend function you normalize the calculated lot.
Forex expert vr smart grid lite develop
-
rockit replied Apr 18, 2018Meant not the statement; the file, where is the file? Edit: found it in #188 lol.
Forex expert vr smart grid lite develop
-
rockit replied Apr 18, 2018You forgot to include "smCommentsPanel_Includes_v1.0.mqh".
Forex expert vr smart grid lite develop
-
rockit replied Apr 18, 2018There is a specific problem to testing this way: At the end of the testing interval, the tester does a hard cut-off, meaning: If there are open orders at the end of the interval, they will be closed by the tester, not by the strategy. Therefore ...
MeMe Trades + Hedging System
-
rockit replied Apr 17, 2018He got that already. Everyone who makes martingales got that. And I know no "no-commission" broker with a spread of 0.5, usually it is 1.5+, turning out to be more than when commission-based.
Forex expert vr smart grid lite develop
-
rockit replied Apr 17, 2018True, true.. All you need is big enough account HAHAHA: image
Forex expert vr smart grid lite develop
-
rockit replied Apr 17, 2018Done testing for today (demo); final result (maximum lot size has been 2.21 lot): image
Forex expert vr smart grid lite develop
-
rockit replied Apr 17, 2018Currently doing forward test of 18-46 on E/U, default settings, since just before London open (today); going great, banked €154 so far today. So far the robot went to up to 0.86 lots with a 1.6 multiplier.
Forex expert vr smart grid lite develop
-
rockit replied Apr 17, 2018If you could summerize the rules in a compact way, like I have put in post #20, I think it would be helpful to code. But first finalize the rules.
MeMe Trades + Hedging System
-
rockit replied Apr 17, 2018The steps the EA takes (in order): 1. if either of tp is triggered (from limit orders), close all, reset 2. if no buy yet, open buy with tp, open buylimit 3. if no sell yet, open sell with tp, open selllimit 4. if buylimit triggered, issue new sell ...
MeMe Trades + Hedging System
-
rockit replied Apr 17, 2018I have not much of data to test with, but I think in general it works (proof of concept): file image
MeMe Trades + Hedging System
-
rockit replied Apr 16, 2018Also the parameters (like take profit etc) are misspelled to be pips, but they are really points (in a 5/3 digits context that is). - So it is not i.e. 300 pips take profit but 300 points (=30 pips).
Forex expert vr smart grid lite develop