• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:31pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:31pm
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,879
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 12461247Page 124812491250 3189
  • 1 Page 1248 3189
  •  
  • Post #24,941
  • Quote
  • Jul 11, 2018 9:26am Jul 11, 2018 9:26am
  •  porto18
  • | Joined Jul 2018 | Status: Junior Member | 1 Post
Hello,

Please can code the CCI Indicator 8 Commodity Channel Index) with SHIFT function? I want the indicator showing future values


Thanks
Porto
 
 
  • Post #24,942
  • Quote
  • Jul 11, 2018 10:01am Jul 11, 2018 10:01am
  •  ma.usman
  • | Joined Feb 2018 | Status: Member | 20 Posts
Hello Dear Members,

Can someone make stochastic indicator to locate regular and hidden divergence with an alert on every time frame. Please reply.

Regards,
Usman
 
 
  • Post #24,943
  • Quote
  • Jul 11, 2018 10:08am Jul 11, 2018 10:08am
  •  anti-flash
  • Joined Jul 2018 | Status: ... | 259 Posts
Quoting anti-flash
Disliked
3: Pips distance from week open.
Ignored
Okay Fellow Traders.

As I said, I found an EMAx EA and want to put some filters into it.

One is that I don't want the EA to open trades that are x pips above the current weekly open for buys or x pips below for sells.

I came up with an idea but as I know nothing about coding, my skills are very poor,so it didn't work.

Here it is the EMAx no exit EA code:

Inserted Code
 
//main signal
 
double SEma1=iMA(Symbol(),0,ShortEma,0,MODE_EMA,PRICE_CLOSE,i);
double SEma2=iMA(Symbol(),0,ShortEma,0,MODE_EMA,PRICE_CLOSE,i+1);
double LEma1=iMA(Symbol(),0,LongEma,0,MODE_EMA,PRICE_CLOSE,i);
double LEma2=iMA(Symbol(),0,LongEma,0,MODE_EMA,PRICE_CLOSE,i+1);
 
string SBUY="false";
string SSEL="false";
 
if(SEma1>LEma1 && SEma2<LEma2) SBUY="true";
if(SEma1<LEma1 && SEma2>LEma2)SSEL="true";}

And I tried to do this for a buy:

Inserted Code
 
extern int Distance = 100;
 
//----
 
double WO=iOpen(NULL, PERIOD_W1, 0);
 
if(SEma1>LEma1 && SEma2<LEma2 && Ask<=WO +Distance*Point) SBUY="true";

Please tell me, what am I doing wrong, what else should I include, I know with a bit of help, I'll be able to accomplish this.

Thanks a lot in advance.
Toxic Flow for FX Brokers.
 
 
  • Post #24,944
  • Quote
  • Jul 11, 2018 11:39am Jul 11, 2018 11:39am
  •  darshana1991
  • | Commercial Member | Joined Nov 2017 | 189 Posts
Hi guys...
I need to add sound alert to this indicator when changing color.. i dont know how to do it.. please help me..
Attached File(s)
File Type: ex4 ZWinnerColorSignals.ex4   11 KB | 310 downloads
File Type: mq4 ZWinnerColorSignals.mq4   2 KB | 417 downloads
 
 
  • Post #24,945
  • Quote
  • Jul 11, 2018 1:57pm Jul 11, 2018 1:57pm
  •  meatwifi
  • | Joined Feb 2018 | Status: Member | 25 Posts
Hi coders,

Attached EA should do 2 jobs, partial closing of positions and trailing stop.
The first one does not work any more.
Would you fix it?

Best regards
Attached File(s)
File Type: mq4 TrailingWithPartialClose.mq4   64 KB | 303 downloads
 
 
  • Post #24,946
  • Quote
  • Jul 11, 2018 3:46pm Jul 11, 2018 3:46pm
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,451 Posts
Quoting darshana1991
Disliked
Hi guys... I need to add sound alert to this indicator when changing color.. i dont know how to do it.. please help me.. {file} {file}
Ignored
ADD this arrow to it until a coder help with the alert i have set the arrow inside the file you can also try and reset it until it align with the reversal lines
Attached File(s)
File Type: ex4 ZWinnerAlert.ex4   4 KB | 385 downloads
 
 
  • Post #24,947
  • Quote
  • Jul 11, 2018 6:04pm Jul 11, 2018 6:04pm
  •  wolf300
  • | Joined Dec 2014 | Status: Member | 392 Posts
