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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Coding robots and indicators in C# for no charge (cTrader API) 182 replies

Oanda MT4 - Indicators and EAs not showing 1 reply

EAs and indicators relating to moutaki... 22 replies

InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply

Need help to code EAs for MT4 and MT5 2 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 20472048Page 204920502051 2273
  • 1 Page 2049 2273
  •  
  • Post #40,961
  • Quote
  • Nov 3, 2020 5:03pm Nov 3, 2020 5:03pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting AkuMK
Disliked
Hi coders, Requesting: a) Add Stop Loss function, b) Add Trailing Stop / BE function, c) Double confirm or update the codes, if needed, since it an old codes. It running well on back-test and live chart. Just for confirmation since it create in 2011. Thanks in advance. {file}
Ignored
EA from master Steve Hopwood "the legendary"

I help you, cause only copy paste code from others EA by Steve Hopwood himself.
I don't change any original code, I don't know where to put StopLoss code 'cause i'm not coder programmer..... so I just put another Steve Hopwood code (Hidden StopLoss) with Breakeven and Trailing Stop

Already I test it, working well on my MT4 tester

Enjoy
Attached File
File Type: mq4 Renko pure candle auto-trading EA by Steve Hopwood_the_legend.mq4   46 KB | 128 downloads
Margin Call again and again...
  • Post #40,962
  • Quote
  • Nov 3, 2020 5:21pm Nov 3, 2020 5:21pm
  •  RoninTheory
  • Joined Apr 2020 | Status: learning to become butterfly | 741 Posts
Quoting ganztrade
Disliked
{quote} EA from master Steve Hopwood "the legendary" I help you, cause only copy paste code from others EA by Steve Hopwood himself. I don't change any original code, I don't know where to put StopLoss code 'cause i'm not coder programmer..... so I just put another Steve Hopwood code (Hidden StopLoss) with Breakeven and Trailing Stop Already I test it, working well on my MT4 tester Enjoy {file}
Ignored
when you have time " if " could you please post what the ea is doing so size of renko etc

many thanks
  • Post #40,963
  • Quote
  • Nov 3, 2020 5:36pm Nov 3, 2020 5:36pm
  •  paul72
  • | Joined Jun 2013 | Status: Member | 132 Posts
Quoting mntiwana
Disliked
{quote} "DMI" In this ver users can choose what to show/hide (DI Plus,DI Minus,DX,ADX,ADXR) or show all users defined levels possibility {image}{image}{image}{image}{image} {file}
Ignored
Hi can you help please cant get indicator to work and cant figure it out i have put screen shot up.
Attached Image (click to enlarge)
Click to Enlarge

Name: 20201103_223218.jpg
Size: 1.5 MB
1
  • Post #40,964
  • Quote
  • Nov 3, 2020 6:21pm Nov 3, 2020 6:21pm
  •  edwinjil
  • | Joined Jul 2020 | Status: Member | 93 Posts
HI GUYS!

I HAVE THIS EA THAT I NEED TO MODIFY. CURRENTLY, IT OPENS A TRADE PER TICK BUT I WOULD WANT TO OPEN 1 TRADE ONCE THE CONDITIONS ARE MET AND OPEN ANOTHER ONCE THE CONDITIONS ARE MET AGAIN. I WOULD WANT IT TO ALSO BE ABLE TO OPEN ANOTHER TRADE EVEN IF THE PREVIOUS ONE IS STILL RUNNING (I DO NOT MIND HAVING 10 TRADES RUNNING AS LONG AS THEY HAVE NOT HIT SL OR TP)
EXIT OF TRADES SHOULD ENTIRELY BE BASED ON SL AND TP

BELOW ARE THE RESULTS FROM JAN-OCT 2020 (WHEN ORDER TOTAL <1)

Attached Image (click to enlarge)
Click to Enlarge

Name: 1c2d6327fbb4147a336d5acfe2c7bce0.png
Size: 25 KB
Attached File
File Type: mq4 MACD Sample V2.mq4   4 KB | 97 downloads

THANKS IN ADVANCE!
  • Post #40,965
  • Quote
  • Edited at 7:26pm Nov 3, 2020 7:09pm | Edited at 7:26pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting RoninTheory
Disliked
{quote} when you have time " if " could you please post what the ea is doing so size of renko etc many thanks
Ignored

"For example, a EURUSD 10 Pip Renko chart is probably equivalent to a 30 or 15 minute chart time frame. Trends can appear and vanish quickly. Trends can be very strong or markets can be choppy. A 50 Pip Renko chart for EURUSD would typically behave like a 4-hour chart time frame"

so RenkoBoxSize = 20; behave as candle H1 (maybe if got over volume tick trading and sometimes in one candle can make another boxsize =20)


