- Search Crypto Craft
- lukeb replied Nov 16, 2017
Some time ago I wondered if the price moved in one direction or another for some amount if it could be counted on to continue moving in that same direction enough to reliably trade the move. Thats pretty much what you are doing here, "Betting on the ...
Buy above yesterday high sell below yesterday low
- lukeb replied Nov 16, 2017
This EA was written before events - so you click and drag the 'stars' into the boxes (or vice versa) to perform the action. This is quite old school, but - the strategy tester doesn't support events, so making it this way lets you use the controls ...
Bet on the Direction
- lukeb replied Nov 11, 2017
One - its an EA as coded - that's easily changed by adding #property indicator_chart_window or indicator_separate_window and placing the file in the proper folder if you like, and changing the OnTick to OnCalculate. Two - its about the worst code ...
I will code your EAs and Indicators for no charge
- lukeb replied Oct 29, 2017
As written, it takes a horrendous long time to calculate and display. As I understand P&F, I don' think it should be that resource intensive. Maybe I'll make my own version just to find out.... "so ATR mixing is not good i feel" ATR would just be ...
Point and Figure charting with MT4
- lukeb replied Oct 29, 2017
A look at the code shows that it draws two boxes for up or down, one for the internal color, and one for the external outline (Blue). As the price range on the chart gets larger, the inside of the box gets smaller, until all that is left is the ...
Point and Figure charting with MT4
- lukeb replied Oct 28, 2017
Point-Figure-Indi.mq4 looks like a decompile, and appears to do nothing more than draw a single line in the state it is in. I found two others, attached. I cleaned them up enough to make them compile with #property strict, and corrected a couple ...
Point and Figure charting with MT4
- lukeb replied Oct 7, 2017
There are many already out there, already published as free code, that do as specified above. Here's one made for url some time ago, that in addition to the above, will auto-trade the demarker. Easy to strip that out, even for a non-coder. It also ...
Need EA coding - will pay
- lukeb replied Oct 3, 2017
I'm afraid I'm not understanding what you are saying. The average of a single data point has the same value as the data point, so what is the value in maintaining three separate indicator buffers duplicating the values automatically maintained in ...
Experiments - while waiting for an order to get closed
- lukeb replied Oct 2, 2017
original code; valuesc[i] = iMA(NULL,0,1,0,MODE_SMA,Pricec,i); followed by (equivalent) worksTemp[k] = ( valuesc[k] - valuesc[[j])/(j-k); cannot be faster than (again, equivalent) the replacement: worksTemp[k] = ( Close[k] - Close[j])/(j-k); as the ...
Experiments - while waiting for an order to get closed
- lukeb replied Oct 2, 2017
Truth, but I also wanted to eliminate the unnecessary calls to IMA, use the newer event functions, and I wrote it to step the period bars back to any point in history, but that part was not working by bedtime. Hope to do that later this week.
Experiments - while waiting for an order to get closed
- lukeb replied Oct 1, 2017
Version that will run in the strategy tester
Experiments - while waiting for an order to get closed
- lukeb replied Jul 10, 2017
[quote=philhosk;10062930]... put an alert into the code.[quote] Done: extern ENUM_ON_OFF ALERT = OFF; // Put up an alert box on Signal - Turn it on to get the alert. Also: extern ENUM_ON_OFF OnlyPriceMark = ON; // Only show the Zero Cross Price This ...
RAMZAN MACD Dot Trading
- lukeb replied Jul 5, 2017
I believe you are referencing this: void MakeLines( const int& operation, const datetime& startTime, const double& signalPrice ) { datetime endTime = startTime + (Period()*60*40); which makes the line 40 bars long. "datetime endTime = ...
RAMZAN MACD Dot Trading
- lukeb replied Jul 2, 2017
I believe this is the proposed code. I made MarkMACDCross (Arrows) default to OFF. Usually the Signal Line is calculated with an SMA, so I made this ones Signal line mode selectable between SMA and EMA, and made the default EMA as specified.
RAMZAN MACD Dot Trading
- lukeb replied Jun 5, 2017
Found a rather obvious bug in the indicator code, uploaded a fix. Based on no comments about it, looks like no one is using this feature / no one is using the indicator. Cannot say I've really tested the change other than to see my display looks ...
Camarilla Trading
- lukeb replied May 14, 2017
I've been thinking of that as well - If there's such a thing as a 'normal' price that the pair trades at, trade the 'return to normal' as opposed to the departure from normal. Another thing is that it is clear is that if a day is very narrow ranged ...
Camarilla Trading
- lukeb replied May 7, 2017
Started a thread for Camarilla Trading: url
I will code your EAs and Indicators for no charge
-
Camarilla Trading
Started May 7, 2017|Trading Systems|15 repliesThis is a thread to further develop the camarilla trading EA from suggestion by suneth2. - ...
- lukeb replied May 7, 2017
Testing with strategy tester on Forex.com demo account. EUR/USDpro,M5.
I will code your EAs and Indicators for no charge
- lukeb replied May 7, 2017
Just tested - still gets the 130 errors. If only.... The code already had double normPrice = NormalizeDouble(price,Digits); double normStopLoss = NormalizeDouble(stopLoss,Digits); double normTakeProfit = NormalizeDouble(takeProfit,Digits); and those ...
I will code your EAs and Indicators for no charge