I will program your PROFITABLE trading system into an EA for free!

Mar 13, 2013 at 11:34
Vues 13,494
81 Replies
Membre depuis Sep 13, 2012   posts 20
Jul 04, 2014 at 08:55
I am a programmer and trader for around 10 years. Many strategies look good on paper but fail in reality. If you send me your strategy with a live or demo account Statement of at least 20 Trades that you made sticking to your rules i can programm it for free. I will not program grid or martingale approaches. PM me if your interested.

Membre depuis Mar 31, 2013   posts 37
Jul 04, 2014 at 10:02
Membre depuis Apr 01, 2014   posts 14
Jul 04, 2014 at 22:45
david14 posted:
ping me: [email protected]

[email protected]
The money never sleep
Membre depuis Sep 13, 2012   posts 20
Jul 04, 2014 at 22:46
privacy is of course main priority, the ea will not be shared.
Membre depuis Feb 04, 2012   posts 85
Jul 04, 2014 at 23:05 (édité Jul 04, 2014 at 23:05)
Before submitting any strategies you should know that Stevo will be distributing them to 'volunteers' to manually test them on DEMO accounts...

READ HIS ENTRY IN THIS THREAD: https://www.myfxbook.com/community/experienced-traders/i-want-only-safe-4/437746,92

So it is just funny that 'privacy' is a 'main priority'...
Membre depuis Sep 13, 2012   posts 20
Jul 05, 2014 at 11:06
These are two completely different projects, each handeled seperateley! Those are around 50 strategys that haven't been tested! Please don't mix things up.
Membre depuis Jun 03, 2010   posts 696
Jul 07, 2014 at 16:25
Stevo0610 posted:
I am a programmer and trader for around 10 years. Many strategies look good on paper but fail in reality. If you send me your strategy with a live or demo account Statement of at least 20 Trades that you made sticking to your rules i can programm it for free. I will not program grid or martingale approaches. PM me if your interested.



Maybe just say 'give me Your best EA for free! But working on my rules - no grid and martingale!'

PAMM MANAGER // Professional Fund Manager
Membre depuis Sep 10, 2014   posts 2
Sep 11, 2014 at 06:58
Stevo0610 posted:
I am a programmer and trader for around 10 years. Many strategies look good on paper but fail in reality. If you send me your strategy with a live or demo account Statement of at least 20 Trades that you made sticking to your rules i can programm it for free. I will not program grid or martingale approaches. PM me if your interested.

I need to modify Bollinger Band, If you want to help me I will send you details.
Membre depuis Mar 23, 2013   posts 3
Jan 25, 2015 at 07:46
can you code this for me1 Min chart green LWMA price open MA price 65 red EMA price close MA price 150 donchian channel 100 RSI bar charts 85 blue above 50 red below 50. PZ oscillator (1:3) (5:1) when price action crosses from below above the red MA and the green is coming from below and is close to red MA. wait for pull back to to red and green MA(green should be about crossing or touching the Red) At time price crossed red MA candles turned blue and as they pulled back near the red and green MA they turned red. open a buy candle when the candle turns blue. SL 30 pips TP 5 pip above the upper 100 donchian channel. SL should change to Break even when price reaches 2 to 3 pips near the 100 donchian upper channel.
Another pull back will happen buy order should open when PZ oscillator shows a bullish divergence. if price does not go up another buy at the green MA if price does not go up another buy at the red MA or if another bullish divergence appears between the green and red MA or just below the red MA. TP is 5 pips above the 100 donchian channel Break even 2 or 3 pips before 100 donchian upper channel stop loss 30 pips.. basically should only buy when green is above red MA and stop buying on pull backs when green crosses red down. then when green crosses red to the below it should follow same rules for buy order on sell orders
Membre depuis Jun 03, 2010   posts 696
Jan 25, 2015 at 13:25
You really want to give Your best strategy to this guy? You are awsome...
PAMM MANAGER // Professional Fund Manager
Membre depuis Apr 14, 2014   posts 3
Jan 26, 2015 at 20:12
Candyman652 I understand your strategy its one i use too myself but instead of dochian i use keltner channels. RSi and PZ oscillator is also not a problem for me either. Why dont you contact me on skype and i can discuss the specs further and maybe also help you improve your strategy. My skype alias is 'Whitebliss'. You could also get intouch with me via email, its [email protected].

Cheers
Membre depuis Jan 23, 2014   posts 7
Sep 22, 2015 at 16:32
Hello , can you please add a pop up notification and a sound alert to this cross indicator : /*[[
Name := EMA Cross
Author := Hapsa
Link := https://www.metaquotes.net/
Separate Window := No
Separate Window := No
First Color := Red
First Draw Type := Symbol
First Symbol := 108
Use Second Data := Yes
Second Color := DarkOliveGreen
Second Draw Type := Symbol
Second Symbol := 108
]]*/


