Like the OP, I too have been following the system on Babypips almost since its inception. I've been messing around trying to code my own version of the EA using some "EA builders" for free on the internet. I'm glad I stumbled upon this thread because it looks like it'll save me a lot of time
3 Little Pigs System Automation
-
Justincase09
- Posts: 1
- Joined: Fri Feb 14, 2014 1:02 am
Re: 3 Little Pigs System Automation
Hey guys,
Like the OP, I too have been following the system on Babypips almost since its inception. I've been messing around trying to code my own version of the EA using some "EA builders" for free on the internet. I'm glad I stumbled upon this thread because it looks like it'll save me a lot of time
many thanks! I agree that the back tests for this don't seem to be promising but if I might be so bold to suggest that this strategy could really use a trailing stop to accompany it. That way it can lock in the majority of your profits that you should catch in the trend. What do you guys think?
Like the OP, I too have been following the system on Babypips almost since its inception. I've been messing around trying to code my own version of the EA using some "EA builders" for free on the internet. I'm glad I stumbled upon this thread because it looks like it'll save me a lot of time
- milanese
- TechAdmin
- Posts: 3293
- Joined: Wed Jan 09, 2013 9:02 am
- Location: btr rdx, r8 +
Re: 3 Little Pigs System Automation
Hello and welcome,Justincase09 » Fri Feb 14, 2014 1:38 am wrote:Hey guys,
Like the OP, I too have been following the system on Babypips almost since its inception. I've been messing around trying to code my own version of the EA using some "EA builders" for free on the internet. I'm glad I stumbled upon this thread because it looks like it'll save me a lot of timemany thanks! I agree that the back tests for this don't seem to be promising but if I might be so bold to suggest that this strategy could really use a trailing stop to accompany it. That way it can lock in the majority of your profits that you should catch in the trend. What do you guys think?
The EA uses a moving SL and set BE function
This are the parameters..
Code: Select all
extern bool Use_SetBEAndJump=true;
extern double SecureProfit=4;
extern double JumpProfit=15;
extern double SetBEminPip=75;Tommaso
Global Prime is the official SHF broker 
Searching for Servers and Workstations with individual configuration?
Just PM
Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
Searching for Servers and Workstations with individual configuration?
Just PM
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
-
safxpro
- Trader
- Posts: 12
- Joined: Mon Jun 16, 2014 4:20 pm
3 Little Pigs System Automation
Hi Tommaso,
Thank you for the EA. I have great interest on the EA; I have taken a 1on1 session with the developer of the 3 Little Pigs System and even have the indicator (manual). I am trading the system on the live account and I give it thumbs up.
Are you not able to implement the rules as set out by the requestor, for example:
1) Stop Loss:
(a) For Uptrend: SL = 34 SMA - (MAX_VALUE(ATR) + (MIN_VALUE(ATR))/4
(b) For Downtrend: SL =34 SMA + (MAX_VALUE(ATR) + (MIN_VALUE(ATR))/4
2) Re-entry
(a) Uptrend: Re-enter trade when candle touches or dips below the 34 SMA and still closes above the 34 SMA regardless of whether SL was taken out or not (if multiple trade parameter set to 2 and above of cause)
(b) Downtrend: Re-enter trade when candle touches or ventures above the 34 SMA and closes below the 34 SMA regardless of whether SL was taken out or not (if multiple trade parameter set to 2 and above of cause)
3) Trade Management:
(a) SL trails the 34 SMA by the same distance
(b) TP: Trade is automatically exited when the trailing SL is taken out
Kind regards,
SAFXPRO
Thank you for the EA. I have great interest on the EA; I have taken a 1on1 session with the developer of the 3 Little Pigs System and even have the indicator (manual). I am trading the system on the live account and I give it thumbs up.
Are you not able to implement the rules as set out by the requestor, for example:
1) Stop Loss:
(a) For Uptrend: SL = 34 SMA - (MAX_VALUE(ATR) + (MIN_VALUE(ATR))/4
(b) For Downtrend: SL =34 SMA + (MAX_VALUE(ATR) + (MIN_VALUE(ATR))/4
2) Re-entry
(a) Uptrend: Re-enter trade when candle touches or dips below the 34 SMA and still closes above the 34 SMA regardless of whether SL was taken out or not (if multiple trade parameter set to 2 and above of cause)
(b) Downtrend: Re-enter trade when candle touches or ventures above the 34 SMA and closes below the 34 SMA regardless of whether SL was taken out or not (if multiple trade parameter set to 2 and above of cause)
3) Trade Management:
(a) SL trails the 34 SMA by the same distance
(b) TP: Trade is automatically exited when the trailing SL is taken out
Kind regards,
SAFXPRO
-
safxpro
- Trader
- Posts: 12
- Joined: Mon Jun 16, 2014 4:20 pm
3 Little Pigs System Automation
Hi Tommaso,
Another nifty feature of the EA would be the auto lot size calculation based on the SL, account equity and percentage of the equity being risked.
Kindest regards,
SAFXPRO
Another nifty feature of the EA would be the auto lot size calculation based on the SL, account equity and percentage of the equity being risked.
Kindest regards,
SAFXPRO
- milanese
- TechAdmin
- Posts: 3293
- Joined: Wed Jan 09, 2013 9:02 am
- Location: btr rdx, r8 +
3 Little Pigs System Automation
As the requester had never again made any post after his request, I am to be honest, not anylonger much motivated in this project..safxpro » Sat Jun 28, 2014 2:32 pm wrote:Hi Tommaso,
Thank you for the EA. I have great interest on the EA; I have taken a 1on1 session with the developer of the 3 Little Pigs System and even have the indicator (manual). I am trading the system on the live account and I give it thumbs up.
Are you not able to implement the rules as set out by the requestor, for example:
1) Stop Loss:
(a) For Uptrend: SL = 34 SMA - (MAX_VALUE(ATR) + (MIN_VALUE(ATR))/4
(b) For Downtrend: SL =34 SMA + (MAX_VALUE(ATR) + (MIN_VALUE(ATR))/4
2) Re-entry
(a) Uptrend: Re-enter trade when candle touches or dips below the 34 SMA and still closes above the 34 SMA regardless of whether SL was taken out or not (if multiple trade parameter set to 2 and above of cause)
(b) Downtrend: Re-enter trade when candle touches or ventures above the 34 SMA and closes below the 34 SMA regardless of whether SL was taken out or not (if multiple trade parameter set to 2 and above of cause)
3) Trade Management:
(a) SL trails the 34 SMA by the same distance
(b) TP: Trade is automatically exited when the trailing SL is taken out
Kind regards,
SAFXPRO
Cheers
Tommaso
Global Prime is the official SHF broker 
Searching for Servers and Workstations with individual configuration?
Just PM
Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
Searching for Servers and Workstations with individual configuration?
Just PM
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
-
safxpro
- Trader
- Posts: 12
- Joined: Mon Jun 16, 2014 4:20 pm
3 Little Pigs System Automation
Pity I can't write a single line of code.
Tommaso any pointers you can give me, sites or resources that can get me up and running quickly. I must learn how to code so that I can make the necessary enhancements to this system.
Kind regards,
SAFXPRO
- milanese
- TechAdmin
- Posts: 3293
- Joined: Wed Jan 09, 2013 9:02 am
- Location: btr rdx, r8 +
3 Little Pigs System Automation
maybe if I find some time I will take a look to this EA, as I remember it trades the rules requested,the lotsize thingy would be easy to change, but some adaptions for the new Empty4 6xx code and some fixes are needed.., here you can take a first look http://www.stevehopwoodforex.com/phpBB3 ... m.php?f=50, every trader should in my opinion be able to code some basics as it is really usefull...safxpro » Sat Jun 28, 2014 5:07 pm wrote:
Pity I can't write a single line of code.
Tommaso any pointers you can give me, sites or resources that can get me up and running quickly. I must learn how to code so that I can make the necessary enhancements to this system.
Kind regards,
SAFXPRO
Cheers
Tommaso
Global Prime is the official SHF broker 
Searching for Servers and Workstations with individual configuration?
Just PM
Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
Searching for Servers and Workstations with individual configuration?
Just PM
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
-
safxpro
- Trader
- Posts: 12
- Joined: Mon Jun 16, 2014 4:20 pm
3 Little Pigs System Automation
Thank you Tommaso, I will go through the Coders Hangout on the weekend.
Kind regards,
SAFXPRO
Kind regards,
SAFXPRO
- forexdan
- Posts: 9
- Joined: Mon Mar 19, 2012 12:49 pm
3 Little Pigs System Automation
I've been running this for a while using a Global Prime demo on 4 pairs, and it's done pretty well
http://www.myfxbook.com/members/xxxxdan/3little/1011373
http://www.myfxbook.com/members/xxxxdan/3little/1011373
- milanese
- TechAdmin
- Posts: 3293
- Joined: Wed Jan 09, 2013 9:02 am
- Location: btr rdx, r8 +
3 Little Pigs System Automation
Thank you for your testing, yes looks really not bad so farforexdan » Tue Oct 14, 2014 10:48 am wrote:I've been running this for a while using a Global Prime demo on 4 pairs, and it's done pretty well
http://www.myfxbook.com/members/xxxxdan/3little/1011373
Cheers
Tommaso
Global Prime is the official SHF broker 
Searching for Servers and Workstations with individual configuration?
Just PM
Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
Searching for Servers and Workstations with individual configuration?
Just PM
NOTE: Cookies and JavaScript are required for the using the board, with full functionality