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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Coding robots and indicators in C# for no charge (cTrader API) 181 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
  • 30,189
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 19871988Page 198919901991 2211
  • 1 Page 1989 2211
  •  
  • Post #39,761
  • Quote
  • Sep 27, 2020 5:46pm Sep 27, 2020 5:46pm
  •  Billion.pips
  • | Joined Sep 2019 | Status: Member | 23 Posts
Hello...
Am new in coding, just finished my first EA. I need some help guys. I have a problem with the Alert, it keeps popping up....also i would like to add an option of multi pair....i would really appreciate your help as i also learn form you.Attachment 3751127Attachment 3751128 Attachment 3751145
Perseverance will pay
REAL ME Return This Month: -46.8%
  • Post #39,762
  • Quote
  • Sep 27, 2020 6:34pm Sep 27, 2020 6:34pm
  •  Usmanshafeen
  • | Joined Mar 2020 | Status: Member | 49 Posts
Quoting mntiwana
Disliked
{quote} Do you think this can help you possibly but i doubts you will not be able to understand and manage such a extremely extended indicator - Although there are 2 more signal lines that you can adjust/bring on your desired setup extern string TimeFrame = "Current time frame"; extern int OsMaPrice = 0; extern int FastMa = 12; extern int SlowMa = 26; extern int SignalMa = 9; extern int MaMode = 11; extern bool divergenceVisible = true; extern bool divergenceOnValuesVisible = true; extern bool divergenceOnChartVisible = true; extern color...
Ignored
Thanks alot for help
  • Post #39,763
  • Quote
  • Edited at 7:44pm Sep 27, 2020 7:34pm | Edited at 7:44pm
  •  JamaicanYute
  • | Joined Sep 2020 | Status: Junior Member | 2 Posts
Attached File
File Type: mq4 trade_protector-1.2.mq4   8 KB | 68 downloads

Greetings, is it possible to edit this trade protector to carry out its functions in stealth? As well i've realised ive noticed if i try and set the threshold for the trailing to start, when i set it to anything below 12 pips it doesnt work, i want it to be able to start from 2 pips in profit.
It'd be greatly appreciated!

Peace and Love!
  • Post #39,764
  • Quote
  • Sep 27, 2020 7:45pm Sep 27, 2020 7:45pm
  •  TrendLover
  • | Joined Jun 2019 | Status: Member | 151 Posts
Hello coders,

What's wrong with this indicator? Why are the SL and TP values changing?
Where's the error?

Attached Image
Attached Files
File Type: mq4 Predicted TP&SL Labels 1.0.mq4   7 KB | 59 downloads
File Type: mq4 Predicted_TP&SL_Labels_v1.3.mq4   9 KB | 79 downloads
  • Post #39,765
  • Quote
  • Sep 27, 2020 7:55pm Sep 27, 2020 7:55pm
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,877 Posts
Quoting ramzam
Disliked
i have one doubt. is this indicator updating at open time of market because when i see after open market the lines are same and i change the time frame normally i watch M15 to M30 or M5 and back to M15 the lines are get changed.. i added newbar option too.. but guess not working... can any one look at this and if find any issues please be corrected... to know this diff please attach into chart time frame any.. let it run.. and next day after open watch the lines they are same only... just change the time frame to other one and back to same watching...
Ignored
any help on this from any good heart
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #39,766
  • Quote
  • Sep 27, 2020 9:30pm Sep 27, 2020 9:30pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting TrendLover
Disliked
Hello coders, What's wrong with this indicator? Why are the SL and TP values changing? Where's the error? {image} {file} {file}
Ignored
Tickvalue is not fixed. Since your indicator is displaying in profit/loss based on tickvalue, it will change consistently.

double tick_val=MarketInfo(OrderSymbol(),MODE_TICKVALUE);//GetTickValue
double tp_dist=(OrderOpenPrice()-OrderTakeProfit())/MarketInfo(OrderSymbol(),MODE_POINT);//CalcDistance
double tp_val=(tp_dist*tick_val)*OrderLots();//CalcValue
pTP+=tp_val;
I still don't know where is the Holy Grail
  • Post #39,767
  • Quote
  • Sep 27, 2020 9:47pm Sep 27, 2020 9:47pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting emmy4
Disliked
{quote} Hello BlueRain, glad to have you back. Please, this indicator has option to alert on current candle but its not working, help to make it alert immediately the arrow shows up on chart, Thanks in advance.{file}
Ignored
Alert code was on wrong place.
I moved that and changed little bit.

Try out and let me know if not working.
Attached File
File Type: mq4 PAMA GannGrid_oscv_Fix 4.3 Alert.mq4   48 KB | 116 downloads
I still don't know where is the Holy Grail
1
  • Post #39,768
  • Quote
  • Sep 27, 2020 10:22pm Sep 27, 2020 10:22pm
  •  TrendLover
  • | Joined Jun 2019 | Status: Member | 151 Posts
