• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 10:58pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 10:58pm
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,086
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 4142Page 434445 2912
  • 1 Page 43 2912
  •  
  • Post #841
  • Quote
  • May 11, 2012 1:03pm May 11, 2012 1:03pm
  •  NoJobRob
  • | Joined Aug 2010 | Status: "Member" lol | 242 Posts
Quoting rpasupathy
Disliked
Hi Friends,

Can somebody please make an alert for this Indicator.

It should pop up an alert with the "Pair name" and whether its buy or sell depending upon the buy or sell arrow.

Thanks in advance.

I don't have the mq4 file. If possible I just need a 4/5 ema crossover pop up alert.

Ganesh
Ignored
Try this one. It's a bit more robust than the ex4 you have.
Attached File(s)
File Type: mq4 2MA Crossover.mq4   7 KB | 444 downloads
Get money, don't let money get you. @kauaiforex
 
 
  • Post #842
  • Quote
  • May 12, 2012 1:03pm May 12, 2012 1:03pm
  •  coconu
  • | Joined Dec 2011 | Status: Member | 34 Posts
hi,

can u program for Mt 4 this indi? basically it find extreme reversal bars. it's from Frank Ochoa's book: "Pivot boss"

good luck!
Attached File(s)
File Type: pdf extreme reversal indi.pdf   203 KB | 1,929 downloads
in vino veritas!
 
 
  • Post #843
  • Quote
  • May 12, 2012 9:07pm May 12, 2012 9:07pm
  •  mv5555
  • | Joined Nov 2009 | Status: Member | 3 Posts
Could some add an alert to this indi

on close of bar change of colour white/blue/red

thanks


Attached File(s)
File Type: ex4 at all about the timing.ex4   5 KB | 416 downloads
 
 
  • Post #844
  • Quote
  • Edited 10:43am May 13, 2012 10:30am | Edited 10:43am
  •  ^eagle^
  • | Joined Oct 2008 | Status: Member | 421 Posts
can you get this to work so that it will paint the asian box correctly?

I know it has something to do with the date change from 23:59 to 0:00

Depending on the time zone your broker uses it will reverse the numbers of the asian box (or whatever box the day change falls into)

It works perfectly on FXDD which has a GMT offset of2but Doesn't work with Oanda. I subtract all the numbers correctly but whatever box the date change falls into, that box gets reversed so that it covers everything BUT the proper session.

This really is one of the best indicators out there except for this bug.

If you just kept the boxes as is and then shifted using a GMT offset switch it would be great.

I stopped the box at 23:59 and it works fine except it does not cover the rest of the session. So I know that is what is wrong. Everything else is perfect.
Attached File(s)
File Type: mq4 market-hours-indicator-market-profiles.mq4   16 KB | 422 downloads
 
 
  • Post #845
  • Quote
  • May 13, 2012 10:53pm May 13, 2012 10:53pm
  •  sargedessy
  • | Joined Apr 2011 | Status: Member | 42 Posts
Hi,

I've been using the Swiss Army EA to manage my trades and I realise it has a hedge order feature. However, the hedge would kick in automatically when I open a new trade. It immediately opens a trade in the opposite direction with the same lot size.

Is it possible for you to add a feature whereby the hedge order would be executed after the trade has experienced a certain percentage drawdown of the account , so as to "freeze" the loss, and add the option to move the SL of the hedge order to breakeven after moving a certain number of pips? This would greatly help me for accounting purposes and it would save me during spikes while I'm not monitoring.

Thanks.
Attached File(s)
File Type: mq4 Swiss Army EA v2.01.mq4   25 KB | 762 downloads
 
1
  • Post #846
  • Quote
  • Edited 10:49am May 15, 2012 10:21am | Edited 10:49am
  •  neil324
  • | Joined Apr 2011 | Status: Member | 340 Posts
Anyone change the vertical lines in this indie to draw as horizontal lines and preferably as ray so not the whole screen.

I have had a go myself trying to change the OBJ_VLINE to OBJHLINE and OBJ_TREND but the lines don't show on the screen.

I found this code that draws a trend line as ray between 2 points in time, but not sure if it can be incorporated into this indie

ObjName = GetName("SSTD", i);
// ObjectCreate(ObjName, OBJ_HLINE, 0, NULL, SetupSHiPrice );
ObjectCreate(ObjName, OBJ_HLINE, 0, SetupSBeginDt, SetupSHiPrice, SetupSEndDt, SetupSHiPrice );
ObjectSet(ObjName, OBJPROP_TIME1, SetupSBeginDt);
ObjectSet(ObjName, OBJPROP_TIME2, SetupSEndDt);
ObjectSet(ObjName, OBJPROP_COLOR, Yellow);
ObjectSet(ObjName, OBJPROP_STYLE, STYLE_SOLID);
ObjectSet(ObjName, OBJPROP_WIDTH, 2);

Thanks in advance
Attached Image (click to enlarge)
Click to Enlarge