for trading entry this EA ,
it's say:
if (Open[0] > Open[1]) //---SIGNAL LONG>it means if new renko candle open higher than last renko candle...buy entry
{
if (ShortExists) //--- and close order sell
...............skip......
if (LongExists) return(0); if last order buy, EA do nothing, until got order sell
...skip....
if (Open[0] < Open[1]) // SIGNAL SHORT>it means if new renko candle open lower than open last renko sell entry
{
if (LongExists)--- and close order buy
...............skip......
if (ShortExists) return(0); if last order sell, EA do nothing, until got order buy

//=====

this EA trading style exactly same like default MA Sample EA on Metatrader, got signal long, open long, got signal short, close long order and open short...and the opposite...looping and looping

//====

you can read specific topic from the source:
https://www.forexfactory.com/thread/...ired-by-phanti

and

https://www.forexfactory.com/thread/...e-renko-system

Regards
Margin Call again and again...
1
  • Post #40,966
  • Quote
  • Nov 3, 2020 7:19pm Nov 3, 2020 7:19pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting edwinjil
Disliked
HI GUYS! I HAVE THIS EA THAT I NEED TO MODIFY. CURRENTLY, IT OPENS A TRADE PER TICK BUT I WOULD WANT TO OPEN 1 TRADE ONCE THE CONDITIONS ARE MET AND OPEN ANOTHER ONCE THE CONDITIONS ARE MET AGAIN. I WOULD WANT IT TO ALSO BE ABLE TO OPEN ANOTHER TRADE EVEN IF THE PREVIOUS ONE IS STILL RUNNING (I DO NOT MIND HAVING 10 TRADES RUNNING AS LONG AS THEY HAVE NOT HIT SL OR TP) EXIT OF TRADES SHOULD ENTIRELY BE BASED ON SL AND TP BELOW ARE THE RESULTS FROM JAN-OCT 2020 (WHEN ORDER TOTAL <1) {image}{file} THANKS IN ADVANCE!
Ignored

why capslock on are you angry ?
Margin Call again and again...
  • Post #40,967
  • Quote
  • Nov 3, 2020 7:41pm Nov 3, 2020 7:41pm
  •  Mcxtrader
  • | Joined Jun 2017 | Status: Member | 158 Posts
Quoting BlueRain
Disliked
{quote} This is EA looking for Opening Gab from last bar's high and current bar's open. if condition like below, you will get sell signal. current_openprice > previous_highprice + (min_gapsize + spread_gap)*point_gap && current_time != order_time) You will not get any trade signal on day to day - unless you reduce gapsize. if you are using smaller time frame, you may have to reduce gapsize.. Based on my Tester, it only opened 3-4 time a week trade ( about 3-4 trade per months ) on default settings, mostly on Weekly Opening day. However, it seems...
Ignored

Thanks for your update. By default GAPS is set to 1. Not able to reduce further.
  • Post #40,968
  • Quote
  • Edited at 9:56pm Nov 3, 2020 9:39pm | Edited at 9:56pm
  •  AngelFXTrade
  • | Joined Sep 2020 | Status: Junior Member | 1 Post
Hi Guys,

I am new here on ForexFactory, so no clue am i posting this message in right group or admin can direct me to right group. My apologies for this.

I am posting this message to get inputs on Expert Advisor. Past few months I am trying a MegaFx Profit indicator which seems to be working very well on major pairs. I think its EA can be beneficial for many people, so just want to know if anyone has its Expert Advisor or anyone can code Expert Advisor for this.

*********
I use following strategies using this indicator: (For 1 Hour and 4 Hour time frame only)

-> Strategy 1: Buy or Sell when indicator gives arrow signal along with green or red line appears in that direction, i take the call and whenever it reaches nearest high or high (HH)or Lowest Low (LL) i exit

-> Strategy 2: Buy or Sell when indicator gives arrow signal along with green or red line appears in that direction, i take the call and exit when opposite arrow signal triggers

If anyone can involve these strategies in EA or any advance strategies along with above will be very helpful.

*********


I am attaching the indicator for your reference. Thanks in advance.
  • Post #40,969
  • Quote
  • Nov 3, 2020 11:06pm Nov 3, 2020 11:06pm
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,227 Posts
Quoting ganztrade
Disliked
{quote} maybe your strategy not clearly enough, i read your post, and i'm confuse read it... if u look for supply demand/ S&R there is good indicator for it https://www.forexfactory.com/thread/...3#post13241083
Ignored
i am clear about my strategy and doing it manually all time ,i also upload 100/1000 image than i don't know why don't people understand. i am looking for simple high 1 and high 2 or R1 , R2 which connect with horizontal line and option with time settings that's it.thanks
Say something meaningful or Silence!!
  • Post #40,970
  • Quote
  • Nov 4, 2020 2:02am Nov 4, 2020 2:02am
  •  AngieT
  • | Joined Apr 2018 | Status: Member | 59 Posts
putting my volumearrows indi here
sometimes it both dots red/green on same bar I dont care to me it means indecisionn


however I would like to place dots on the bar where they happen not High[shift ]or low [shift ]
some ideas please I have tried Time[0] and ask or buy but they dont work

regards

I cant work out a way :{
//+------------------------------------------------------------------+
//| Volume arrows
//|
//+------------------------------------------------------------------+
#property copyright "Author - Angiet"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_color2 Red

//---- input parameters
extern int VolumeToMonitor = 9000;
extern int CountBars=100;


int PipFactor = 1;

//---- buffers
double val1[];
double val2[];


//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//string short_name;
//---- indicator line
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,108);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,108);
SetIndexBuffer(0,val1);
SetIndexBuffer(1,val2);
//----
// Cater for fractional pips
if (Digits == 3 || Digits == 5)
{
PipFactor = 10;
}


