- Search Crypto Craft
- lukeb replied Dec 18, 2016
I get nothing but zeros in Cumulative mode. I'm not seeing what makes res==0. Just got back and couldn't help looking some more. Still no solution. The CumulDistrib( double dstrb ) value of w appears to always be 1, not much accomplished by that ...
Optimized Trend Trading
- lukeb replied Dec 13, 2016
The EA includes this line:if( Profit1==Profit2*(-1) ) // exactly opposing orders; closem I wondererd if that could ever be executed. So, I introduced code to count it, and tried. Up until the ea died with margin stop, it didn't, even in the perfect ...
May die trying to get this right... but never give up...
- lukeb replied Dec 11, 2016
I'm not sure you provided the same file as you show in your screenshot.... But, in the code you supplied, replace as per this and set the arrow width to whatever you want - look for "arrowWidth". for the lines, look for: ...
I will code your EAs and Indicators for no charge
- lukeb replied Dec 10, 2016
LOL, if you find a reliable indicator (I'm assuming you mean its ability to tell you when to order, not that it does what it is coded to do), be sure and let everyone know - then it no longer will be. What you will find is a few reliable traders ...
RAMZAN MACD Dot Trading
- lukeb replied Dec 10, 2016
make a rectangle class that makes rectangles. They have 4 sides (top, bottom, left, right) and two text labels, a top label an a bottom label. class DrawRectangle {} The use inheritance to make Gann Rectangles (sets the 4 sides with the Gann ...
RAMZAN MACD Dot Trading
- lukeb replied Dec 5, 2016
This is from center of the day range, not high-low. So I think on your High-Low fibo positioning it would match 11.8 and 88.2 positions. Pretty sure that's what you are seeing, as positioning on a high-low range is the normal use of fibo's. Will ...
RAMZAN MACD Dot Trading
- lukeb replied Dec 4, 2016
They gotta be 23.6% of something.... This is the code for the height of the top rectangle, and the bottom is done the same basic way: const double RECTHEIGHT = 0.236; setTopPrice(iHigh(Symbol(),PERIOD_D1, BARONE)); double barLowPrice = ...
RAMZAN MACD Dot Trading
- lukeb replied Dec 4, 2016
The rectangles just show the high 23.6% and the low 23.6% of yesterday's price range. Waiting to hear if that is what Ramzan wanted. Also, if it is, what about Friday, Saturday and Sunday - all partial (or nothing) days. Should Sunday be shown using ...
RAMZAN MACD Dot Trading
- lukeb replied Dec 3, 2016
Specification is pretty vague - this is what I interpret: //| Show yesterday's price on today with 23% (fibo) high and low rectangles |
RAMZAN MACD Dot Trading
- lukeb replied Dec 2, 2016
updated event handlers and added: if (rates_total>prev_calculated)
I will code your EAs and Indicators for no charge
- lukeb replied Nov 29, 2016
No EA I know of - I thought I'd start on one about Thanksgiving weekend, but haven't yet. Some of Ramzan's posts look like he's leaving this MT4 stuff behind to move to the MQL5 world.
RAMZAN MACD Dot Trading
- lukeb replied Nov 27, 2016
Posted at the Next Bar Forecast indicator at: url
I will code your EAs and Indicators for no charge
- lukeb replied Nov 25, 2016
Here's modified version. The forecast lines should dynamically size themselves (within limits). There is a text display on the lower left, it has three elements that may be clicked on to select options: - The calculation mode: I think only "Mode: ...
RAMZAN MACD Dot Trading
- lukeb replied Nov 24, 2016
I believe the only change in the signal is due to signaling during the price action in bar zero. The MACD can cross can occur in real time, giving a signal, then the price can retreat, and by the close of the bar, the cross may not occur as far as a ...
RAMZAN MACD Dot Trading
- lukeb replied Nov 24, 2016
url url Thought about putting in code to allow easy turn on and off of alternate timeframe easily, but doesn't seem very usefull - here's code:
RAMZAN MACD Dot Trading
- lukeb replied Nov 24, 2016
any possibility that one of the variables is declared as a double? Compiler gives the indicated warning when information can be lost on assignment of one kind of variable to another type of variable. Assignment of Double to Integer looses the ...
I will code your EAs and Indicators for no charge
- lukeb replied Nov 18, 2016
I'm thinking you are looking for the milliseconds from 'now' until midnight, not just looking for 24 hrs worth of milliseconds? 24 hours * 60 minutes per hour * 60 seconds per miniute * 1000 milliseconds per hour = 24*60*60*1000 = 86,400,000. const ...
I will code your EAs and Indicators for no charge
- lukeb replied Nov 14, 2016
"low annualized return value of 4.3% " This one is similar: url you and mdswamp may want to work together to make what you want.
I will code your EAs and Indicators for no charge
- lukeb replied Nov 14, 2016
The code is not in that provided. indicator objects get their size from a line that looks like this: #property indicator_width1 1 Objects made with ObjectCreate get a size from a line that looks one of two ways: ...
I will code your EAs and Indicators for no charge