Name: 1.gif
Size: 23 KB
Attached File(s)
File Type: mq4 Grid.mq4   6 KB | 359 downloads
 
 
  • Post #847
  • Quote
  • May 15, 2012 6:07pm May 15, 2012 6:07pm
  •  cyber1
  • Joined Jan 2011 | Status: Member | 1,299 Posts
Quoting neil324
Disliked
Anyone change the vertical lines in this indie to draw as horizontal lines and preferably as ray so not the whole screen.

I have had a go myself trying to change the OBJ_VLINE to OBJHLINE and OBJ_TREND but the lines don't show on the screen.

I found this code that draws a trend line as ray between 2 points in time, but not sure if it can be incorporated into this indie

ObjName = GetName("SSTD", i);
// ObjectCreate(ObjName, OBJ_HLINE, 0, NULL, SetupSHiPrice );
ObjectCreate(ObjName, OBJ_HLINE, 0, SetupSBeginDt, SetupSHiPrice, SetupSEndDt,...
Ignored
So are you trying to draw horizontal grid lines instead of vertical or are you trying to draw trend lines?
 
 
  • Post #848
  • Quote
  • May 15, 2012 8:46pm May 15, 2012 8:46pm
  •  aarontime
  • | Joined May 2012 | Status: Junior Member | 2 Posts
I think I've got a system dialed in. Can someone program this for MetaTrader?

DETERMINE HIGH AND LOW BETWEEN 5:00 PM AND 10:00 PM

ENTRY ORDERS

ENTER LONG AT 100% ABOVE HIGH. OR AT FIB 2.00
ENTER SHORT AT 100% BELOW LOW OR AT FIB -2.00

STOP
LONG AT HIGH
SHORT AT LOW

PROFIT AT 600% FOR LONG
PROFIT AT 600% FOR SHORT


EXAMPLE:

IF HIGH BETWEEN 5:00 AND 10:00 PM IS 1.29703
IF LOW BETWEEN 5:00 AND 10:00 PM IS 1.29373

ENTRY FOR LONG WOULD BE 1.30033
STOP FOR LONG WOULD BE 1.29703
PROFIT TARGET WOULD BE 1.31353

ENTRY FOR SHORT WOULD BE 1.29043
STOP FOR SHORT WOULD BE 1.29373
PROFIT TARGET WOULD BE 1.27723
 
 
  • Post #849
  • Quote
  • May 16, 2012 3:10am May 16, 2012 3:10am
  •  neil324
  • | Joined Apr 2011 | Status: Member | 340 Posts
Quoting cyber1
Disliked
So are you trying to draw horizontal grid lines instead of vertical or are you trying to draw trend lines?
Ignored
Trend lines without the ray or if that's not possible then horizontal grid lines.
 
 
  • Post #850
  • Quote
  • May 16, 2012 5:35am May 16, 2012 5:35am
  •  biker883
  • | Joined Mar 2007 | Status: Member | 134 Posts
Hello to the coders,
I have bee looking around the web for the Demand Index indicator and could not find it anywhere except a version for MT5.

Basically it is the ratio of buying pressure to selling pressure.
here is the Formula

The Demand Index (DI) calculates two values, Buying Pressure (BP) ans Selling Pressure (SP), and then takes a ration of the two.

DI is BS/SP.

If price rise
BP = V or Volume
SP = V/P where P is the % change in price

If price decline
BP = V/P where P is the % change in price
SP = V or Volume

Because P is a decimal (less than 1), P is modified by multiplying it by the constant K

P = P(k)
K= (3 x C)/VA

Where C is closing price and VA ( Volatility Average) is the 10 period moving average of a two day price range (highest high - lowest low).

If BP>SP the DI = SP/ BP


If any of the coders in the thread could have a look,

Thank you

Gerry
 
 
  • Post #851
  • Quote
  • May 23, 2012 6:59pm May 23, 2012 6:59pm
  •  Pipanator
  • | Joined Jun 2011 | Status: Keep It Simply Stupid | 356 Posts
Hi Metatrader,

Anyway possible to make the indicator expand the number of days in the past where it displays daily boxes high and low it only goes back 2 weeks can u make it 2 years? Also, is it possible to create an indicator that you can switch templates through your keyboard one to the other? e.g. template 1 press f1 template 2 press f2 etc.
Attached File(s)
File Type: ex4 DailyBoxes.ex4   6 KB | 388 downloads
Find your Favourite Pattern
 
 
  • Post #852
  • Quote
  • May 23, 2012 7:33pm May 23, 2012 7:33pm
  •  ForMeFact0ry
  • | Joined Feb 2012 | Status: Trusted Member | 327 Posts
hope uve seen this:
www.forexfactory.com/showthread.php?t=363889

I need something created.
bit . ly/fantestimonials
 
 
  • Post #853
  • Quote
  • May 25, 2012 1:11pm May 25, 2012 1:11pm
  •  mef1
  • | Joined Dec 2009 | Status: Member | 24 Posts
I have searched the forums but could not find what I am looking for (could of missed it). Does anyone have knowledge of an EA that allows you to set a "Hidden" S/L and T/P from the brokers? Preferably one that allows several (up to three) T/P levels (scale out) adjustable by the user. It should also be unique to each individual currency pair attached to by using an "Order Ticket" number for that particular trade. I would appreciate any assistance in locating and/or programming such an EA. Thanks traders.... P.S., an added bonus would be a feature that allows the S/L to convert to a T/S (pips adjustable by user) upon hitting a certain profit level (I.E. first T/P, then S/L converts to T/S). Just a thought.... Thanks again.
 
 
  • Post #854
  • Quote
  • May 25, 2012 3:03pm May 25, 2012 3:03pm
  •  zackery
  • Joined Nov 2011 | Status: Member | 701 Posts
Quoting mef1
Disliked
I have searched the forums but could not find what I am looking for (could of missed it). Does anyone have knowledge of an EA that allows you to set a "Hidden" S/L and T/P from the brokers? Preferably one that allows several (up to three) T/P levels (scale out) adjustable by the user. It should also be unique to each individual currency pair attached to by using an "Order Ticket" number for that particular trade. I would appreciate any assistance in locating and/or programming such an EA. Thanks traders.... P.S., an added bonus would be a feature...
Ignored
Maybe here is what you are looking for:
http://www.forexfactory.com/showthread.php?t=342695
Greeds Zack
 
 
  • Post #855
  • Quote
  • May 30, 2012 8:10am May 30, 2012 8:10am
  •  mary0920
  • | Joined Mar 2012 | Status: Member | 12 Posts
Hi All!

I'd like to ask how can add a MA indicator to a RSI indicator? For example: i want to see if RSI(7) crosses SMA(50). Thanks in advice!
Mary
 
 
  • Post #856
  • Quote
  • May 30, 2012 8:23pm May 30, 2012 8:23pm
  •  cyber1
  • Joined Jan 2011 | Status: Member | 1,299 Posts
Quoting mary0920
Disliked
Hi All!

I'd like to ask how can add a MA indicator to a RSI indicator? For example: i want to see if RSI(7) crosses SMA(50). Thanks in advice!
Mary
Ignored
Drag the MA on top of your RSI window.
Then in the "Apply to:" popup select either "Previous Indicators Data" or "First Indicators Data".
 
 
  • Post #857
  • Quote
  • May 31, 2012 5:10am May 31, 2012 5:10am
  •  joselopezde
  • | Joined Mar 2012 | Status: Member | 18 Posts
Hi, I am a Spanish trader. First, I apologize for my bad English. I'll explain what I need. When I trade, I like having "overview of the day."

I attached chart to explain it better.

Attached Image (click to enlarge)
Click to Enlarge

Name: daxlk.gif
Size: 20 KB


I usually trade with DAX30. When start the day, we usually start with Gap, so previous day close and opening of this day are different

So, the indicator that I need:

- Two horizontal lines (opening day and previous day close). Opening (time 8:00). Close (time: 21:45). [In chart: red and green lines]. Sometimes it will close above the opening and other times it will be backwards. [The line is above: green. The line that is below: red]

- Then, two horizontal lines at 40 points of these two lines (among them too). There are four: two above and two below. [In chart: blue and purple lines]

- Four vertical lines (colour: black):

  1. 21:45 (normal)
  2. 8:00 (dotted line)
  3. 2:30 (dotted line)
  4. 21:45 (normal)


Bye and good trading!

 
 
  • Post #858
  • Quote
  • Jun 6, 2012 3:06am Jun 6, 2012 3:06am
  •  corliz
  • | Joined May 2012 | Status: Member | 34 Posts
Hi

Do you still do EA programming?
 
 
  • Post #859
  • Quote
  • Jun 8, 2012 1:45am Jun 8, 2012 1:45am
  •  rpasupathy
  • Joined May 2008 | Status: Member | 319 Posts
Hi Friends,

Can somebody please make an alert for this Indicator.

It should pop up an alert with the "Pair name" and whether its buy or sell depending upon the buy or sell arrow.

Thanks in advance.

I don't have the mq4 file. If possible I just need a 4/5 ema crossover pop up alert.

Faster EMA 4
Slower EMA 5

Ganesh
Attached File(s)
File Type: ex4 EMA Crossover.ex4   3 KB | 321 downloads
The One Who Makes The Thunder Roar Also Hears A Butterfly Sigh - Ruzbeh
 
 
  • Post #860
  • Quote
  • Jun 8, 2012 1:02pm Jun 8, 2012 1:02pm
  •  thegatan
  • | Joined Jan 2010 | Status: try best | 71 Posts
hello, i need indi/code for draw line like my picture below

http://www.freeimagehosting.net/y9rxu

please help me, Thank you very much
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 4142Page 434445 2912
    • 1 Page 43 2912
21 traders viewing now, 2 are members:
achukse2003
,
Musharib
  • 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