Hello.
Does anybody know about this "kind" of CCI MTF indi ?
The one in the pic is only ex4, so it can`t be changed. Couldn`t find the mq version.
Interesting would be to get an alert message when all colors are in line.
Maybe such an indi exists already ? Please share it, thanks.

Attached Image (click to enlarge)
Click to Enlarge

Name: cci mtf.png
Size: 80 KB
 
 
  • Post #24,948
  • Quote
  • Jul 11, 2018 7:51pm Jul 11, 2018 7:51pm
  •  lumanauw
  • | Joined Mar 2010 | Status: Member | 15 Posts
Anybody can help with this Timeframe generator?
It is for making Constant Range Bars, run it on M1 and the result is viewed as offline chart (M2)
The problem is in volume.
In the M2 Chart, if we run this EA for sometime, the volume for most recent candles (0-1-2....) is error, very high volume.
But once we started MT4 (reset), the volume is back to normal
How can I fix this volume problem?
Thank you
Attached File(s)
File Type: mq4 Range_bars_EA_new_format_1.mq4   31 KB | 277 downloads
 
 
  • Post #24,949
  • Quote
  • Jul 11, 2018 9:58pm Jul 11, 2018 9:58pm
  •  darshana1991
  • | Commercial Member | Joined Nov 2017 | 189 Posts
Quoting Slingshots1
Disliked
{quote} ADD this arrow to it until a coder help with the alert i have set the arrow inside the file you can also try and reset it until it align with the reversal lines {file}
Ignored
thank you Slingshot . .. Some one will help me to add the alert.
 
 
  • Post #24,950
  • Quote
  • Jul 11, 2018 10:53pm Jul 11, 2018 10:53pm
  •  a2xm
  • Joined Mar 2010 | Status: Member | 441 Posts
Quoting wadek069
Disliked
Hey guys, can anyone help me out with this indicator? Intended to change the lines from Previous day High, Low, Close, to Previous day High, Low, Open. Same format and everything. Tried it myself but didn't seem to work, very bad at coding lol. Any help at all will be appreciated! Wade {file}
Ignored
Hi, anyone could mod this indicator to user input selection of periods (day, week, month) and also user input high, low, close.

Thank you..
Attached File(s)
File Type: mq4 Hi-Low-Close Previous Mod2.mq4   4 KB | 294 downloads
 
 
  • Post #24,951
  • Quote
  • Jul 12, 2018 1:43am Jul 12, 2018 1:43am
  •  reteid2222
  • Joined Aug 2015 | Status: Coding Magician | 2,541 Posts
Quoting darshana1991
Disliked
Hi guys... I need to add sound alert to this indicator when changing color.. i dont know how to do it.. please help me.. {file} {file}
Ignored
You know this indicator is a repainter even after closed candles...that s the problem!
Vucking good EA coder...
#13 Return This Month: 11.2%
 
 
  • Post #24,952
  • Quote
  • Jul 12, 2018 1:51am Jul 12, 2018 1:51am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 2,473 Posts
Quoting lumanauw
Disliked
Anybody can help with this Timeframe generator? It is for making Constant Range Bars, run it on M1 and the result is viewed as offline chart (M2) The problem is in volume. In the M2 Chart, if we run this EA for sometime, the volume for most recent candles (0-1-2....) is error, very high volume. But once we started MT4 (reset), the volume is back to normal How can I fix this volume problem? Thank you {file}
Ignored
If you do not get a response - try -
Attached Image
-Too much problem and better code available.
TSLA: 30-Dec-22 123.18 // 16-Jun-23 260.54 **111.51%**
 
 
  • Post #24,953
  • Quote
  • Jul 12, 2018 2:29am Jul 12, 2018 2:29am
  •  Erebus
  • Joined Jul 2011 | Status: Member | 7,298 Posts | Online Now
