• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 10:24am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 10:24am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

I will code your scalping EAs for no charge 81 replies

Need help to code EAs for MT4 and MT5 6 replies

I will code your pivot EAs for no charge 20 replies

EAs and indicators relating to moutaki... 22 replies

InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 43,784
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments
Tags: I will code your EAs and Indicators for no charge
Cancel

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 15641565Page 156615671568 3179
  • 1 Page 1566 3179
  •  
  • Post #31,301
  • Quote
  • Nov 7, 2019 11:14am Nov 7, 2019 11:14am
  •  DaveSee
  • | Joined Nov 2019 | Status: Junior Member | 1 Post
Hi traders,

I am looking for a very simple EA that opens pending order (always a limit order) with the exactly same parameters as the last closed trade of a particular currency pair. It basically copies the entry price, and TP (no SL needed) values of the last closed trade once this trade is closed by hitting its TP level or manually and creates another exactly the same. That's it. I searched everywhere possible but came up dry.

Example #1: Sell trade entry at 1.0200 with TP= 50 pips opened either manually or triggered as a pending order (mostly). Price hits TP= 50 pips at 1.0150. This trade is closed. And the EA opens a sell limit pending order at 1.0200 with TP= 50 pips (at 1.0150).

Example #2: Buy trade entry at 1.0400 with TP= 50 pips opened either manually or triggered as a pending order (mostly). Price hits TP= 50 pips at 1.0450. This trade is closed. And the EA opens a buy limit pending order at 1.0400 with TP= 50 pips (at 1.0450).

If TP is not hit or trade not closed manually, the EA does nothing. A spread filter or time period filter would be a nice bonus, not necessary though.

Please anyone share if you have it or know where to find it or I kindly ask Metatrader to help with coding. Thanks a lot.
 
 
  • Post #31,302
  • Quote
  • Edited 11:57am Nov 7, 2019 11:37am | Edited 11:57am
  •  Afrodeenn
  • | Joined Jan 2019 | Status: Member | 15 Posts
Quoting mntiwana
Disliked
{quote} Try this {file}
Ignored
Hello sir nice to see you
Please add mertangle in this ea
Fix sell order modify error
Mertangle with pip step and lot multiplayer
And max trade thanks advance
And add 2 more functional
One forward trend
Use
Fabonachii
If open long
Price still moving forward open one more long order order with double lot size with minimal exit
And mertangle order is use reverse fabo with half of lot size and Normal exit sir
I'll attach example code
Please check it sir thank for your valuable time

int LowBar = 0, HighBar= 0;
double LowValue = 0 ,HighValue = 0;

int lowest_bar = iLowest(NULL,0,MODE_LOW,BarsBack,StartBar);
int highest_bar = iHighest(NULL,0,MODE_HIGH,BarsBack,StartBar);

double higher_point = 0;
double lower_point = 0;
HighValue=High[highest_bar];
LowValue=Low[lowest_bar];
Gd_460 = HighValue - LowValue;

double pricein0 = (LowFibo/100)*Gd_460 + LowValue;
double pricein1 = (23.6/100)*Gd_460 + LowValue;
double pricein2 = (38.2/100)*Gd_460 + LowValue;
double pricein3 = (50.0/100)*Gd_460 + LowValue;
double pricein4 = (61.8/100)*Gd_460 + LowValue;
double pricein5 = (76.4/100)*Gd_460 + LowValue;
double pricein6 = (HighFibo/100)*Gd_460 + LowValue;
Long =Ask > pricein6
Short =Bid < pricein0
Attached File(s)
File Type: mq4 RSI_R2_EA_multi_pairSelect_v11.1(Bullforyou.com).mq4   25 KB | 203 downloads
 
 
  • Post #31,303
  • Quote
  • Nov 7, 2019 11:59am Nov 7, 2019 11:59am
  •  Afrodeenn
  • | Joined Jan 2019 | Status: Member | 15 Posts
Anyone please make ea with this code
Thanks


extern bool use_bb=true;
extern int bb_period=20;
extern int bb_deviation=2;
extern int bb_shift=0;
extern bool use_stoch=true;
extern int k=5;
extern int d=3;
extern int slowing=3;
extern int price_field=0;
extern int stoch_shift=0;
extern int lo_level=30;
extern int up_level=70;
extern bool use_rsi=true;
extern int rsi_period=12;
extern int rsi_shift=0;
extern int lower=30;
extern int upper=70;
extern bool use_adx=true;
extern int ADX=7;
extern int adxTrigger=23;


