• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 12:59am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 12:59am
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 pivot EAs for no charge 19 replies

I will code your scalping EAs for no charge 39 replies

Need help to code EAs for MT4 and MT5 4 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
  • 40,096
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 517518Page 519520521 2913
  • 1 Page 519 2913
  •  
  • Post #10,361
  • Quote
  • Nov 16, 2015 12:21pm Nov 16, 2015 12:21pm
  •  realkenfx
  • | Joined Nov 2015 | Status: Member | 5 Posts
Hi guys. I'm looking for someone to help me code an EA that obeys the following rules;
>Opens long trade if the previous candle is bullish
>Opens short trade if the previous candle is bearish.
>Has the option of SL and TP
>Has the option of adjusting lot size
>Has the option of setting a magic number.
>Can work on any timeframe

If two (or more) subsequent candles are in a similar direction, the EA needn't open a new trade but maintain the existing one. In a nutshell, the EA should only open a new trade if the candle direction changes regardless of any TP/SL already set. Therefore, there should always be a running trade.
I hope I made sense to someone
 
 
  • Post #10,362
  • Quote
  • Nov 16, 2015 2:02pm Nov 16, 2015 2:02pm
  •  speedytina
  • | Joined Mar 2011 | Status: Trader wannabe... | 50 Posts
Hello;

Could someone code this MacD indi to show up or down arrow on chart when histogram changes from + or - zero point?

Thanks,
Ian
Attached File(s)
File Type: mq4 MACD_ColorHist_Alert 12 26 9 LA .mq4   5 KB | 218 downloads
Cluttered charts are visual diarrhea. Whats on your charts?
 
 
  • Post #10,363
  • Quote
  • Edited 4:50pm Nov 16, 2015 4:17pm | Edited 4:50pm
  •  Shabs19
  • Joined Aug 2006 | Status: Member | 3,547 Posts
Quoting speedytina
Disliked
Hello; Could someone code this MacD indi to show up or down arrow on chart when histogram changes from + or - zero point? Thanks, Ian {file}
Ignored
Just look for any MA Cross Alert indicator, the histogram is the 12 ma and the 0 level is the 26 ma
Follow the Money
 
 
  • Post #10,364
  • Quote
  • Nov 16, 2015 6:14pm Nov 16, 2015 6:14pm
  •  buxle
  • | Joined Sep 2015 | Status: Member | 34 Posts
Hello,

I can not find similar of what i need.

Can you add simple projection line (white line at the picture) to the simple moving average of MT4 ?
The projection line length should be as the shifted back value of the MA and should have MA(simple, exponential and LW) and Price(open, close, low, high, weighted) methods to choose from.

About the projection degree, best is the direction of , 1/4 of the last bars of the MA shifted value , for example if shift back 100 value then it sohuld show the last 25 line direction. Preferably this will be adjustable.
Who can make it?

Thanks All.
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM1.png
Size: 40 KB
 
 
  • Post #10,365
  • Quote
  • Nov 16, 2015 7:06pm Nov 16, 2015 7:06pm
  •  Codix
  • | Joined Jun 2013 | Status: Member | 39 Posts
guys i think i'm having trouble with using a multitimeframe indi in the strategy tester.
It is supposed to compare a couple of indicators both on the 15M as the 60M,as the 4u,1d and 1 week charts. I have the default timeframe of the visual mode graph set to 15 minutes when i start the indicator. The alerts (prints in journal)only seem to occur on 15m timeframes. I am using the icustom() to call the indicators. Could the problem be that the visual mode graph has 15minute as its timeframe and thus only 15 minute timeframe candlesticks can be used for analysis? Please help me out.

Thanks in advance,
 
 
  • Post #10,366
  • Quote
  • Edited 9:00pm Nov 16, 2015 8:42pm | Edited 9:00pm
  •  cyber1
  • Joined Jan 2011 | Status: Member | 1,299 Posts
Quoting fbrand79
Disliked
I need to add an arrow and alert when price breaches an MA from above, but it should repaint as when the price does not close below the MA to disappear again. I have it that it draws the arrow and alert for candle 0 when it breaches, but the alert goes of for the whole time the bar is open. How can I make it to only alert just when the arrow is drawn, and not with every tick. I've tried the following. if(i==1 && SoundAlert)Alert(_Symbol, _Period," Sell Alert"); or if(i==0 && SoundAlert)Alert(_Symbol, _Period," Sell Alert"); .... i = 0 in the for...
Ignored
fbrand79-
You'll need something like this
Inserted Code
//add at top  before Init() function
datetime bartime=0;
 