//----
return(0);
}
//+------------------------------------------------------------------+
//| AltrTrend_Signal_v2_2 |
//+------------------------------------------------------------------+
int start()
{
if (CountBars>=Bars) CountBars=Bars;
SetIndexDrawBegin(0,Bars-CountBars);
SetIndexDrawBegin(1,Bars-CountBars);
int i,shift,counted_bars=IndicatorCounted();


//---- check for possible errors
if(counted_bars<0) return(-1);

//---- initial zero
if(counted_bars<1)
{
for(i=1;i<=CountBars;i++) val1[CountBars-i]=0.0;
for(i=1;i<=CountBars;i++) val2[CountBars-i]=0.0;
}

for (shift = CountBars; shift>=0; shift--)
{

if (Volume[shift] >= VolumeToMonitor && Close[shift]>=Open[shift])

{
val1[shift]=Low[shift];
}
if (Volume[shift] >= VolumeToMonitor && Close[shift]<Open[shift])

{
val2[shift]=High[shift];
}


}
return(0);
}
//+-------------------------------------
  • Post #40,971
  • Quote
  • Nov 4, 2020 3:18am Nov 4, 2020 3:18am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 829 Posts
Quoting BlueRain
Disliked
{quote} I will add 5th bar option to include in pattern search and add TP line as option. if you include 5th bar, then it only include if 5th bar has same bar move. ( example: if sell, 5th candle should be bear ). if you turn on, it will repaint if 5th bar changes direction.. more accurate but since this is just decision making tool, you should exam after it gives signal. Update: - Attached "4Bar Fractal" Indicator + dashboard for all pairs/timeframe. You can check dashboard to get signal + alert and confirm on each pairs before your entry. {image}...
Ignored
Minor Fix on 4BFractal Pattern Dashboard - it seems header drawing is not refreshing.
Attached Files
File Type: mq4 BR 4BarFractal Patterns.mq4   17 KB | 112 downloads
File Type: mq4 BR 4BarFractal CandlePattern Dashboard.mq4   62 KB | 103 downloads
I still don't know where is the Holy Grail
  • Post #40,972
  • Quote
  • Nov 4, 2020 3:40am Nov 4, 2020 3:40am
  •  josi
  • | Joined Aug 2019 | Status: Member | 382 Posts
Quoting BlueRain
Disliked
{quote} Minor Fix on 4BFractal Pattern Dashboard - it seems header drawing is not refreshing. {file} {file}
Ignored
Fractal down - line should be red (see screenshot)
Sometimes you get red line AND blue line (red can hardly be seen) but only one signal (rhombus; diamond) above/below the candle.
So, I think, there's something wrong with the coding of the red line.
Attached Image (click to enlarge)
Click to Enlarge

Name: US100H1.png
Size: 46 KB
  • Post #40,973
  • Quote
  • Nov 4, 2020 4:15am Nov 4, 2020 4:15am
  •  paul72
  • | Joined Jun 2013 | Status: Member | 132 Posts
Quoting mntiwana
Disliked
{quote} "DMI" In this ver users can choose what to show/hide (DI Plus,DI Minus,DX,ADX,ADXR) or show all users defined levels possibility {image}{image}{image}{image}{image} {file}
Ignored
cant get this to work i have mt4 putting it in indicator folder

has a grey diamond beside it on the indicator list any help
  • Post #40,974
  • Quote
  • Nov 4, 2020 4:32am Nov 4, 2020 4:32am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 1,761 Posts
