• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 6:53am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 6:53am
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 40 replies

I will code your pivot EAs for no charge 19 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,145
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 26402641Page 264226432644 2918
  • 1 Page 2642 2918
  •  
  • Post #52,821
  • Quote
  • Jun 25, 2022 8:07am Jun 25, 2022 8:07am
  •  Bankpips
  • | Joined Mar 2012 | Status: Member | 83 Posts
Does anyone have a buy, sell, close EA for Metatrader 5 which has a SL built in to the EA
Thanks
 
 
  • Post #52,822
  • Quote
  • Jun 25, 2022 8:47am Jun 25, 2022 8:47am
  •  cryptobodden
  • | Joined Apr 2018 | Status: Member | 20 Posts
Quoting cja
Disliked
{quote} Here is a version using the candle close. As far as your "Rules" go this EA follows exactly what you requested. Your request: The idea is to place a horizontal line on the chart and when the price closes above, it will open a buy, and if it goes back and closes below the horizontal line, the previous order will be closed and a sell order will be opened. This will happen until the price moves in one direction or the other. My entries are usually on the 1min, with trade decisions based on the 1hr and 4 hr. NOTE : You cannot change the name...
Ignored
CJA,

I really appreciate you bro.

Thanks.

Cryptobodden
 
 
  • Post #52,823
  • Quote
  • Jun 25, 2022 12:50pm Jun 25, 2022 12:50pm
  •  dexterous
  • | Joined Jun 2011 | Status: Member | 193 Posts
Pls anyone with this indicator. Pls share
Attached Image (click to enlarge)
Click to Enlarge

Name: 20220625_204917.jpg
Size: 78 KB
 
 
  • Post #52,824
  • Quote
  • Jun 25, 2022 12:58pm Jun 25, 2022 12:58pm
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,422 Posts
Quoting RIKc
Disliked
{quote} fixed, try it {file}
Ignored
There's still 8 buffers for 4tfs and it's still cycling through all 4 tfs and theres still 4 text objects being made.

Quoting RIKc
Disliked
{quote} made for M1. The rest need to be corrected in the same way. Too long to fix. I do not want. {file}
Ignored
You should add a short record in the source of your changes to the indicators.
 
1
  • Post #52,825
  • Quote
  • Jun 25, 2022 3:38pm Jun 25, 2022 3:38pm
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,422 Posts
Quoting Pram808
Disliked
{image}i found this img on the internet, and makes me wodered if somebody know it or have it please share with me I'm looking indicator on the subwindow Thanks
Ignored
Nothing is stopping you from googling "indicator total power", there are several sites that talk about it and have it. Below is one.
https://4xone.com/total-power-indicator/
Attached File(s)
File Type: ex4 Total_Power.ex4   10 KB | 191 downloads
 
2
  • Post #52,826
  • Quote
  • Jun 25, 2022 4:10pm Jun 25, 2022 4:10pm
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,422 Posts
Quoting danerius
Disliked
...trouble shoot this code that wont compile...
Ignored
- follow what the compilation errors are telling you
- you're never setting the bid array as a buffer, you're setting the ask array twice
- the if statement in shiftarray is unclear, proper bracing for an if statement is
Inserted Code
//check 1 thing, do 1 thing
   if(check_1)do_1;
//check 2 things, do 1 thing
   if(check_1)if(check_2)do_1;
//check 2 things, do 1 thing
   if(check_1 &&/|| check_2)do_1;
//check 1 thing, do 1 thing
   if(check_1){
      do_1;
   }
//check 1 thing, do stuff, check other stuff and do other stuff
   if(check_1){
      do_1;
      do_2;
      if(check2)do_3;
      if(check3){
         do_4;
         do_5;
      }
   }
- missing braces/brackets/parenthesis is the most common compilation error I get

