• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 12:35pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 12:35pm
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 956957Page 958959960 2276
  • 1 Page 958 2276
  •  
  • Post #19,141
  • Quote
  • May 24, 2017 11:32am May 24, 2017 11:32am
  •  Namor
  • | Joined Sep 2012 | Status: Member | 108 Posts
Quoting Phylo
Disliked
{quote} May be suitable https://www.forexfactory.com/showthr...12#post9743012 https://www.forexfactory.com/showthr...83#post9874883
Ignored
Thank you.
  • Post #19,142
  • Quote
  • May 24, 2017 12:08pm May 24, 2017 12:08pm
  •  Js3mwtRc
  • Joined Jun 2016 | Status: "Through Playing Down Graphs" | 2,091 Posts | Invisible
Quoting maximumguita
Disliked
{quote} Try this {file}
Ignored
I'll try it, thank you!
Feels right this time!
  • Post #19,143
  • Quote
  • May 24, 2017 2:11pm May 24, 2017 2:11pm
  •  palpite
  • Joined Sep 2015 | Status: Under Pressure | 2,343 Posts
Quoting ramzam
Disliked
{quote} dear palpite bro.. i want to add yesterdayclose weekclose, monthclose lines... for that simply YesterdayClose = Day_Price[1][4]; is this line enough... or need any other line.. as i insert like this it showing me wrong closing price
Ignored

The indi not draw the lines for weekly and monthly
Together we can be strongest
  • Post #19,144
  • Quote
  • May 24, 2017 4:09pm May 24, 2017 4:09pm
  •  Fxforum
  • | Joined Mar 2017 | Status: Member | 89 Posts
Quoting palpite
Disliked
{quote} The indi not draw the lines for weekly and monthly
Ignored
That indicator is very similar to this one but I do not have the mq4 on hand. However, I can look for it if anyone is interested. I did small modifications to accommodate my trading style, so the mq4 is somewhere. It is a 25% ATR.
Attached File
File Type: ex4 25%M.ex4   59 KB | 222 downloads
1
  • Post #19,145
  • Quote
  • May 24, 2017 11:39pm May 24, 2017 11:39pm
  •  micbrook
  • | Joined May 2017 | Status: Member | 59 Posts
How about something that should be real basic (well in theory) that does a trade on every candle over an amount of pips.... so if a candle moves 5 pips in any direction, trade for another 5 pips in the same direction.

would that be easy to make as an EA?!

thanks
  • Post #19,146
  • Quote
  • May 25, 2017 4:59am May 25, 2017 4:59am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting palpite
Disliked
{quote} The indi not draw the lines for weekly and monthly
Ignored
oh why... am i not put the levels for that weekly monthly lines
ok i made this .... brkout levels is based on current day open... pc based on previous close and pcop is based on average of previous close and current day open... please have this ... i make that right..
Attached Files
File Type: ex4 Brkout Lvls - pc.ex4   68 KB | 178 downloads
File Type: mq4 Brkout Lvls - pc.mq4   28 KB | 211 downloads
File Type: ex4 Brkout Lvls - pcop.ex4   68 KB | 167 downloads
File Type: mq4 Brkout Lvls - pcop.mq4   27 KB | 201 downloads
File Type: ex4 Brkout Lvls.ex4   67 KB | 167 downloads
File Type: mq4 Brkout Lvls.mq4   25 KB | 222 downloads
Success is a Journey Not a Destination....... kind regards ramzam
1
  • Post #19,147
  • Quote
  • May 25, 2017 6:13am May 25, 2017 6:13am
  •  Sandile
  • Joined Dec 2013 | Status: Member | 116 Posts
Hi guys could you please help build a Multi Stochastic Dashboard for me that will indicate which pairs have all stochastics below 10 or above 90.

Stochastic Periods - 14, 25, 33, 11, 43, 21, 13

Parameters for all periods ~ Slowing: 3 Levels: 10 and 90
~ %D: 3
~ Price field: Close/Close
~ MA Method: Simple
~ Fixed minimum: 0
~ Fixed maximum: 100
~ Signal: None
Attached Image (click to enlarge)
Click to Enlarge

