- Search Crypto Craft
- MrPip replied Jun 9, 2010
Thanks OTR, I made one of the mods asked for by adding the non IBFX pairs and a new input for UseIBFX, true or false. The New version of the EA 06-06-10a has been modified to use the v1_6 of this indicator. I removed and re-attached the newest ...
Indicators development for T101's not very simple method
- MrPip replied Jun 9, 2010
I think I found the bug for resetting profit lock. Added reset function call at end of code for close all. Also added SuperTrend option and fixed the looping problem mentioned when other EAs have open trades. Combined GetOrdersTotal with ...
Indicators development for T101's not very simple method
- MrPip replied Jun 8, 2010
Good bug catch on order closing loop. It should be i >= 0 in two spots, when calculating number of open orders and when closing orders. That is why there were 2 trades left open. Test this version. I also modified to close trades from 0 to ...
Indicators development for T101's not very simple method
- MrPip replied Jun 8, 2010
I did some code cleanup and removed the references to global values. All checks for open orders are now done correctly where needed. The original thread I follows was at a different forum. Robert aka MrPip
Indicators development for T101's not very simple method
- MrPip replied Jun 8, 2010
Here is the new version with my first changes. I did notice a few other places that can be improved but will wait for that. Robert aka MrPip
Indicators development for T101's not very simple method
- MrPip replied Jun 8, 2010
I have not visited this thread in a while because some of the original coders of this method kept making changes to their versions after I posted my versions to automatically use correct pairs, correctly use 5 digit pricing, etc. Ther was no real ...
Indicators development for T101's not very simple method
- MrPip replied Jun 2, 2010
See my post above. I have spent most of my free programming time at forex-tsd as MrPip and at the Yahoo MT4 Experts and Indicators group. I also code for hire when an EA or custom indicator is very complex. Robert Hill aka MrPip
A trusted programmer needed
- MrPip replied Jun 2, 2010
I updated the most recent version 5 with the error 1 corrected. There are comments in the code showing where the error occurs. I also added additional output for error reporting, also commented. Robert
I'm seeking a trailing stop EA that surely must exist, any ideas?
- MrPip replied Jun 1, 2010
The attachment shows as php indetad of mq4. Robert Hill aka MrPip
I'm seeking a trailing stop EA that surely must exist, any ideas?
- MrPip replied Jun 1, 2010
Try this correction Pip = Point; if (Digits == 3||Digits == 5){Pip *= 10; D_Factor = 10;} Trail_From *= Pip; Trail_Max *= Pip; Robert Hill aka MrPip
I'm seeking a trailing stop EA that surely must exist, any ideas?
- MrPip replied Jun 1, 2010
I can check it for you. send to [email protected] with details of problems. Make sure to place in subject of email that it is from ff so I do not delete as spam. Robert Hill aka MrPip mt4 programmer since 2005.
A trusted programmer needed
- MrPip replied Feb 7, 2009
Here is an indicator that displays green when increasing from one bar to the next and red when decreasing from one bar to the next. You might have to play around with the minimum value for the indicator to get the shape of the line to show. I had to ...
Price for changing Indicator to Histogram
- MrPip replied Feb 7, 2009
You posted EA instead of indicator for ergodic cci trigger fast. Robert
Generic EAs
- MrPip replied Oct 18, 2008
When using the basket indicator it is VERY IMPORTANT that you have data for all the pairs used for the tf of interest. Otherwise the price used will be 0.0 for both the open and the close. I just completed the following steps and the indicator ...
Indicators development for T101's not very simple method
- MrPip replied Oct 18, 2008
I fixed a bug in the following lines. SetIndexLabel(0,"LongPipsSell"); SetIndexLabel(1,"ShortPipsSell"); SetIndexLabel(2,"CombinedPipsSell") ; The 0, 1, 2 should be 3, 4, 5. This is so that the popup label is correct when you float the mouse over a ...
Indicators development for T101's not very simple method
- MrPip replied Oct 17, 2008
The above code is from the sort routine and should be pos < 13 as in original code. The following lines refer to position pos + 1 which would go beyond the end of the array if 13 is used. if (StartingArray[pos] > StartingArray[pos+1]) // flip to > ...
Indicators development for T101's not very simple method
- MrPip replied Oct 17, 2008
There was also a move of some pairs from buy set to sell set and from sell set to buy set. That is why I have been working on indicators and EAs with an input for BrokerIsIBFX to select different lists. Robert
Indicators development for T101's not very simple method
- MrPip replied Oct 17, 2008
new version of indicator — Hopefully no one else fixed this yet. I am on vacation but found time to add an input to disable all print statements. CreateLog defaults to false. Robert
Indicators development for T101's not very simple method
- MrPip replied Oct 12, 2008
Just change the input value of all bars to a smaller number like 25. That will cause the lines to end 25 bars back and make the text more easy to read. Robert
Trading system using relative strength
- MrPip replied Oct 11, 2008
Change the input for UseMAs to false. Doing so will show the results from using the close of the past two bars instead of the MA values. That is the only difference. I did find something in the code that might need to be modified so be careful when ...
Trading system using relative strength