Quoting BlueRain
Disliked
{quote} Tickvalue is not fixed. Since your indicator is displaying in profit/loss based on tickvalue, it will change consistently. double tick_val=MarketInfo(OrderSymbol(),MODE_TICKVALUE);//GetTickValue double tp_dist=(OrderOpenPrice()-OrderTakeProfit())/MarketInfo(OrderSymbol(),MODE_POINT);//CalcDistance double tp_val=(tp_dist*tick_val)*OrderLots();//CalcValue pTP+=tp_val;
Ignored
I noticed that this change in the SL TP values displayed by the indicator only happens in pairs where the quote currency is different from the deposit currency of the account. In the gif of the previous post where I showed the change happening the pair was NZDCHF and the currency of the account is USD. The author of the indicator informed me that this is normal. I opened an position on NZDUSD and saw that the values did not change.
  • Post #39,769
  • Quote
  • Sep 27, 2020 11:08pm Sep 27, 2020 11:08pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting TrendLover
Disliked
{quote} I noticed that this change in the SL TP values displayed by the indicator only happens in pairs where the quote currency is different from the deposit currency of the account. In the gif of the previous post where I showed the change happening the pair was NZDCHF and the currency of the account is USD. The author of the indicator informed me that this is normal. I opened an position on NZDUSD and saw that the values did not change.
Ignored
Based on MT4 doc, TickValue is in deposit currency.

MODE_TICKVALUE Tick value in the deposit currency

I guess conversion is happening when there is no deposit currency in the pair.
I still don't know where is the Holy Grail
1
  • Post #39,770
  • Quote
  • Sep 28, 2020 2:28am Sep 28, 2020 2:28am
  •  genuine007
  • | Joined Sep 2020 | Status: Member | 107 Posts
Quoting jeanlouie
Disliked
{quote} It needs exact times to be present, commodities have different session times to fx and to eachother, so the starting/end times of a new day, or from day to day may be different. There can also be several hours missing, I have written stuff to handle that before, but I wont be rewriting this. You can use this to draw std dev lines from a main linear regression line, drag the end points where ever you want, it'll read whatever's there. It's like the inbuilt std dev channel except this has more dev channels in one. LR_wSTD_Deviations_Channel_Drag...
Ignored
thanks... that static & stick feature is very much needed...
  • Post #39,771
  • Quote
  • Sep 28, 2020 2:42am Sep 28, 2020 2:42am
  •  genuine007
  • | Joined Sep 2020 | Status: Member | 107 Posts
Quoting genuine007
Disliked
{quote} thanks... that static & stick feature is very much needed...
Ignored
but still this is not as stable and customizable as the original one developed by you.
you still can edit that..if you want..... I am telling you the only problem with the original one is with when we select TF? as 1 DAY for GOLD, OIL, INDEXES etc
when we use TF? as 1 Week it works
when we use TF? as 1 Month it works
but when we use TF? as 1 DAY it don't show anything on the chart... i belive you can fix this.. please please pleasee... would be very very thankfull

I wish & I hope you could find some spare time and modify the original one for the indexes and comodities..that will be awesomeee
  • Post #39,772
  • Quote
  • Sep 28, 2020 3:33am Sep 28, 2020 3:33am
  •  Ehsaan1999
  • | Joined Sep 2020 | Status: Member | 28 Posts
Quoting Metatrader
Disliked
Hey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. Andi
Ignored
Help required in a very minor task. Only need to change the alert method from E-MAIL to POP-UP notification in this indicator. I have used the sendnotification instead of sendmail but somehow I am always getting the syntax wrong. Thanks in advance.
Attached File
File Type: mq4 BBRSI_v2.mq4   9 KB | 65 downloads
  • Post #39,773
  • Quote
  • Sep 28, 2020 6:02am Sep 28, 2020 6:02am
  •  interbucks
  • | Joined Jan 2012 | Status: Member | 263 Posts
Will you please be so kind as to identify from which indicator this is (see attached picture), what it is named, and if it is freely available.

Apparently it is of great help to show the trend, and 3 profit targets as well.
Attached Image
  • Post #39,774
  • Quote
  • Sep 28, 2020 8:39am Sep 28, 2020 8:39am
  •  Motiram
  • Joined Nov 2014 | Status: Member | 546 Posts
Quoting jeanlouie
Disliked
{quote} Ok I saw it, all 3 signal types were using the timing of the completed close candle ie previous candle for the on-close option. Seems fixed now. {file}
Ignored
Thank you very much jeanlouie,

Just want to inform you that all have worked flawless both the options on the H4 & H1 candle triggered perfectly and the vline plotted correctly on the triggered candle and the message got was correct too.

Good Luck