Name: GBPUSDmicroH1.png
Size: 53 KB
  • Post #19,148
  • Quote
  • Edited at 8:31am May 25, 2017 7:23am | Edited at 8:31am
  •  palpite
  • Joined Sep 2015 | Status: Under Pressure | 2,343 Posts
Quoting ramzam
Disliked
{quote} oh why... am i not put the levels for that weekly monthly lines ok i made this .... brkout levels is based on current day open... pc based on previous close and pcop is based on average of previous close and current day open... please have this ... i make that right.. {file} {file} {file} {file} {file} {file}
Ignored

i deleted everything with week, month and year and the indi not changed.
Attached File
File Type: mq4 Brkout Lvls_Simple.mq4   10 KB | 221 downloads


----------------------------------------------
The code for the lines
----------------------------------------------

void ManageLine(string lName,datetime startTime,double lPrice,datetime endTime,color lColor,ENUM_LINE_STYLE lStyle,int lWidth)
{
if(ObjectFind(lName)<0)
{
ObjectCreate(lName,OBJ_TREND,0,startTime,lPrice,endTime,lPrice);
ObjectSet(lName,OBJPROP_COLOR,lColor);
ObjectSet(lName,OBJPROP_STYLE,lStyle);
ObjectSet(lName,OBJPROP_WIDTH,lWidth);
ObjectSet(lName,OBJPROP_RAY,false);
}
else
{
ObjectMove(lName,ANCHOR_POINT_ZERO,startTime,lPrice);
ObjectMove(lName,ANCHOR_POINT_ONE,endTime,lPrice);
}
}


----------------------------------------------
The code for the labels
----------------------------------------------

void ManageLabel(string lName,string lText,datetime lTime,double lPrice,color lColor)
{
if(ObjectFind(lName)<0)
{
ObjectCreate(lName,OBJ_TEXT,0,lTime,lPrice);
}
else
{
ObjectMove(lName,ANCHOR_POINT_ZERO,lTime,lPrice);
}
ObjectSetText(lName,lText,7,"Century Gothic",lColor);
}

----------------------------------------------
The code for the Daily
----------------------------------------------

ArrayCopyRates(Day_Price,(Symbol()),PERIOD_D1);

change to weekly
ArrayCopyRates(Day_Price,(Symbol()),PERIOD_W1);

or Montly
ArrayCopyRates(Day_Price,(Symbol()),PERIOD_MN1);


.
Together we can be strongest
  • Post #19,149
  • Quote
  • May 25, 2017 8:54am May 25, 2017 8:54am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting palpite
