• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 6:22pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 6:22pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Need help to code EAs for MT4 and MT5 4 replies

I will code your scalping EAs for no charge 36 replies

I will code your pivot EAs for no charge 18 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
  • 37,035
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 7677Page 787980 2689
  • 1 Page 78 2689
  •  
  • Post #1,541
  • Quote
  • Feb 2, 2013 3:27pm Feb 2, 2013 3:27pm
  •  lausanne
  • | Joined Jan 2013 | Status: Member | 5 Posts
OK OK can anyone help?
 
 
  • Post #1,542
  • Quote
  • Feb 2, 2013 10:45pm Feb 2, 2013 10:45pm
  •  cyxstudio
  • | Joined Feb 2013 | Status: Junior Member | 1 Post
is TS still around? i would love to have him help me script the 2 period RSI strategy.

details as here

http://stockcharts.com/help/doku.php...rsi2#scan_code

open buy position when 2 period RSI is under 5 AND Ask price is above 200 day Simple Moving average, exit when Ask price is higher than 5 day simple moving average

open sell position when 2 period RSI is above 95 AND Bid price is below 200 day simple moving average, exit when Bid price is lower than 5 day simple moving average.
 
 
  • Post #1,543
  • Quote
  • Feb 3, 2013 4:38pm Feb 3, 2013 4:38pm
  •  Jns
  • | Joined Jul 2009 | Status: Member | 236 Posts
Hey Guys

Could someone tell me where I could get hold of an alert indicator with Email function when price close above or below the following indicator...

34EMA Low -- Indicator alerts once price close below the line -- Sell alert
34EMA High -- Indicator alerts once price close above the line -- Buy Alert

If you could let me know I would appreciate it.

I have some more Ideas on this for a EA, buy sell and TP.

Let me know if you are interested

REGARDS

JNS
Attached Image (click to enlarge)
Click to Enlarge

Name: 34 EMA.jpg
Size: 39 KB
BE THE BEST YOU CAN BE AND BE IT TODAY
 
 
  • Post #1,544
  • Quote
  • Feb 3, 2013 5:09pm Feb 3, 2013 5:09pm
  •  CodeMeister
  • Joined Sep 2009 | Status: Making Code While Making Pips | 1,672 Posts
Quoting Jns
Disliked
Hey Guys

Could someone tell me where I could get hold of an alert indicator with Email function when price close above or below the following indicator...

34EMA Low -- Indicator alerts once price close below the line -- Sell alert
34EMA High -- Indicator alerts once price close above the line -- Buy Alert

If you could let me know I would appreciate it.

I have some more Ideas on this for a EA, buy sell and TP.

Let me know if you are interested

REGARDS

JNS
Ignored

http://www.forexfactory.com/showthread.php?t=317213

http://www.forexfactory.com/showthread.php?t=381813


Already done. There is a single chart version and a dashboard one for monitoring multiple pairs.
 
 
  • Post #1,545
  • Quote
  • Feb 3, 2013 6:28pm Feb 3, 2013 6:28pm
  •  Jns
  • | Joined Jul 2009 | Status: Member | 236 Posts
Thanks Codemeister

I'll be sure to check it out right away
BE THE BEST YOU CAN BE AND BE IT TODAY
 
 
  • Post #1,546
  • Quote
  • Feb 5, 2013 6:18am Feb 5, 2013 6:18am
  •  Jns
  • | Joined Jul 2009 | Status: Member | 236 Posts
Hi Codemeister

I ran both the indicators, they are close to what I require but not a 100% hit. I have however managed to find the attached indicator which is exactly what I require it even has the email function I need, however it does not work, would you be able to dust the cob webs off it if possible and see if you could get it going.

Regards
JNS
Attached File
File Type: mq4 MAxMAhilo_cross.mq4   9 KB | 383 downloads
BE THE BEST YOU CAN BE AND BE IT TODAY
 
 
  • Post #1,547
  • Quote
  • Feb 5, 2013 9:59am Feb 5, 2013 9:59am
  •  koky_2006
  • | Joined Feb 2013 | Status: Junior Member | 1 Post
hey guys, i have found goldminer EA somewhere on internet, it's based on goldminer1 and goldminer2 indicators
the problem is it don't work fine with me so i think it needs alittle modification

it will be better for me if it only based on goldminer1 only as it make buy when the buy arrow appear and close it and make a sell when the sell arrow appear... etc

i will be grateful if anyone make this modification for me
here are the indicatiors and the old EA

thanks alot and waiting for your reply
Attached Files
File Type: mq4 Goldminer System EA.mq4   16 KB | 388 downloads
File Type: ex4 goldminer1.ex4   6 KB | 366 downloads
File Type: ex4 goldminer2.ex4   4 KB | 349 downloads
 
 
  • Post #1,548
  • Quote
  • Feb 6, 2013 12:59pm Feb 6, 2013 12:59pm
  •  ~bull.bear~
  • Joined Sep 2012 | Status: Aim Consistent Income | 791 Posts