Looks like youre trying to have your own ask/bid lines as buffer lines on the chart, with that in mind:
- the loop in shiftarray() never touches the live bar 0, and the lines being buffers will not pass the rightside of the live bar without a large shift
- in oncalc you're setting the buffer indexes at 1, but shiftarray is starting from n=barsperchart, and counting down, from left to right, to bar 1, due to buffers being timeseries indexing
- to set all the buffer values with a single value, you can do arrayinitialize(), or from the index of the value youre setting, loop from that to where ever
- barsperchart only gives you the number of bars per chart for the given zoom, so you can scroll back to bar 1000, and if the barsperchart is 200, you're looking at bar indexes 999-799, while buffer indexes 199-1 are (trying to be) filled
- you're also calling shiftarray() before youre setting a value in the buffers

>>- all of this could be replaced by using 2 horizontal lines, and setting them to ask/bid prices
 
 
  • Post #52,827
  • Quote
  • Jun 25, 2022 7:52pm Jun 25, 2022 7:52pm
  •  FXSayWhat
  • Joined Oct 2013 | Status: Member | 1,778 Posts
I would like to order 1 on the go and eat in the car please. Thank you.
Underspeak, overdeliver.
 
1
  • Post #52,828
  • Quote
  • Jun 26, 2022 6:15am Jun 26, 2022 6:15am
  •  LvMMT
  • Joined Aug 2019 | Status: Member | 2,229 Posts
Quoting Mahapathy
Disliked
{quote} No sir, the one that I have attached shows Multi Time frame Moving averages The one you have attached doesn't shows it sir Hope you understand
Ignored

did I succeed this time?

Attached File(s)
File Type: ex4 FXTT_MTF_6MA.ex4   231 KB | 50 downloads
Attached File(s)
File Type: mq4 FXTT_MTF_6MA.mq4   39 KB | 72 downloads


God bless everyone!
The only impartial feeling is love. It is also the only feeling of God.
 
1
  • Post #52,829
  • Quote
  • Edited Jun 27, 2022 6:02am Jun 26, 2022 9:00am | Edited Jun 27, 2022 6:02am
  •  WardStradlat
  • | Joined May 2013 | Status: Member | 31 Posts
Hi fellow coders.
I need and EA to test a MTF MACD strategy.

The direction is given by TF1 and TF2 (maybe a TF3 ?) :
Sell
MACD < 0 and MACD < Signal
Buy
MACD > 0 and MACD > Signal

Take position in the direction with the MACD on current TF
Sell/buy
MACD cross signal
Attached Image (click to enlarge)
Click to Enlarge

Name: MTF_MACD_Strategy.jpg
Size: 138 KB


Attached a screenshot and the MTF MACD indicator that I use (could be helpful).
I'm open for any idea for improuvment.
Thanks in advance.
Attached File(s)
File Type: ex4 MTF_MACD.ex4   14 KB | 53 downloads
 
 
  • Post #52,830
  • Quote
  • Edited Jun 27, 2022 6:34am Jun 26, 2022 12:16pm | Edited Jun 27, 2022 6:34am
  •  Olababa
  • | Joined Jul 2019 | Status: Member | 21 Posts
Please I need supply and demand indicator mt4 and mt5
Attached Image (click to enlarge)
Click to Enlarge

Name: FB_IMG_16562406541341672.jpg
Size: 135 KB
that function like this.
thanks
 
 
  • Post #52,831
  • Quote
  • Jun 26, 2022 2:10pm Jun 26, 2022 2:10pm
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,267 Posts | Online Now
Quoting cja
Disliked
{quote} Here is a version using the candle close. As far as your "Rules" go this EA follows exactly what you requested. Your request: The idea is to place a horizontal line on the chart and when the price closes above, it will open a buy, and if it goes back and closes below the horizontal line, the previous order will be closed and a sell order will be opened. This will happen until the price moves in one direction or the other. My entries are usually on the 1min, with trade decisions based on the 1hr and 4 hr. NOTE : You cannot change the name...
Ignored
Hello cja i need your assistance on post #52008.
 
 
  • Post #52,832
  • Quote
  • Jun 26, 2022 4:07pm Jun 26, 2022 4:07pm
  •  xmatax
  • | Joined Feb 2020 | Status: Member | 26 Posts