//add to start function
if(bartime!=Time[0]){
bartime=Time[0];
//put alert code here
}
 
 
  • Post #10,367
  • Quote
  • Nov 16, 2015 10:12pm Nov 16, 2015 10:12pm
  •  speedytina
  • | Joined Mar 2011 | Status: Trader wannabe... | 50 Posts
Quoting Shabs19
Disliked
{quote} Just look for any MA Cross Alert indicator, the histogram is the 12 ma and the 0 level is the 26 ma
Ignored
Got it. Thanks Shabs19.
I should have figured that one out for myself.
Cluttered charts are visual diarrhea. Whats on your charts?
 
 
  • Post #10,368
  • Quote
  • Nov 17, 2015 12:47am Nov 17, 2015 12:47am
  •  covetousrat
  • | Joined Dec 2012 | Status: Member | 52 Posts
Hi guys,

I need some help in creating an Alert when Buy or Sell points appear at the close of bar for this indicator. I hope someone can take a look please.
Thank you.

My original post with the codes are here http://www.forexfactory.com/showthre...86#post8595286
Attached File(s)
File Type: mq4 buy-sellpointsRUS.mq4   3 KB | 391 downloads
 
 
  • Post #10,369
  • Quote
  • Nov 17, 2015 1:05am Nov 17, 2015 1:05am
  •  rdtatoy
  • | Joined Apr 2014 | Status: Member | 6 Posts
11/17/15

Hi everyone,

If someone could program a buy and sell alert for this indicator when it reach a certain number that correspond to the number displayed in the indicator. Thank you in advance

Indicator attached.

Thanks,
rdtatoy
Attached File(s)
File Type: ex4 KG RS GROUP V1.1.ex4   20 KB | 245 downloads
 
 
  • Post #10,370
  • Quote
  • Nov 17, 2015 1:59am Nov 17, 2015 1:59am
  •  cja
  • Joined Feb 2007 | Status: Member | 1,894 Posts
Quoting covetousrat
Disliked
Hi guys, I need some help in creating an Alert when Buy or Sell points appear at the close of bar for this indicator. I hope someone can take a look please. Thank you. My original post with the codes are here http://www.forexfactory.com/showthre...86#post8595286 {file}
Ignored
Unfortunately it is a decompiled indicator so it is unlikely any coders on this Forum will look at it for you.
Trade what you see not what you hope
 
 
  • Post #10,371
  • Quote
  • Nov 17, 2015 2:00am Nov 17, 2015 2:00am
  •  cja
  • Joined Feb 2007 | Status: Member | 1,894 Posts
Quoting rdtatoy
Disliked
11/17/15 Hi everyone, If someone could program a buy and sell alert for this indicator when it reach a certain number that correspond to the number displayed in the indicator. Thank you in advance Indicator attached. Thanks, rdtatoy {file}
Ignored
You will need to post the mq4 file before anyone can help you.
Trade what you see not what you hope
 
 
  • Post #10,372
  • Quote
  • Nov 17, 2015 3:17am Nov 17, 2015 3:17am
  •  covetousrat
  • | Joined Dec 2012 | Status: Member | 52 Posts
Quoting cja
Disliked
{quote} Unfortunately it is a decompiled indicator so it is unlikely any coders on this Forum will look at it for you.
Ignored
Hi Cja, Thank you for your reply but what do you mean by decompiled indicator? Sorry Im not into programming.
 
 
  • Post #10,373
  • Quote
  • Nov 17, 2015 3:30am Nov 17, 2015 3:30am
  •  Mick747
  • | Joined Nov 2015 | Status: Junior Member | 1 Post
Hi. I am looking for an indicator that will draw a high and low shadow box. the 2 boxes will need to be 25 pips tall each. They will need to start 25 pips above and below the candle high and low for custom time frames that can span session breaks IE: 7pm EST to 2am EST.
The boxes would need to have custom times for where they need to be plotted also. Also i should be able to change the colour of them.
I have attached a picture to help show what i mean.
I hope this is possible and thank you for any help :-)


Attached Image (click to enlarge)
Click to Enlarge

Name: MT4_Custom_shadow_box_spec.png
Size: 54 KB
 
 
  • Post #10,374
  • Quote
  • Nov 17, 2015 5:41am Nov 17, 2015 5:41am
  •  TradeFinder
  • Joined Oct 2011 | Status: Member | 201 Posts
Hi

I am following the Alien Visual System and it has certain signal scenarios that require patience to wait for a stoch cross signal. The problem is that on the higher Tf's seeing the cross on current candle or 1 delayed is hard without swapping back and forth to lower Tf's and then you lose the train of thought, it all looks great , you enter and boom...... too early again LOL

