- Search Crypto Craft
- 57 Results (3 Threads, 54 Replies)
- LastViking replied Feb 11, 2011
Strictly speaking 0 (zero) is an allowed ticket nr. (I doubt it's the problem however) Better use: if(Ticket != -1) { // ok } else { bla bla...
Requote error but still open trade ?
- LastViking replied Jan 9, 2011
Personal opinion: The code becomes easier to read if spaces around operators reflect order of precedence in expersions. x = 2*a + 7.0*b + 320*c + 982*(a + b); // easy to understand x = 2 * a + 7.0 * b + 320 * c + 982 * (a + b); // harder I have long ...
MQL Coding Standards
- LastViking replied Jan 7, 2011
I made a script to do something similar a while ago. (Rearranging the order window to make it smaller) The code is not complete however, (several forms/windows/buttons etc. are missing, look for "unknown" in the source code) as I lost interest in it ...
Alternative MT4 order window?
- LastViking replied Dec 20, 2010
Why it's so hard to think diffrent — "In a famous 1951 experiment led by Swarthmore's Solomon Asch, 76% of people conformed at least once to what they heard other people arguing was the correct length of a line on a scale right in front of ...
Thinking Outside the Box!?!
- LastViking replied Jun 8, 2010
That chart look very much like you have two (or more) instances of the renko EA runing on the same currency pair, and both writing to the same offline chart. If thats the case just change the RenkoTimeFrame in one of the EA's to some other unused ...
Renko Block Charts
- LastViking replied May 24, 2010
v2.x (al the indicator versions) are byggy and have updating problems. Use v3.2 (EA version), it's stable. /LV
Renko Block Charts
- LastViking replied May 15, 2010
This issue was fixed long ago. The starting point is rounded to the nearest renko block (+ BoxOffset). If it dose not look exactly the same then you restart MT4, it's because the historical block's are built from M1 data, and the live ones are built ...
Renko Block Charts
-
Visual Trade (place order using horizontal lines on the chart)
Started Apr 16, 2010|Platform Tech|4 repliesThis script lets you see/set your entry price and SL visualy using horizontal lines on the ...
- LastViking replied Dec 16, 2009
Use v3.2 (DL from this thread: url , use the paper clip on the top right to locate the file). It's an EA rather then an indicator, so it should be placed in the experts folder. Otherwise it works the same way as v2.x. It (v3.2) have an option ...
How to read values of indicators in offline Renko chart
- LastViking replied Nov 20, 2009
Delete if you ask me, it makes life easyer. (The important thing is that anyone that DL the file with the highest version number from this thread should get a good working EA version with no updating issueses, I think.) Whats how I feel about it ...
Renko Block Charts
- LastViking replied Nov 4, 2009
You can try seting EmulateOnLineChart = false + unchecking "offline chart". It vill make v3.2 work like the older vesioins did. I can't really say that I think it vill make mush of a diference, but maybe worth a try. (Also, if you do this you can't ...
Renko Block Charts
- LastViking replied Oct 21, 2009
Better use v3.2 if you intend to run an EA on the renko chart, it fixes some problems: url Anyway, the Renko EA will print an error message: "Error: Dll calls must be allowed!" if DLL calls are not allowed. Easyest way to fix this is: Ctrl-o and ...
"Dll calls must be allowed!"
- LastViking replied Oct 16, 2009
That dose not belong in the Renko EA. Use a separate indi. on your renko chart instead. Like this one:
Renko Block Charts
- LastViking replied Oct 15, 2009
This have to be the last one for a while — I wrote an dumy EA some time a goe that just printed a log file with bid ws Close[0] over a couple of hours. It turns out that thay are not always the same if I just uncheck the "offline chart" ...
Renko Block Charts
- LastViking replied Oct 5, 2009
v3.1 — - Fixed a small bug related to BoxOffset - Auto adjust for 3 and 4 dec JPY pairs - Changed back to old style Renko live brick formation - Added change log I have shared this with one some friends and on a private forum. Just thought it ...
Renko Block Charts
- LastViking replied Sep 23, 2009
multiple charts — Well, yes. That was the main reason the RenkoLiveChart_v2.x.mq4 was made an indicator in the first place. You can't have multible EA's or scripts on the same chart (as far as I know anyway) but any number of indicators. ...
Renko Block Charts
- LastViking replied Sep 18, 2009
You are aware of this little trick?: url Works for me (only tested on v2.1 however). LV
Renko Block Charts
- LastViking replied Sep 16, 2009
Nice work. About the start up problems with the indicator version: I believe it has to do with indicators executing in the main thread in MT4 while scripts and EA's don't. (Even functions like TimeLocal() will give you the "wrong" time ...Renko Block Charts