You can add sound alert, push alert and also popup alert. Thank you very much
Attached File(s)
File Type: ex4 Color_Stochastic.ex4   15 KB | 42 downloads
Attached File(s)
File Type: mq4 Color_Stochastic.mq4   5 KB | 51 downloads
 
 
  • Post #52,833
  • Quote
  • Jun 26, 2022 5:15pm Jun 26, 2022 5:15pm
  •  Pram808
  • | Joined Feb 2021 | Status: Guest | 136 Posts
Quoting jeanlouie
Disliked
{quote} Nothing is stopping you from googling "indicator total power", there are several sites that talk about it and have it. Below is one. https://4xone.com/total-power-indicator/ {file}
Ignored
Thanks jean
Using Chaos to Finding Order
 
 
  • Post #52,834
  • Quote
  • Jun 26, 2022 6:19pm Jun 26, 2022 6:19pm
  •  cryptobodden
  • | Joined Apr 2018 | Status: Member | 20 Posts
Quoting cja
Disliked
{quote} Here is a version using the candle close. As far as your "Rules" go this EA follows exactly what you requested. Your request: The idea is to place a horizontal line on the chart and when the price closes above, it will open a buy, and if it goes back and closes below the horizontal line, the previous order will be closed and a sell order will be opened. This will happen until the price moves in one direction or the other. My entries are usually on the 1min, with trade decisions based on the 1hr and 4 hr. NOTE : You cannot change the name...
Ignored
Hey CJA,

Sorry to be a nuisance with this simple EA.