Regards,
Moti
  • Post #39,775
  • Quote
  • Sep 28, 2020 8:46am Sep 28, 2020 8:46am
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 770 Posts
Quoting Ehsaan1999
Disliked
{quote} ...change the alert method from E-MAIL to POP-UP notification in this indicator...
Ignored
Try it out, pop-push-email options.
Attached File
File Type: mq4 BBRSI_v2.1.mq4   10 KB | 118 downloads
2
  • Post #39,776
  • Quote
  • Sep 28, 2020 9:02am Sep 28, 2020 9:02am
  •  Minky01
  • | Joined May 2020 | Status: Member | 17 Posts
Hi Andy,
I put in a request on post 39406 but not sure if you have seen it
  • Post #39,777
  • Quote
  • Sep 28, 2020 11:26am Sep 28, 2020 11:26am
  •  Billion.pips
  • | Joined Sep 2019 | Status: Member | 23 Posts
Hello...
Am new in coding, just finished my first EA. I need some help guys. I have a problem with the Alert, it keeps popping up....also i would like to add an option of multi pair....i would really appreciate your help as i also learn form you.
Attached Files
File Type: mq4 Billion EA Ver_1.01.mq4   11 KB | 77 downloads
File Type: ex4 TMA+CG mladen.ex4   30 KB | 69 downloads
File Type: ex4 CAPISOFTFOREX_Ver1.8.ex4   19 KB | 96 downloads
Perseverance will pay
REAL ME Return This Month: -46.8%
  • Post #39,778
  • Quote
  • Sep 28, 2020 11:46am Sep 28, 2020 11:46am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting Oracheal
Disliked
BlueRain and other coders I am testing this EA gotten from this forum. The only problem with it is that its lots size is not executing correctly. It is always of a fixed value of 0.1, even when you change it to like 0.01 or higher value, the order placed is always 0.1. Please can you adjust the EA to place the correct order. Thanks {file}
Ignored
it has condition of
if(lot<0.1) lot=0.1;

I commented out.
Attached File
File Type: mq4 Moving AverageEA_k.mq4   6 KB | 74 downloads
I still don't know where is the Holy Grail
  • Post #39,779
  • Quote
  • Edited at 6:36pm Sep 28, 2020 12:20pm | Edited at 6:36pm
  •  GibbonsFx
  • | Joined May 2014 | Status: Member | 64 Posts
Hello,

I'm wondering if anyone is interested in coding the following: I'm basically looking for an indicator that will plot horizontal lines for the PREVIOUS day's market sessions (open , high, low, close) onto the CURRENT day's chart. The horizontal lines will reset, be removed and then be redrawn each new day and the lines will always be from the previous day's sessions and not the current day's sessions.

So for example, on today's chart I would see the previous day's Sydney, Tokyo, Frankfurt, London and NY open, high, low and close prices as horizontal lines. I'm not interested in seeing them all at once so I would like the ability to turn each line on or off. For brokers with Sunday candles, Friday's session information would be displayed through Monday's close. Variables would look something like this for each of the five sessions; using Sydney as an example:

Text variables apply to all labels:

Text font (user input variable)
Text size (user input variable)
Text spacing (user input variable; # of pixels above horizontal line)

// Text color = each session's horizontal line color
// Text label will appear just above each horizontal line on the far right and is defined by the "label text" input values

Sydney open time (user input variable (to accommodate different broker time zones))
Sydney close time (user input variable (to accommodate different broker time zones))
Display Sydney Open (Yes or No) (drop-down variable)
Sydney Open Line Color (color picker or user input variable)
Sydney Open Line Style (drop-down)
Sydney Open Line Thickness (drop-down)
Display Sydney Open Label (Yes or No) (drop-down variable)
Sydney Open Label Text (user input variable)
Display Sydney High (Yes or No) (drop-down variable)
Sydney High Line Color (color picker or user input variable)
Sydney High Line Style (drop-down)
Sydney High Line Thickness (drop-down)
Display Sydney High Label (Yes or No) (drop-down variable)
Sydney High Label Text (user input variable)
Display Sydney Low (Yes or No) (drop-down variable)
Sydney Low Line Color (color picker or user input variable)
Sydney Low Line Style (drop-down)
Sydney Low Line Thickness (drop-down)
Display Sydney Low Label (Yes or No) (drop-down variable)
Sydney Low Label Text (user input variable)
Display Sydney Close (Yes or No) (drop-down variable)
Sydney Close Line Color (color picker or user input variable)
Sydney Close Line Style (drop-down)
Sydney Close Line Thickness (drop-down)
Display Sydney Close Label (Yes or No) (drop-down variable)
Sydney Close Label Text (user input variable)

Thanks in advance if anyone is interested in giving it a go.

Cheers!
GFx
  • Post #39,780
  • Quote
  • Sep 28, 2020 12:26pm Sep 28, 2020 12:26pm
  •  Oracheal
  • | Joined Apr 2019 | Status: Member | 30 Posts | Online Now
Quoting BlueRain
Disliked
{quote} it has condition of if(lot<0.1) lot=0.1; I commented out. {file}
Ignored
Appreciated. Will check it out. Thanks for the help.
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 19871988Page 198919901991 2211
    • 1 Page 1989 2211
6 traders viewing now
  • 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