{
double upBB=iBands(Symbol(),0,bb_period,bb_deviation,0,PRICE_CLOSE,MODE_UPPER,bb_shift);
double loBB=iBands(Symbol(),0,bb_period,bb_deviation,0,PRICE_CLOSE,MODE_LOWER,bb_shift);
double stoch=iStochastic(Symbol(),0,k,d,slowing,MODE_SMA,price_field,MODE_SIGNAL,stoch_shift);
double rsi=iRSI(Symbol(),0,rsi_period,PRICE_CLOSE,rsi_shift);


double ADXminus = iADX(Symbol(),0,ADX,PRICE_OPEN,MODE_MINUSDI,0);
double ADXplus = iADX(Symbol(),0,ADX,PRICE_OPEN,MODE_PLUSDI,0);
double ADXmain = iADX(Symbol(),0,ADX,PRICE_OPEN,MODE_MAIN,0);



if(use_bb && use_stoch && use_rsi && use_adx)
{
if(High[bb_shift]>upBB && stoch>up_level && rsi>upper && (ADXminus<ADXplus && ADXmain>=adxTrigger )) return(sell);
if(Low[bb_shift]<loBB && stoch<lo_level && rsi<lower &&( ADXmain>=adxTrigger) ) return(buy);
}
if(use_bb && use_stoch && !use_rsi && use_adx)
{
if(High[bb_shift]>upBB && stoch>up_level && (ADXminus<ADXplus && ADXmain>=adxTrigger ) )return(sell);
if(Low[bb_shift]<loBB && stoch<lo_level && ( ADXmain>=adxTrigger ) ) return(buy);
}
if(use_bb && !use_stoch && !use_rsi)
{
if(High[bb_shift]>upBB) return(sell);
if(Low[bb_shift]<loBB) return(buy);
}
if(!use_bb && use_stoch && use_rsi)
{
if(stoch>up_level && rsi>upper) return(sell);
if(stoch<lo_level && rsi<lower) return(buy);
}
if(!use_bb && use_stoch && !use_rsi)
{
if(stoch>up_level) return(sell);
if(stoch<lo_level) return(buy);
}
if(use_bb && !use_stoch && use_rsi)
{
if(High[bb_shift]>upBB && rsi>upper) return(sell);
if(Low[bb_shift]<loBB && rsi<lower) return(buy);
}
if(!use_bb && !use_stoch && use_rsi)
{
if(rsi>upper) return(sell);
if(rsi<lower) return(buy);
}
return(0);
}
 
 
  • Post #31,304
  • Quote
  • Nov 7, 2019 2:55pm Nov 7, 2019 2:55pm
  •  leoneill
  • | Joined Feb 2013 | Status: Junior Member | 2 Posts
I need a very simple indicator which alerts (popup, email, sound, push) when a candle CLOSES above or below a trend or horizontal line.
So it alerts when a new candle has started and previous candle has closed below or above this line.
Indicator must place a line on the chart, which I can then move/ drag around.

Cheers, Leo
 
 
  • Post #31,305
  • Quote
  • Nov 7, 2019 4:17pm Nov 7, 2019 4:17pm
  •  pouya7
  • | Joined Aug 2019 | Status: Member | 21 Posts
Hello my friends
I need to use a dynamic take profit in my EA but I don't know how!!! please if you can help show me some hint or if you have some example EA or code please sent them to me...
I wanna use a moving average to take profit when the price hits moving average at the moment.
appreciate your help.
 
 
  • Post #31,306
  • Quote
  • Nov 7, 2019 11:09pm Nov 7, 2019 11:09pm
  •  FxHiveMind
  • | Joined Jun 2019 | Status: Member | 17 Posts
Hey Guys. Let me know if anyone wants to help edit a indicator for me. It’s a renko indicator, got a great system but need help finishing an indicator.
 
 
  • Post #31,307
  • Quote
  • Nov 7, 2019 11:22pm Nov 7, 2019 11:22pm
  •  shahrilkhmd
  • | Joined Aug 2016 | Status: Junior Member | 2 Posts
i have an EA created by me.. if anyone interested .. can pm me directly .. i will give u the file via telegram
 
 
  • Post #31,308
  • Quote
  • Nov 7, 2019 11:44pm Nov 7, 2019 11:44pm
  •  forex.bvt
  • | Joined Jan 2019 | Status: Member | 41 Posts
Quoting shahrilkhmd
Disliked
i have an EA created by me.. if anyone interested .. can pm me directly .. i will give u the file via telegram
Ignored
Pm me your telegram, i will write to you there.
Thanks...
 
 
  • Post #31,309
  • Quote
  • Nov 8, 2019 1:43am Nov 8, 2019 1:43am
  •  Jollson
  • Joined Aug 2017 | Status: Member | 986 Posts
Hi, I have a Fib tunnel indicator which helps me a lot, Can anyone help me to put an Alert when price crosses the Tunnel upwards/down. Thanks in advance.
Attached File(s)
File Type: mq4 FIBTunnel.mq4   3 KB | 396 downloads
 
 
  • Post #31,310
  • Quote
  • Edited 9:26am Nov 8, 2019 5:13am | Edited 9:26am
  •  eevra
  • | Joined Oct 2015 | Status: Member | 53 Posts