Disliked
{quote} i deleted everything with week, month and year and the indi not changed. {file} ---------------------------------------------- The code for the lines ---------------------------------------------- void ManageLine(string lName,datetime startTime,double lPrice,datetime endTime,color lColor,ENUM_LINE_STYLE lStyle,int lWidth) { if(ObjectFind(lName)<0) { ObjectCreate(lName,OBJ_TREND,0,startTime,lPrice,endTime,lPrice); ObjectSet(lName,OBJPROP_COLOR,lColor); ObjectSet(lName,OBJPROP_STYLE,lStyle); ObjectSet(lName,OBJPROP_WIDTH,lWidth); ObjectSet(lName,OBJPROP_RAY,false);...
Ignored
thank you palpite
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #19,150
  • Quote
  • May 25, 2017 8:59am May 25, 2017 8:59am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
i want to clear one doubt...
in excel.... to get round number for the function (SQRT(number) is =INT(SQRT(A2)) int is using...

in mq4 how come i use ... please suggest

i wrote line like this
double((MathSqrt(YdayClose)+(0.1))*(MathSqrt(YdayClose)+(0.1)));
in this we get decimal value ... but i want round number... mathround function i found but how to use this .....
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #19,151
  • Quote
  • May 25, 2017 9:18am May 25, 2017 9:18am
  •  karie pips
  • | Joined Apr 2013 | Status: Algorithm Trading | 373 Posts
Hello Programmers,
Please i would need someone to create an EA based on a simple approach with which i will illustrate using a detailed picture.The remaining part of the EA will be sent to your email address.So please if you know you can code it for me then please feel free to send me a private message.Cheers.
Attached Image (click to enlarge)
Click to Enlarge

Name: Karie's Trading Strategy 2.jpg
Size: 146 KB
Price,Precision,Psychic,Pyschology ,Patience and Pr.Karie's 6Ps of trading.
  • Post #19,152
  • Quote
  • May 25, 2017 9:23am May 25, 2017 9:23am
  •  palpite
  • Joined Sep 2015 | Status: Under Pressure | 2,343 Posts
Quoting ramzam
Disliked
i want to clear one doubt... in excel.... to get round number for the function (SQRT(number) is =INT(SQRT(A2)) int is using... in mq4 how come i use ... please suggest i wrote line like this double((MathSqrt(YdayClose)+(0.1))*(MathSqrt(YdayClose)+(0.1))); in this we get decimal value ... but i want round number... mathround function i found but how to use this .....
Ignored
I not use excel, maybe other member can help you.
Together we can be strongest
  • Post #19,153
  • Quote
  • May 25, 2017 11:19am May 25, 2017 11:19am
  •  bwchang
  • | Joined Apr 2016 | Status: Member | 10 Posts
Hi Great Coders,
Could anyone please help me to modify the attached indicator so that when I change the Variable "Line_Thinckness", it will only change the line thickness of the currency pair on the chart window, but will not change the line thickness of the other 6 currencies (like the attached image), thank you.
Attached Image (click to enlarge)
Click to Enlarge

Name: 26-05-2017 1-15-00 AM.png
Size: 41 KB
Attached File
File Type: mq4 CCFp mtf & alerts 2.03 nmc.mq4   30 KB | 175 downloads
  • Post #19,154
  • Quote
  • May 25, 2017 11:23am May 25, 2017 11:23am
  •  Georgebaker
  • | Joined Nov 2009 | Status: Member | 467 Posts
Quoting ramzam
Disliked
i want to clear one doubt... in excel.... to get round number for the function (SQRT(number) is =INT(SQRT(A2)) int is using... in mq4 how come i use ... please suggest i wrote line like this double((MathSqrt(YdayClose)+(0.1))*(MathSqrt(YdayClose)+(0.1))); in this we get decimal value ... but i want round number... mathround function i found but how to use this .....
Ignored
Maybe you can get some ideas from this round numbers indicator.

https://www.forexfactory.com/showthread.php?t=389102
Blindly following others will make you blind!
  • Post #19,155
  • Quote
  • Edited at 12:34pm May 25, 2017 11:30am | Edited at 12:34pm
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,710 Posts
Quoting bwchang
Disliked
Hi Great Coders, Could anyone please help me to modify the attached indicator so that when I change the Variable "Line_Thinckness", it will only change the line thickness of the currency pair on the chart window, but will not change the line thickness of the other 6 currencies (like the attached image), thank you. {image} {file}
Ignored

  1. Change line width via Color Tab
  2. Change line style via Color Tab
  3. Change Line color via Inputs Tab (changing color via Color Tab will result in line color change but no text color change)
  4. Push Notification added
  5. Fixed: Alerts firing at change of Time Frame
  6. The only core code changed -> lines 647 commented out and 648 edited as ↓

Inserted Code
//SetIndexStyle(buffNo,DRAW_LINE,STYLE_SOLID,Line_Thickness,col);
SetIndexStyle(buffNo,DRAW_LINE,EMPTY,EMPTY, col);
One of the problems that is often overlooks is the code is edited in such a way that the line thickness is only valid until the time frame is changed and then reverts to the default thickness.
The below gif animation proves this error does not exist in the edit.
Attached Image (click to enlarge)
Click to Enlarge

Name: 2017-05-25_15-46-40.gif
Size: 335 KB
Attached File
File Type: mq4 CCFp mtf & alerts 2.03 nmc mod - 1a.mq4   30 KB | 343 downloads
Posts are not necessary intended for you
  • Post #19,156
  • Quote
  • May 25, 2017 3:17pm May 25, 2017 3:17pm
  •  asp123
  • | Joined Apr 2017 | Status: Member | 30 Posts
hello members ....great success to all

Request for making changes about Alert to attached Renco indicator ....
i tried and made some modification about play sound (different) for bullish and bearish candle ,In this indicator Playsound alert played each and every bull and bear candle.... I want to play sound for bull candle only after consecutive bear candles formed and vice versa. (alert1.wav for bull and alert2.wav for bear)
Plese take a look at image for more clarification .
I broke my head , but can't manage to do it

please, some one kind enough to take a look on this request

thanku very much ....in advance

regards,
Attached Image (click to enlarge)
Click to Enlarge

Name: chart1.jpg
Size: 70 KB
Attached File
File Type: mq4 Renko Mean Live Chart Indicator & alerts.mq4   18 KB | 328 downloads
  • Post #19,157
  • Quote
  • May 25, 2017 11:54pm May 25, 2017 11:54pm
  •  bwchang
  • | Joined Apr 2016 | Status: Member | 10 Posts
Quoting Phylo
Disliked
{quote} Change line width via Color Tab Change line style via Color Tab Change Line color via Inputs Tab (changing color via Color Tab will result in line color change but no text color change) Push Notification added Fixed: Alerts firing at change of Time Frame The only core code changed -> lines 647 commented out and 648 edited as ↓ //SetIndexStyle(buffNo,DRAW_LINE,STYLE_SOLID,Line_Thickness,col); SetIndexStyle(buffNo,DRAW_LINE,EMPTY,EMPTY, col); One of the problems that is often overlooks is the code is edited in such a way that the line...
Ignored

Hi Phylo, thanks a lot for sharing the mod indicator. I've tested it and it works well on my broker's MT4 platform, really appreciate your help
  • Post #19,158
  • Quote
  • May 26, 2017 12:28am May 26, 2017 12:28am
  •  micbrook
  • | Joined May 2017 | Status: Member | 59 Posts
Quoting micbrook
Disliked
How about something that should be real basic (well in theory) that does a trade on every candle over an amount of pips.... so if a candle moves 5 pips in any direction, trade for another 5 pips in the same direction. would that be easy to make as an EA?! thanks
Ignored
For example
Attached Image (click to enlarge)
Click to Enlarge

Name: IMG_4609.JPG
Size: 247 KB
  • Post #19,159
  • Quote
  • Edited at 2:25am May 26, 2017 12:35am | Edited at 2:25am
  •  Enki
  • | Joined Feb 2016 | Status: Junior Member | 3 Posts
Hi Coders

Can anyone convert this BBSTOP indicator into a EA, entry and exits on BB colour change with the addition of TP,SL and lot size inputs

Thanks
BBands_Stop_v2_2.0.ex4 19 KB | 1 download
  • Post #19,160
  • Quote
  • Edited at 4:31am May 26, 2017 2:16am | Edited at 4:31am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,710 Posts
Quoting bwchang
Disliked
{quote} Hi Phylo, thanks a lot for sharing the mod indicator. I've tested it and it works well on my broker's MT4 platform, really appreciate your help
Ignored
To permanently change options edit the following code true or false and color - starting at about line 25
Inserted Code
extern bool   USD       = true;
extern bool   EUR       = true;
extern bool   GBP       = true;
extern bool   CHF       = false;
extern bool   JPY       = true;
extern bool   AUD       = true;
extern bool   CAD       = false;
extern bool   NZD       = false;
extern bool   showOnlySymbolOnChart = false;
extern color  Color_USD = White;
extern color  Color_EUR = BlueViolet;
extern color  Color_GBP = Green;
extern color  Color_CHF = Blue;
extern color  Color_JPY = Red;
extern color  Color_AUD = Gold;
extern color  Color_CAD = Green;
extern color  Color_NZD = Brown;
colors can be found here (the prefix 'clr' is not 100 % necessary, it offers auto listing when typing) - https://docs.mql4.com/constants/obje...ants/webcolors

The code must be compiled and error free to take effect. Do,check & do 1, 2 & 3 below.
Attached Image
Attached Image
Attached Image
Posts are not necessary intended for you
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 956957Page 958959960 2276
    • 1 Page 958 2276
16 traders viewing now, 5 are members:
Olegrok
,
Jongngos
,
Invisible
,
Invisible
,
Invisible
  • 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