- Search Crypto Craft
- lukeb replied Mar 4, 2017
Here's a considerably cleaned up version with the White slash:
Simple ZigZag modification
- lukeb replied Mar 2, 2017
easy to get rid of the decimal, find this: DoubleToStr(MathAbs(d3-d2)/Pip,1)+"/" and make it DoubleToStr(MathAbs(d3-d2)/Pip,0)+"/" Much harder to make that slash white. One way would be to make that single object into 3 objects and display three ...
Simple ZigZag modification
- lukeb replied Mar 1, 2017
Found a reason for the sl error, is a risk of testing on weekend. Got zero from market info during the weekend, so the way I wrote it, it yeilded a 1 pip min SL. Today, market info returned 11, meaning 11 points (0.00011), and I saw the error. Seems ...
Help with EA lot sizing
- lukeb replied Feb 28, 2017
don't know what to think. I've got it running without error - I don't see any bad values displayed in the debug display: Here's a auto selection (got a 64 point SL) and a preset 5 pip SL. This is EUR/USD, 15 min strategy tester on Oanda. 21,407 bars ...
Help with EA lot sizing
- lukeb replied Feb 28, 2017
Posted a new version. - I haven't seen it create a SL error, and I've ran it with ERUUSD for some time. - There is even more accessible debug info. Click on the Seq text to cycle through all the debug statements (cannot do that in strategy tester, ...
Help with EA lot sizing
- lukeb replied Feb 27, 2017
go on down to 'Get Lots', starts on line 411. Change if( profitSequenceCount > 0 ) { tradingLots *= 2; } to: if( profitSequenceCount > 0 ) { tradingLots *= (profitSequenceCount+1); } and they will be multiplied with each additional profitable trade ...
Help with EA lot sizing
- lukeb replied Feb 26, 2017
I got the regular, not multi-tf code, to work good. Give the mtf a try... yes, I renamed it.
want some help to modify indicator/ea
- lukeb replied Feb 26, 2017
Here is yet another signal crossing EA. It doubles the lots as soon as there is a winning sequence. It's generic / buy, sell or both. Includes lots of debug capability so you can edit it and fix it yourself. An here it is edited to match url .
Help with EA lot sizing
- lukeb replied Feb 22, 2017
It looks like prev_calculated sometimes reverts to 0 or some value much smaller that rates_total. This causes lines to get drawn and remain on the display that should not be there. Added code to fix this, haven't tested it, but cannot think of any ...
want some help to modify indicator/ea
- lukeb replied Feb 22, 2017
Mabe find a working EA and have it modified to trade with the conditions you want? This is not a good code base to start from. This code cannot make a sell order. This code cannot make a 1st order - there must be Order History before it can begin ...
Help with EA lot sizing
- lukeb replied Feb 21, 2017
In the Real World of moving averages, that is exactly what can happen. In a MA that includes the newest bar in the act of being formed, that uses the close price in the calculation, if the price goes up, the MA goes up. If the price goes down, the ...
Lets Automate a Simple Renko Strategy!
- lukeb replied Feb 20, 2017
Didn't make an EA,but the source looks like it is in serious need of updateing. Notice the name change if the ea references it. they don't re-paint in the sense that they look from the present to the past - but they are set up to process on the ...
Lets Automate a Simple Renko Strategy!
- lukeb replied Feb 18, 2017
Added control for how many 'plots' you want to see: extern int MaxDisplays = 8; // Display Objs: Multiple of 4; 0,4,8,12, etc. using 0 will show all; 4 is one column of plots, etc. Edit: Improved performance of void setDrawBegin(void) Removed ...
want some help to modify indicator/ea
- lukeb replied Feb 18, 2017
If you have source code and you can see that an indicator works from the present to the past - there better be a really good reason, or the indicator was created to 'fool you'. This is a giveaway - the structure of the for loop: for(i=0; i<limit; ...
SMA Crossover Alert needed!
- lukeb replied Feb 12, 2017
That does look like it. Where you see OBJPROP_WIDTH is where the width is set. Here is a sample: if(AutomaticallySetLineWidth) ObjectSet(Label+"_MN1_"+i,OBJPROP_WIDTH,WidthMN1); else ObjectSet(Label+"_MN1_"+i,OBJPROP_WIDTH,LineWidthMN1); This ...
want some help to modify indicator/ea
- lukeb replied Feb 12, 2017
Adjusted. Not completely sure on some of the values. Hopefully, they are broke out so you can edit as needed.
want some help to modify indicator/ea
- lukeb replied Feb 5, 2017
I like the graphics. I don't have the other two indicators. Do you have the mq4's for them? I'd like to look at and play with them a little, if you can post links to where they may be downloaded. There's a thread here somewhere where a contributor ...
want some help to modify indicator/ea
- lukeb replied Jan 31, 2017
Removing the box is fairly easy - Added extern ENUM_ON_OFF MakeBackground = ON; so you can turn the box on and off at will. Its hard to analyze these 'cracked' indicators to see if they are honest or not, but this one fails a test I've done to try ...
want some help to modify indicator/ea
- lukeb replied Jan 30, 2017
Added: input int MaxLines = 4; // maximum number of lines Updated and cleaned up. added an if so that you can have zero lines and still work.
want some help to modify indicator/ea