Hi GUys!

Anyone can help explain this? This should be easy for you. I think sometimes i am fool with easy code.

Why this statement 0.01>=0.01 is false?

Actually i get from this, my Minlot is 0.01
double Size=0.03;
double Size_In=0.02;
double b=MarketInfo(Symbol(),MODE_MINLOT);
bool YES=(Size-Size_In)>=b;

Print(YES);

I read this from MT4 language ebook,
Two unnormalized floating-point numbers cannot be linked by == or != operations. That is why it is necessary to
subtract one from another, and the normalized outcome needs to be compared to null.
 
 
  • Post #1,549
  • Quote
  • Feb 6, 2013 3:50pm Feb 6, 2013 3:50pm
  •  CodeMeister
  • Joined Sep 2009 | Status: Making Code While Making Pips | 1,672 Posts
Quoting ~bull.bear~
Disliked
Hi GUys!

Anyone can help explain this? This should be easy for you. I think sometimes i am fool with easy code.

Why this statement 0.01>=0.01 is false?

Actually i get from this, my Minlot is 0.01
double Size=0.03;
double Size_In=0.02;
double b=MarketInfo(Symbol(),MODE_MINLOT);
bool YES=(Size-Size_In)>=b;

Print(YES);

I read this from MT4 language ebook,
Two unnormalized floating-point numbers cannot be linked by == or != operations. That is why it is necessary to
subtract one from another, and the normalized...
Ignored
The answer is in the quote from the book.

If you looked at the number the same as the computer does, you would see the extra decimal digits that makes one number slightly different than another. The difference isn't great to round when the number is truncated for display. So your display format is 2 digits out of the 16? digits in a double.

The computer is never wrong.
 
 
  • Post #1,550
  • Quote
  • Feb 6, 2013 3:52pm Feb 6, 2013 3:52pm
  •  lausanne
  • | Joined Jan 2013 | Status: Member | 5 Posts
I have an EA that has been coded to a particular MT4 account that i used some time ago but i find that i like to try other MT4 brokers. Can you decode so that it is not restricted to this one particular broker and can be applied whenever i decide to change to another. The indicators are on Page 103 (ProFX)

Thanks
 
 
  • Post #1,551
  • Quote
  • Feb 6, 2013 5:28pm Feb 6, 2013 5:28pm
  •  hanover
  • Joined Sep 2006 | Status: ... | 8,090 Posts
Quoting lausanne
Disliked
OK OK can anyone help?
Ignored
What is being said is that you need to post the .mq4 files, before anybody can even consider trying to help you. The .ex4 files are binary, and can not be read by humans.

To illustrate what I mean, below is a snapshot of part of the 'Pro FX400 EA.ex4' file that you attached to post #1536.
Attached Image (click to enlarge)
Click to Enlarge

Name: 2013-02-07_1134.jpg
Size: 279 KB
 
 
  • Post #1,552
  • Quote
  • Feb 6, 2013 5:31pm Feb 6, 2013 5:31pm
  •  lausanne
  • | Joined Jan 2013 | Status: Member | 5 Posts
thanks for your reply
 
 
  • Post #1,553
  • Quote
  • Feb 6, 2013 9:50pm Feb 6, 2013 9:50pm
  •  ~bull.bear~
  • Joined Sep 2012 | Status: Aim Consistent Income | 791 Posts
Quoting CodeMeister
Disliked
The answer is in the quote from the book.

If you looked at the number the same as the computer does, you would see the extra decimal digits that makes one number slightly different than another. The difference isn't great to round when the number is truncated for display. So your display format is 2 digits out of the 16? digits in a double.

The computer is never wrong.
Ignored

Thanks.
 
 
  • Post #1,554
  • Quote
  • Feb 7, 2013 5:52am Feb 7, 2013 5:52am
  •  ~bull.bear~
  • Joined Sep 2012 | Status: Aim Consistent Income | 791 Posts
Another confusion problem. Here is it.

2013.02.07 18:42:312009.05.11 09:06 xxxxxxx EURUSD,M1: 1.3628 1.3626 1.3666 1.3586
2013.02.07 18:42:312009.05.11 09:06 xxxxxxx EURUSD,M1: 1.3628 1.3588 1.3666 1.3586
2013.02.07 18:42:312009.05.11 09:06 xxxxxxx EURUSD,M1: OrderSend error 130
2013.02.07 18:42:312009.05.11 09:06 xxxxxxx EURUSD,M1: invalid stops