I add the EA to the chart (I didn't mess with the name of the EA), but no trades are being opened. This is happening with Horizontal Line Reversal Trader V1. I was pretty excited today, but nothing is happening?

Can you look at it and let me know what's wrong?
 
 
  • Post #52,835
  • Quote
  • Edited 7:15pm Jun 26, 2022 6:59pm | Edited 7:15pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,894 Posts
Quoting cryptobodden
Disliked
{quote} Hey CJA, Sorry to be a nuisance with this simple EA. I add the EA to the chart (I didn't mess with the name of the EA), but no trades are being opened. This is happening with Horizontal Line Reversal Trader V1. I was pretty excited today, but nothing is happening? Can you look at it and let me know what's wrong?
Ignored
So what do you mean by no trades are being opened?? more info needed.
I think I know what the problem might be you are expecting the EA to open an initial trade BUY/SELL when price hits the line - Correct? My understanding from your original request was that you already had a manually entered trade based on info from a higher timeframe which you wanted to monitor with the positioning of the line, the EA does not open its own trade it controls an already open trade.
Trade what you see not what you hope
 
 
  • Post #52,836
  • Quote
  • Jun 26, 2022 7:27pm Jun 26, 2022 7:27pm
  •  cryptobodden
  • | Joined Apr 2018 | Status: Member | 20 Posts
Quoting cja
Disliked
{quote} So what do you mean by no trades are being opened?? more info needed.
Ignored
Hi CJA,

Sorry, I just realize you updated your post.
 
 
  • Post #52,837
  • Quote
  • Jun 26, 2022 7:44pm Jun 26, 2022 7:44pm
  •  cryptobodden
  • | Joined Apr 2018 | Status: Member | 20 Posts
Quoting cja
Disliked
{quote} So what do you mean by no trades are being opened?? more info needed. I think I know what the problem might be you are expecting the EA to open an initial trade BUY/SELL when price hits the line - Correct? My understanding from your original request was that you already had a manually entered trade based on info from a higher timeframe which you wanted to monitor with the positioning of the line, the EA does not open its own trade it controls an already open trade.
Ignored
Sorry for the misunderstanding CJA,

I can see where I misrepresented what I needed with my long-winded posts.

I need to manage my entries with the horizontal line EA. So when the price come upon it, the line gets activated but opens the first trade based on the candle close after the line gets activated (whether to buy or sell). The EA will close and re-enter based on opposite signals at the horizontal line.

I will manage the exits myself.
 
 
  • Post #52,838
  • Quote
  • Edited 8:08pm Jun 26, 2022 7:52pm | Edited 8:08pm
  •  cryptobodden
  • | Joined Apr 2018 | Status: Member | 20 Posts
You are correct. Forget the word "manual" entries.

I need a EA that places a horizontal line on the chart and opens and closes trades at a bar close for buy and sell signals at the line. Close on opposite signal at the line. I'm trying to figure out how to say this.

Thought I should add this: The signals are basically whether the candle closes above or below the line.

For entries on the 1min chart for an oscillation period, this works well for me. It just means I won't get tripped up by the market. And on the current system I'm using, I lose around 1 - 3 pips on average.

Sorry for the trouble.
 
 
  • Post #52,839
  • Quote
  • Edited 8:45pm Jun 26, 2022 8:06pm | Edited 8:45pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,894 Posts
Quoting cryptobodden
Disliked
{quote} Sorry for the misunderstanding CJA, I can see where I misrepresented what I needed with my long-winded posts. I need to manage my entries with the horizontal line EA. So when the price come upon it, the line gets activated but opens the first trade based on the candle close after the line gets activated (whether to buy or sell). The EA will close and re-enter based on opposite signals at the horizontal line. I will manage the exits myself.
Ignored
OK, so that makes it a totally different scenario as far as code goes so not quite a simple EA.
How many trades may already be opened on the terminal?
How many Pairs could be involved?
Is this for trading only on a single Pair with no existing open trades?
Will it need a magic number?
Will it need to control more than one trade?
Will it need to control manual trades?
Will you be trading only Forex?

May I suggest you try the EA on a Demo account and use a manually entered trade to see if it does what you want when price gets to the line, if that is working as you want then at least that is part of the solution then look at the other aspects.
Trade what you see not what you hope
 
 
  • Post #52,840
  • Quote
  • Jun 26, 2022 8:30pm Jun 26, 2022 8:30pm
  •  cryptobodden
  • | Joined Apr 2018 | Status: Member | 20 Posts
Quoting cja
Disliked
{quote} OK, so that makes it a totally different scenario as far as code goes so not quite a simple EA. How many trades may already be opened on the terminal? How many Pairs could be involved? Is this for trading only on a single Pair with no existing open trades? Will it need a magic number? Will it need to control more than one trade? Will it need to control manual trades? Will you be trading only Forex? May I suggest you try the EA on a Demo account and use a manually entered trade to see if it does what you want when price gets to the line,...
Ignored
Thanks for your reply.

How many trades may already be opened on the terminal? Multiple, but only 1 trade for each pair, with the option to change lot sizing.
How many Pairs could be involved? Any pairs, but only 1 trade per pair.
Is this for trading only on a single Pair with no existing open trades? Best to add a magic number on there to differentiate it from other EAs or other entries.
Will it need a magic number? I think the Magic number is what's used to differentiate trades, so the option to change the magic number would be necessary to be flexible.
Will it need to control more than one trade? Yes, since I should be able to use it to trade multiple pairs. With the magic number, I should be able to open other charts for the same pair with different magic numbers if I want to scale in. This would allow me to use the same EA on another chart for the same pair to scale in.
Will it need to control manual trades? No. I want it to manage new entries on/at the horizontal line (bar close/signal).
Will you be trading only Forex? Well, I also like Indices, but I mainly trade forex. This can be an open option based on the brokers' listing. But if not, Forex will do.
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 26402641Page 264226432644 2918
    • 1 Page 2642 2918
32 traders viewing now, 13 are members:
Invisible
,
Slingshots1
,
Invisible
,
Invisible
,
delp
,
mustaesar
,
avi907
,
vamoscapitos
,
roma23
,
Uru
,
Nomenix
,
bantyy
,
jlmarulanda
  • 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