Quoting paul72
Disliked
{quote} cant get this to work i have mt4 putting it in indicator folder has a grey diamond beside it on the indicator list any help
Ignored
Dont know what wrong with you or your system,it is working fine with me
Indicator is just a supportive tool-Use it only if it can benefit you
  • Post #40,975
  • Quote
  • Nov 4, 2020 4:46am Nov 4, 2020 4:46am
  •  edwinjil
  • | Joined Jul 2020 | Status: Member | 93 Posts
Quoting edwinjil
Disliked
HI GUYS! I HAVE THIS EA THAT I NEED TO MODIFY. CURRENTLY, IT OPENS A TRADE PER TICK BUT I WOULD WANT TO OPEN 1 TRADE ONCE THE CONDITIONS ARE MET AND OPEN ANOTHER ONCE THE CONDITIONS ARE MET AGAIN. I WOULD WANT IT TO ALSO BE ABLE TO OPEN ANOTHER TRADE EVEN IF THE PREVIOUS ONE IS STILL RUNNING (I DO NOT MIND HAVING 10 TRADES RUNNING AS LONG AS THEY HAVE NOT HIT SL OR TP) EXIT OF TRADES SHOULD ENTIRELY BE BASED ON SL AND TP BELOW ARE THE RESULTS FROM JAN-OCT 2020 (WHEN ORDER TOTAL <1) {image}{file} THANKS IN ADVANCE!
Ignored
BUMP!
  • Post #40,976
  • Quote
  • Nov 4, 2020 5:20am Nov 4, 2020 5:20am
  •  Pipnatized
  • | Joined Nov 2013 | Status: Member | 22 Posts
Hi Awesome Coders, I have this vertical line indicator i like using as it lets me control time,color, style and width .. but only for 6 lines , Id like to have 2 more lines added for a total of 8- that I'm able to plot in the same manner that I can do with the others. Thank you very much in advance!!
Attached Files
File Type: ex4 vertical_time_lines.ex4   35 KB | 50 downloads
File Type: mq4 vertical_time_lines.mq4   7 KB | 61 downloads
  • Post #40,977
  • Quote
  • Edited at 5:38am Nov 4, 2020 5:23am | Edited at 5:38am
  •  mlindora
  • | Joined Nov 2020 | Status: Junior Member | 2 Posts
Attachment 3780612Attachment 3780612
to anyone: please code this indicator to draw those blue lines horizontal please. but i uploaded the indicator that i was trying to make it draw the lines horizontally. i am quasimodo trader and it's important to me that it draws those lines horizontally. please help
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot (37).png
Size: 150 KB
  • Post #40,978
  • Quote
  • Edited at 5:55am Nov 4, 2020 5:40am | Edited at 5:55am
  •  mlindora
  • | Joined Nov 2020 | Status: Junior Member | 2 Posts
here is the above indicator please help....if you can convert it to mt5 please do but can you make it draw the those lines horizontally
Attached File
File Type: zip ZigZag-HH-HL-LH-LL-Indicator.zip   2 KB | 105 downloads
  • Post #40,979
  • Quote
  • Nov 4, 2020 5:48am Nov 4, 2020 5:48am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 829 Posts
Quoting josi
Disliked
{quote} Fractal down - line should be red (see screenshot) Sometimes you get red line AND blue line (red can hardly be seen) but only one signal (rhombus; diamond) above/below the candle. So, I think, there's something wrong with the coding of the red line. {image}
Ignored
Can you turn off "Show_TP_Line" and see if this repro?

Also, I made tiny fix in this. Can you try attached if this issue repro?
Attached File
File Type: mq4 BR 4BarFractal Patterns.mq4   17 KB | 105 downloads
I still don't know where is the Holy Grail
  • Post #40,980
  • Quote
  • Nov 4, 2020 5:54am Nov 4, 2020 5:54am
  •  doggy7
  • | Joined Oct 2020 | Status: Member | 28 Posts
Quoting BlueRain
Disliked
{quote} Minor Fix on 4BFractal Pattern Dashboard - it seems header drawing is not refreshing. {file} {file}
Ignored
Hi BlueRain,
i tried your indicators above ... the 4barFractalPattern works perfect. Then i put the dashboard indicator to chart, it seems work ok too, but ...
as i try to change the dashboard setting ... i can not find the dashboard indicator in the indicator list (just can found 1 indicator, the 4barfractalPattern indicator only), i did it by clicking right mouse button => indicators list.
So to change the dashboard indicator setting, i must remove the indicator first & re-attach it again ...
is it normal ? or some thing wrong ?
Learning coding &&& statistics are useful. Never giveup even if
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 20472048Page 204920502051 2273
    • 1 Page 2049 2273
5 traders viewing now, 2 are members:
thetan
,
Phil1234
  • 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 / ©2021