I put print between my code to know the issue but still confuse. This is for sellstop order. And print code as
Print(Bid," ",En," ",Spt," ",Tgt); The 1st entry price is too near to current market, so i change it to 1.3588, my broker minimum distant is 3 pips, but still trigger invalid stop error in the end.


Please help me. Thanks.
 
 
  • Post #1,555
  • Quote
  • Feb 7, 2013 5:07pm Feb 7, 2013 5:07pm
  •  laoshr
  • | Joined Jun 2009 | Status: Member | 55 Posts
Good Day,

I was looking for someone that could add an auto-trendline function to the ASI indicator. I have an RSI indicator which has the auto trendline and I've tried to copy the code over but it doesn't seem to work.

I wanted to have the lines drawn from a 2-3 bar pullback (possibly a setting?) and the trendlines would plot from the last higher high or last lower low to the current one. Attached are both the ASI indicator as well as the RSI-TL.

Thank you for any help in this matter.

LaoShr
Attached Files
File Type: mq4 RSI-TL.mq4   6 KB | 379 downloads
File Type: mq4 ASI.mq4   3 KB | 408 downloads
 
 
  • Post #1,556
  • Quote
  • Feb 7, 2013 9:05pm Feb 7, 2013 9:05pm
  •  angelofx
  • Joined Feb 2011 | Status: Member | 258 Posts
Hey i need your help for an indicator. It's the fractal indicator but i want it to appear as a line running across the whole length of the chart instead of the default arrow pointing up or down.

You can make it a white line as shown in the chart pasted. 1min fractal to 1 month fractal.

Will much appreciate it if you can do this.

thank you.
Attached Image (click to enlarge)
Click to Enlarge

Name: eu13.gif
Size: 20 KB
 
 
  • Post #1,557
  • Quote
  • Feb 8, 2013 6:41am Feb 8, 2013 6:41am
  •  Mary Pippins
  • | Joined Sep 2007 | Status: London | 187 Posts
Hi,

I am looking for an indicator or EA that records the maximum ticks a trade has ever been in profit and loss as long as the trade was open and drops this info in a text file.

The info in the text file should contain the following:

Instrument : Contract Size : max profit in money : max loss in money : max profit in points : max loss in points

I have many trades go in my favour but I let the run too long and often they turn against me in the end before I take the profit.
This type of indicator would help me establish the best average profit taking level for my strategy.

Many Thanks
Be like a post stamp! Stick to it until you get there!
 
 
  • Post #1,558
  • Quote
  • Feb 8, 2013 10:57am Feb 8, 2013 10:57am
  •  laoshr
  • | Joined Jun 2009 | Status: Member | 55 Posts
Quoting laoshr
Disliked
Good Day,

I was looking for someone that could add an auto-trendline function to the ASI indicator. I have an RSI indicator which has the auto trendline and I've tried to copy the code over but it doesn't seem to work.

I wanted to have the lines drawn from a 2-3 bar pullback (possibly a setting?) and the trendlines would plot from the last higher high or last lower low to the current one. Attached are both the ASI indicator as well as the RSI-TL.

Thank you for any help in this matter.

LaoShr
Ignored
I had an idea and not sure how to implement it. I wanted to use the ZigZag indicator for points and then plot the trendline on the ASI indicator corresponding to those highs or lows.
 
 
  • Post #1,559
  • Quote
  • Feb 8, 2013 1:02pm Feb 8, 2013 1:02pm
  •  Faith Trader
  • | Joined Aug 2010 | Status: God + Faith + Forex = Faith Trader | 101 Posts
Hi Everyone,

I have an indicator that repaints. I know that's not a surprise being there are many of them out there. I started a new thread to see if anybody could fix the repainting issue and as of yet I have not received any replies. I thought I would post the indicator here to see if any of you could take a look at it to see what you could do to stop the repainting. I would really appreciate it. Many thanks in advance!!


-Faith Trader
Attached File
File Type: mq4 #perfect swing.mq4   8 KB | 372 downloads
 
 
  • Post #1,560
  • Quote
  • Feb 8, 2013 2:31pm Feb 8, 2013 2:31pm
  •  Baracuda
  • | Joined Oct 2009 | Status: Member | 15 Posts
Hello Metatrader and all Coder,

could someone please be kind enough to set an alarm in the attached indicator when the upper / lower 50 Line is touched. It would be ideal if the different levels of sound which could set the alarm to himself. (Level 20, 50,70).
That would be very useful for my trading.

Thanks in advance.

Baracuda
Attached File
File Type: ex4 #TT PACMAN TActivator.ex4   4 KB | 436 downloads
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 7677Page 787980 2689
    • 1 Page 78 2689
8 traders viewing now, 3 are members:
RightMan
,
Invisible
,
toddanderson
  • 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 / ©2022