Quoting a2xm
Disliked
{quote} Hi, anyone could mod this indicator to user input selection of periods (day, week, month) and also user input high, low, close. Thank you.. {file}
Ignored
Why play with dodgy code when professional code is available for free?

https://www.mql5.com/en/market/produ...tab_p_overview
Don't believe everything that you THINK
BuyDips,SellRips Return This Week: na
 
 
  • Post #24,954
  • Quote
  • Jul 12, 2018 2:53am Jul 12, 2018 2:53am
  •  goodways100
  • Joined Dec 2013 | Status: Member | 615 Posts
Can some one guide me to or give me a very honest and accurate simple Double MA cross ea with trade time start and close, preferably with MA mode and shift as well.
 
 
  • Post #24,955
  • Quote
  • Jul 12, 2018 2:54am Jul 12, 2018 2:54am
  •  goodways100
  • Joined Dec 2013 | Status: Member | 615 Posts
edit. Thankyou
 
 
  • Post #24,956
  • Quote
  • Jul 12, 2018 3:06am Jul 12, 2018 3:06am
  •  darshana1991
  • | Commercial Member | Joined Nov 2017 | 189 Posts
Quoting reteid2222
Disliked
{quote} You know this indicator is a repainter even after closed candles...that s the problem!
Ignored
is it repainting?
Attached File(s)
File Type: ex4 ZWinnerColorSignals.ex4   11 KB | 245 downloads
File Type: mq4 ZWinnerColorSignals.mq4   2 KB | 277 downloads
 
 
  • Post #24,957
  • Quote
  • Jul 12, 2018 3:28am Jul 12, 2018 3:28am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 2,473 Posts
Quoting wolf300
Disliked
Hello. Does anybody know about this "kind" of CCI MTF indi ? The one in the pic is only ex4, so it can`t be changed. Couldn`t find the mq version. Interesting would be to get an alert message when all colors are in line. Maybe such an indi exists already ? Please share it, thanks. {image}
Ignored
Request at source - https://forex-station.com/viewtopic....66#p1294898966
TSLA: 30-Dec-22 123.18 // 16-Jun-23 260.54 **111.51%**
 
 
  • Post #24,958
  • Quote
  • Jul 12, 2018 5:02am Jul 12, 2018 5:02am
  •  wolf300
  • | Joined Dec 2014 | Status: Member | 392 Posts
Quoting Phylo
Disliked
{quote} Request at source - https://forex-station.com/viewtopic....66#p1294898966
Ignored
Hello Phylo,
that`s so nice of you, thank you very much !!

Oh, btw, do you know where I can find the indicator which makes sure to stop looking for indicators, end the madness and starts the constant winning ??
 
 
  • Post #24,959
  • Quote
  • Edited 7:19am Jul 12, 2018 6:09am | Edited 7:19am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 2,473 Posts
Quoting teodosy87
Disliked
Hello everyone. Can someone help me, the indicator i have attached is something i use regularly but there is something strange happening. On some pairs it does not show on some timeframes like 1h and h4 timeframes while on other pairs there is no such problem. Can someone help ? My metatrader version 4 build 1090 {file}
Ignored
Fixed faults as described.

Will show on all Instruments and TFs ->> M1 to H4 - that the indicator TF limits.
If not showing on lower time frames press [End] key to scroll chart to end.
Alerts appear to be in order.
Attached Image (click to enlarge)
Click to Enlarge

Name: zz59.PNG
Size: 7 KB
Attached File(s)
File Type: mq4 Kg support and resistance udate-revision _mod -1.mq4   15 KB | 428 downloads
TSLA: 30-Dec-22 123.18 // 16-Jun-23 260.54 **111.51%**
 
1
  • Post #24,960
  • Quote
  • Jul 12, 2018 6:53am Jul 12, 2018 6:53am
  •  xjonasx
  • Joined Mar 2015 | Status: Member | 176 Posts
Hello everyone. my PC to break .. I lost an EA based on "forexprofit sumpreme meter" .. has / can anyone upload? .. i cant google it. thank you very much
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 12461247Page 124812491250 3189
    • 1 Page 1248 3189
50 traders viewing now, 3 are members:
ronnytan
,
MaLinaa321
,
Invisible
  • 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