#property copyright 'Hapsa'
#property link ''
extern int SlowPeriod=20;
extern int FastPeriod=5;

#property indicator_buffers 3
#property indicator_chart_window
#property indicator_color1 Red
#property indicator_color2 Green
double L20[];
double L50[];
double shift=0,val1=0,val2=0;

int init()
  {
  
IndicatorBuffers(3);
SetIndexStyle(0,DRAW_ARROW);
SetIndexStyle(1,DRAW_ARROW);

SetIndexArrow(0, 108);
SetIndexArrow(1, 108);

SetIndexBuffer(0,L20);
SetIndexBuffer(1,L50);


  

//---- indicators
//----
   return(0);
  }





int start()
  {
   
   
   int counted_bars=IndicatorCounted();
//----
   int i = Bars - counted_bars - 1;
   while (i>=0)
   {
   
   val1=0;
val2=0;

double iMaSlowPrevious = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaSlowCurrent = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i);
double iMaFastPrevious = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaFastCurrent = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i);
   
   if (iMaFastPrevious<iMaSlowPrevious && iMaFastCurrent>iMaSlowCurrent ) val1=High[i];
   if (iMaFastPrevious>iMaSlowPrevious && iMaFastCurrent<iMaSlowCurrent ) val2=Low[i];
    L20[i]=val1+5*Point;
    L50[i]=val2-5*Point;
     i--;
   }

//----
   return(0);
}
Membre depuis Jul 29, 2012   posts 3
Feb 12, 2016 at 11:46
hello ,

id like you to help create an ea . the result is below.

https://www.myfxbook.com/members/iverlord/mt4-1144466/1497807
forex_trader_232486
Membre depuis Feb 18, 2015   posts 6
Apr 03, 2016 at 06:11
You can develop your own EA without any programming skills.

There is a software called Forex Strategy Builder (FSB) that you can build your own EA easily as long as you have a trading strategy in mind.

The back testing results is instant and hence you would know immediately whether your EA is profitable or not and thereafter, make the necessary adjustment you need till you get the results you wanted.

I've already development hundreds of very profitable EA with this software.

I developed and test run several hundreds of EA in many accounts.

My aim is to develop, fine tune and improve the EA's performance and thus select the best EA that can withstand various market volatility and produce consistent and reliable performance.

In each MT4 account, there are several good and not so good EAs and therefore, it would affect the account balance. Since these accounts are meant for EA Development, money management for each account is not my focus here. These accounts are set up to do EA analysis and thus I'm looking at each and every EA's individual results to do the selection and elimination.
forex_trader_232486
Membre depuis Feb 18, 2015   posts 6
Apr 03, 2016 at 06:12
The software FSB website is www.forexsb.com
Membre depuis Apr 20, 2015   posts 23
Apr 04, 2016 at 06:23
hi,
i'm slowly thinking about transferring my idea in to an EA, and technically it's profitable, - and it's rather simple too!

it revolves around NFP, placing just a few trades, closing them at either a TP or with a time switch (closing trades after X minutes, or at a specific time).

https://www.myfxbook.com/community/programming/nfp-news-trader/1095880,1

i would appreciate if you'd take a look, maybe you'll find it interesting.
get back to me, if that's the case.
cheers!

N
Membre depuis Apr 28, 2016   posts 2
Apr 30, 2016 at 11:22
hello freefox, i want to show you my strategy and you can verify it with an demoaccount mt4its in forex eurusd. this is my private email [email protected]. send me a text as quickly as possible.
Membre depuis Nov 11, 2012   posts 271
May 10, 2016 at 07:04
Can any programmer please connect with me privately to discuss a strategy and building an EA based on it. The trade entry logic is quite straightforward but the money management and 'filtering' of trades are very crucial.

Thanks.
antariks1@
Membre depuis Apr 28, 2016   posts 2
May 10, 2016 at 14:28
look on the graphic eurusd . each that the price goes up for at least 0.00047 in one minute( the price close minus the price open in one minute) it will go down for after at least 0.00020 16 hours 22 minutes later.
Membre depuis Jun 14, 2013   posts 2
Jul 27, 2016 at 07:55
Hi

I need to code one ea, it is 90% and above accuracy.
Just one indicator.
If you will ready to coding, reply me.
I will send indicator with strategy.
yenvenkatachalam at gmail com
Se connecter / S’inscrire to comment
You must be connected to Myfxbook in order to leave a comment
*Lutilisation commerciale et le spam ne seront pas tolérés et peuvent entraîner la fermeture du compte.
Conseil : Poster une image/une url YouTube sera automatiquement intégrée dans votre message!
Conseil : Tapez le signe @ pour compléter automatiquement un nom dutilisateur participant à cette discussion.