To help would anyone be able to code a two stochastic indicator that signals with an alert when the two stoch mains crossover, this has nothing to do with the stoch signal lines just the mains which for example could be any setting (the alien system uses 8,3,3 and 21,10,10). Ideally the alert would also be visual ie arrow in direction of cross and could be on current candle or better on a N candle selectable delay. Utopiah would have the stoch setting also with the choice of simple or exponetial calculation

There are loads of stoch cross indicators that signal when the main crosses the signal line for a single stoch but despite lots of searching I have not found the above described indicator

Thank you in advance if it can be done
 
 
  • Post #10,375
  • Quote
  • Nov 17, 2015 7:20am Nov 17, 2015 7:20am
  •  cyd09
  • | Joined Mar 2014 | Status: Member | 125 Posts
hi guys!

may i request for an EA that will enter a trade for a specific time? it will buy or sell base on specified price, example if price is greater than the specified price it will sell and if price is lower than the specified price it will buy.. the tp and sl can be selected by how many pips, by specified time, by price or no sl and tp

thanks!
 
 
  • Post #10,376
  • Quote
  • Nov 17, 2015 9:04am Nov 17, 2015 9:04am
  •  BLACKFEET
  • | Joined Aug 2005 | Status: Member | 327 Posts
Quoting BLACKFEET
Disliked
Hi, Wouls someone be kind enough to help me : I try to detect volatility. So far I use this indicator : I need an alert (Sound, Pop up) when happens TWO consecutive increases AT THE END of the current candle. Thanks in advance. Best regards. BBF {file}
Ignored
Hi,

25 downloads and no answer.

Perhaps it'll be easier with this version ?

This volatility/squeeze bollinger indicator is really efficient and for sure I can manage it manually but as I use a M15 TF it's quite boring ... and generally not efficient... hence if one of you could help me I'll be very grateful

Best regards

BBF
Attached File(s)
File Type: mq4 BandsBandwidth.mq4   4 KB | 301 downloads
BigBlackfeet Always on the(forex) war path !
 
 
  • Post #10,377
  • Quote
  • Nov 17, 2015 10:53am Nov 17, 2015 10:53am
  •  jpadvisor
  • Joined Jul 2013 | Status: Member | 2,603 Posts
Quoting TradeFinder
Disliked
Hi I am following the Alien Visual System and it has certain signal scenarios that require patience to wait for a stoch cross signal. The problem is that on the higher Tf's seeing the cross on current candle or 1 delayed is hard without swapping back and forth to lower Tf's and then you lose the train of thought, it all looks great , you enter and boom...... too early again LOL To help would anyone be able to code a two stochastic indicator that signals with an alert when the two stoch mains crossover, this has nothing to do with the stoch signal...
Ignored
Hi, it would be great if CJA or someone of big coders here could modify this Color Stochastic indi in the way you requested.
Best regards.
Attached File(s)
File Type: mq4 Color Stochastic no label.mq4   15 KB | 226 downloads
Per aspera ad astra
 
 
  • Post #10,378
  • Quote
  • Nov 17, 2015 1:55pm Nov 17, 2015 1:55pm
  •  siraj74
  • | Joined Jul 2014 | Status: Member | 92 Posts
I would really appreciate if somebody help me on this post http://www.forexfactory.com/showthre...38#post8592538
 
 
  • Post #10,379
  • Quote
  • Nov 17, 2015 2:50pm Nov 17, 2015 2:50pm
  •  fbrand79
  • | Joined Oct 2012 | Status: SwartMamba | 78 Posts
Quoting cyber1
Disliked
{quote} fbrand79- You'll need something like this //add at top before Init() function datetime bartime=0; //add to start function if(bartime!=Time[0]){ bartime=Time[0]; //put alert code here }
Ignored

cyber1

you're the man...

I'm gonna look into bartime.

Thanx again for the help, I have the basics but still struggling with where to do what.
 
 
  • Post #10,380
  • Quote
  • Nov 17, 2015 2:51pm Nov 17, 2015 2:51pm
  •  machine25
  • | Joined Aug 2015 | Status: Member | 137 Posts
put the CloseOnOppositeSignal to false,

orders will then be closed at sl or tp

this EA is properly coded

this is the answer to post 10360 arken1976
Attached File(s)
File Type: mq4 2ma crossover EA.mq4   5 KB | 259 downloads
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 517518Page 519520521 2913
    • 1 Page 519 2913
20 traders viewing now, 1 is a member:
Shiver
  • 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