hi
 
 
  • Post #31,311
  • Quote
  • Edited 10:51am Nov 8, 2019 10:30am | Edited 10:51am
  •  thjw
  • | Joined Dec 2014 | Status: Member | 247 Posts
need CCFP turned into a MTF CCFP
I already have MTF CC
Can't find MTF CCFP anywhere
Attached File(s)
File Type: mq4 CCFp.mq4   17 KB | 192 downloads
 
 
  • Post #31,312
  • Quote
  • Nov 8, 2019 11:15am Nov 8, 2019 11:15am
  •  maximumguita
  • Joined Apr 2015 | Status: Member | 1,061 Posts
Quoting thjw
Disliked
need CCFP turned into a MTF CCFP I already have MTF CC Can't find MTF CCFP anywhere {file}
Ignored
that's one that i have, maybe it helps you meanwhile

Attached File(s)
File Type: mq4 CCFp mtf alerts 2.07 nmc.mq4   31 KB | 366 downloads
(.)(.) think first ...
 
 
  • Post #31,313
  • Quote
  • Nov 8, 2019 12:22pm Nov 8, 2019 12:22pm
  •  thjw
  • | Joined Dec 2014 | Status: Member | 247 Posts
thats not it...thats the CC.
I have looked everywhere on google and forex factory and it has not been programmed yet...
 
 
  • Post #31,314
  • Quote
  • Nov 8, 2019 1:08pm Nov 8, 2019 1:08pm
  •  photize
  • | Joined Nov 2012 | Status: Member | 310 Posts
Quoting ultax
Disliked
Hi, Does anyone know custom code I can write into an EA where I put a start lot size like 0.1 and then I double it within the same set of trade? So for example.... 0.1, 0.2, 0.4, 0.8, 1.6 etc I am stuck at the moment with only trading the same size. Can anyone help? Thank you!
Ignored
plenty of scripts around for that , not hard to find you can pick the spacing and the multiplier, or addition etc.
good luck
Pho
 
 
  • Post #31,315
  • Quote
  • Nov 8, 2019 1:17pm Nov 8, 2019 1:17pm
  •  Dcrs
  • | Commercial Member | Joined Jun 2019 | 217 Posts
Hi Guys does any one have it, a good indicator for mt4 cumulative delta ?

Something like this one here: https://www.mql5.com/en/market/product/5102#

Can some kind person give a hand ?

Tks
 
 
  • Post #31,316
  • Quote
  • Nov 8, 2019 1:57pm Nov 8, 2019 1:57pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,438 Posts
Quoting thjw
Disliked
thats not it...thats the CC. I have looked everywhere on google and forex factory and it has not been programmed yet...
Ignored
Still it needs widen your search,i think it is there
 
 
  • Post #31,317
  • Quote
  • Nov 8, 2019 2:50pm Nov 8, 2019 2:50pm
  •  thjw
  • | Joined Dec 2014 | Status: Member | 247 Posts
Quoting mntiwana
Disliked
{quote} Still it needs widen your search,i think it is there
Ignored
thats what i thought...but its labeled wrong
they call it ccfp mtf but its a cc...its not available unfortunately...tx anyway
 
 
  • Post #31,318
  • Quote
  • Nov 8, 2019 4:40pm Nov 8, 2019 4:40pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,438 Posts
Quoting thjw
Disliked
{quote} thats what i thought...but its labeled wrong they call it ccfp mtf but its a cc...its not available unfortunately...tx anyway
Ignored
You needs to explain more properly where possible with demonstrating picture/s,so that you get a proper response,for not saying "that is not it"
 
 
  • Post #31,319
  • Quote
  • Nov 9, 2019 1:11am Nov 9, 2019 1:11am
  •  cja
  • Joined Feb 2007 | Status: Member | 1,979 Posts
Quoting thjw
Disliked
thats not it...thats the CC. I have looked everywhere on google and forex factory and it has not been programmed yet...
Ignored
Try this.
Attached File(s)
File Type: ex4 CCFp MTF.ex4   47 KB | 357 downloads

Attached Image (click to enlarge)
Click to Enlarge

Name: CCp.png
Size: 42 KB
Trade what you see not what you hope
 
2
  • Post #31,320
  • Quote
  • Nov 9, 2019 2:33am Nov 9, 2019 2:33am
  •  Ashwani
  • Joined Oct 2016 | Status: Member | 197 Posts
someone please share qwma macd indicator for mt4
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 15641565Page 156615671568 3179
    • 1 Page 1566 3179
39 traders viewing now, 9 are members:
salman1
,
wofvman
,
Invisible
,
maolincrei
,
Invisible
,
dwenblade
,
Oracheal
,
80050
,
forexindian
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023