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

I will code your pivot EAs for no charge 20 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
  • 41,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 23112312Page 231323142315 2992
  • 1 Page 2313 2992
  •  
  • Post #46,241
  • Quote
  • May 30, 2021 8:34am May 30, 2021 8:34am
  •  Kafin
  • | Joined Mar 2013 | Status: Member | 99 Posts
Quoting thjw
Disliked
Having trouble with indicator Comment that will not divide by a variable in the boolean 'FrequencyPercentage' section. Variable int 'FreqNumTotal' line 401 is where it is defined. Trying to get that integer variable to divide another number variable 'a' on line 405 in metaeditor. Without the variable dividing 'FreqNumTotal, it will print on screen, but as soon as i divide 'a/FreqNumTotal' all text in the comments disappears. I have tried to change variables to float, int and doule. I can't figure out what the problem is. Does anybody have any insight?...
Ignored
Major problem is in line 56; for(i=0;i<Bars; i++)
Your code iterate up to Bars, and has i+28 - it has fallen off the cliff. Try for(i=0;i<Bars-50; i++)

a/FreqNumTotal is less than 1 so displays as 0
I guess you modified FrequencyNumber / FrequencyPercentage so that the section can display
 
 
  • Post #46,242
  • Quote
  • May 30, 2021 10:20am May 30, 2021 10:20am
  •  gavias
  • | Joined May 2021 | Status: Junior Member | 1 Post
Quoting Ceto
Disliked
{quote} Hi John, 1) I fixed a Buffer ANGL, so you can see in data screen and use it by iCustom() in your EA, also a option ShowANGL :True/False to watch as #Angle= -13.29 in the main screen 2) Since current Bar is open , I have no idea {file}
Ignored
I would like to know how its possible to use another MA or how can I add my own MA? In the actual code is:

extern int Method=1;
// 0 - SMA
// 1 - EMA
// 2 - SMMA
// 3 - LWMA

Your help will be very important.

THAN YOU
 
 
  • Post #46,243
  • Quote
  • May 30, 2021 11:29am May 30, 2021 11:29am
  •  khodakd
  • | Joined May 2021 | Status: Junior Member | 3 Posts
Quoting khodakd
Disliked
{quote} Hi I really need your help on converting this indicator to an expert advisor, right now, i am using ICustom and the expert is already functional but, using optimizer became a hell and really slow. That is why I need the calculations to be transfered inside a method for an expert advisor, how ever, no matter what I did try, this result is not the same with the result from the indicator. Here is the link for the indicator being published inside code base section of the website (by the way it's MT5): https://www.mql5.com/en/forum/233532...
Ignored
@mntiwana
Hi, can you or any other coder help me on this one please? thanks
 
 
  • Post #46,244
  • Quote
  • May 30, 2021 12:46pm May 30, 2021 12:46pm
  •  Vinna
  • | Joined May 2020 | Status: Member | 69 Posts
Hello everyone,

Can anyone code or direct me to EA with following conditions

Fake Stoploss and Take profit (levels should show price and risk amount)

Hard Stoploss and Take profit (levels should show price and risk amount)

(Lines to be in color options)

Breakeven

Breakeven pips

Trailing stop

Trailing step

Partial close levels

Partial close percentage
 
 
  • Post #46,245
  • Quote
  • May 30, 2021 1:14pm May 30, 2021 1:14pm
  •  Alesiosc
  • | Joined Feb 2019 | Status: Member | 387 Posts
APTM or MPTM....somewhere in this thread
If at first you don't succeed, try, try again.
 
1
  • Post #46,246
  • Quote
  • May 30, 2021 1:20pm May 30, 2021 1:20pm
  •  thjw
  • | Joined Dec 2014 | Status: Member | 247 Posts
Quoting Kafin
Disliked
{quote} Major problem is in line 56; for(i=0;i<Bars; i++) Your code iterate up to Bars, and has i+28 - it has fallen off the cliff. Try for(i=0;i<Bars-50; i++) a/FreqNumTotal is less than 1 so displays as 0 I guess you modified FrequencyNumber / FrequencyPercentage so that the section can display
Ignored
DUDE!!! Thank you!!! Your a freakin genius. The Bars-50 did it.
(Coders helping coders...there should be more of that around here)
 
 
  • Post #46,247
  • Quote
  • May 30, 2021 2:27pm May 30, 2021 2:27pm
  •  Gauer
  • | Commercial Member | Joined Oct 2017 | 640 Posts
Hi there guys, can someone please make this indicator display as a histogram instead of a line?

Also, it needs a coloring method for the histogram bars, I was thinking about two modes to test it:

Attached Image (click to enlarge)
Click to Enlarge

Name: Untitled.png
Size: 18 KB


Indicator:

Attached File(s)
File Type: mq5 Tape_Speed_Indicator.mq5   4 KB | 166 downloads
 
 
  • Post #46,248
  • Quote
  • May 30, 2021 7:54pm May 30, 2021 7:54pm
  •  walvekarraje
  • Joined Feb 2019 | Status: Member | 343 Posts
Quoting XplosionKibo
Disliked
{quote} Here you go!{file}{file}
Ignored
perfect. thanks a lot .
 
1
  • Post #46,249
  • Quote
  • May 30, 2021 9:13pm May 30, 2021 9:13pm
  •  siglot
  • | Joined Sep 2020 | Status: Member | 84 Posts
Good day house.

I saw this fairly good indicator online but had a problem i can't seem to fix on my own

Whenever i insert the indicator on any timeframe, it reference the H4 Timeframe by default to produce it's arrow as seen in the picture below

Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot 2021-05-31 020350.jpg
Size: 111 KB

So i would appreciate if a coder in the house can help fix this such that if i attach it on a given timeframe, it will reference a higher timeframe in this order:

M1 will reference M5
M5 will reference M15
M15 will reference H1
M30 will reference H4
H1 will reference H4
H4 will reference D1
D1 will reference W1
W1 will reference MN

Here is the indicator in question:
Attached File(s)
File Type: mq4 SBNR (Arrow).mq4   17 KB | 399 downloads
Live and Let Live
LiBra All Time Return: -0.1%
 
1
  • Post #46,250
  • Quote
  • Edited 4:13am May 31, 2021 3:33am | Edited 4:13am
  •  Godwin Igili
  • Joined May 2011 | Status: Member | 407 Posts
Good day all

I will appreciate our coders help on the below indicator

On removing the indicator from the chart, it still leaves its lines(objects)

Kindly assist to include the code that will remove these lines(objects) when the indicator is removed from the chart.
Thank you
Attached File(s)
File Type: mq4 camarilladt8_1.mq4   49 KB | 143 downloads
File Type: mq4 Camarilla.mq4   5 KB | 136 downloads
 
 
  • Post #46,251
  • Quote
  • Edited 2:39pm May 31, 2021 7:07am | Edited 2:39pm
  •  XplosionKibo
  • Joined Feb 2020 | Status: Member | 80 Posts
Quoting Godwin Igili
Disliked
Good day all I will appreciate our coders help on the below indicator On removing the indicator from the chart, it still leaves its lines(objects) Kindly assist to include the code that will remove these lines(objects) when the indicator is removed from the chart. Thank you {file} {file}
Ignored

I'm sure there are much better versions of the Camarilla than this crap, if you search properly for it!
However here the issued fixed, try it!
Attached File(s)
File Type: mq4 Camarilla.mq4   10 KB | 134 downloads
 
1
  • Post #46,252
  • Quote
  • May 31, 2021 8:04am May 31, 2021 8:04am
  •  Godwin Igili
  • Joined May 2011 | Status: Member | 407 Posts
Quoting XplosionKibo
Disliked
{quote} I'm sure you there are much better versions of the Camarilla than this crap, if you search properly for it! However here the issued fixed, try it! {file}
Ignored
Thank you.
This the one I could get.
I even wanted one that the lines only extend from current day open with its price
If you have better version(mq4) I will appreciate you post it or PM.

Thank you for the help
 
 
  • Post #46,253
  • Quote
  • May 31, 2021 8:06am May 31, 2021 8:06am
  •  tintep
  • Joined Nov 2019 | Status: Member | 226 Posts
Quoting sibianaga
Disliked
I have humble request t0 you very kind and generous coders to insert a push button to display/ not diplay the indicator on the chart. if possible make it moveable so that i can load 2 to 3 indictors with different settings and place the button in different loctions. would also help to set colour for each button. Would be extreamly grateful. Thank you {file}
Ignored
I have this version if you want . Try this.

You can moveable button with buttton x , button y. You can place with different setting with "btn_text" etc "HalfTrendM" , "HalfTrendX".

and "!NIH98 !TMA Centered Multi Bands Indi-BT" if somebody want. Sorry for my English.
Attached Image (click to enlarge)
Click to Enlarge

Name: 2021-05-31_185226.jpg
Size: 313 KB
Attached File(s)
File Type: ex4 HalfTrend MTF with channels alerts-BT.ex4   39 KB | 210 downloads
File Type: ex4 ! NIH98 !TMA Centered Multi Bands Indi-BT.ex4   60 KB | 197 downloads
 
 
  • Post #46,254
  • Quote
  • Edited 9:14am May 31, 2021 8:57am | Edited 9:14am
  •  XplosionKibo
  • Joined Feb 2020 | Status: Member | 80 Posts
Quoting Godwin Igili
Disliked
{quote} Thank you. This the one I could get. I even wanted one that the lines only extend from current day open with its price If you have better version(mq4) I will appreciate you post it or PM. Thank you for the help
Ignored
Try this one for example!
It offers several selectable calculation methods as Classical, Woodie, Camarilla, Fibonnaci, CPR including different preset periods!

Attached File(s)
File Type: ex4 PivotPoints.All-In-One.ex4   81 KB | 156 downloads
 
1
  • Post #46,255
  • Quote
  • Edited 11:24am May 31, 2021 9:26am | Edited 11:24am
  •  Ieis5
  • | Joined May 2021 | Status: Member | 104 Posts
Quoting Ieis5
Disliked
I have the same problem as this guy https://forex-station.com/app.php/attach/file/3340624 that is to say, I use like him BetterVolume ChartBars part1 1.4.mq4 BetterVolume ChartBars part2 1.4.mq4 but the whole wick is covered by the color of the volume.... I absolutely need to see the wick itself My idea is to display this vertical colored bar next to the wick, instead of over it. I want also to be able to control the width[i want default = 2] of the bar near the wick. So the whole endeavor is to move the stick by a few pixels on the left of the wick, but the length of the stick is not modified from the original code. {file} {file} {file} {file}
Ignored


it turns out this was done by mladen and.or snyder lol, years ago

https://www.mql5.com/en/forum/177158...omment_4328021

https://www.mql5.com/en/forum/173574...omment_4544782


//Simply replace lines like these :
//red = High;
//
//blue =Low;[/php]
//
//with these :
//
//[php] red = MathMax(Open,Close);
//blue =MathMin(Open,Close);



i upload their work to find it here too
Attached File(s)
File Type: mq4 bettervolume_chartbars_part1_1.5.mq4   5 KB | 134 downloads
File Type: mq4 bettervolume_chartbars_part2_1.5.mq4   5 KB | 164 downloads
 
 
  • Post #46,256
  • Quote
  • May 31, 2021 9:28am May 31, 2021 9:28am
  •  Godwin Igili
  • Joined May 2011 | Status: Member | 407 Posts
Quoting XplosionKibo
Disliked
{quote} Try this one for example! It offers several selectable calculation methods as Classical, Woodie, Camarilla, Fibonnaci, CPR including different preset periods! {file}
Ignored
Thank you Xplosionkibo
Do you any good one with source(Mq4)code?
 
 
  • Post #46,257
  • Quote
  • May 31, 2021 10:57am May 31, 2021 10:57am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,392 Posts
Quoting Ieis5
Disliked
{quote} it turns out this was done by mladen and.or snyder lol, years ago https://www.mql5.com/en/forum/177158...omment_4328021 https://www.mql5.com/en/forum/173574...omment_4544782 //Simply replace lines like these : //red = High; // //blue =Low;[/php] // //with these : // //[php] red = MathMax(Open,Close); //blue =MathMin(Open,Close); i upload their work to find it here too {file} {file}
Ignored
A little info addition "William Snyder" within mql5 is the other name or nickname or ID of Mrtools (from tsd days) that was changed in mql5 when tsd stuff migrated to mql5
 
 
  • Post #46,258
  • Quote
  • May 31, 2021 11:15am May 31, 2021 11:15am
  •  montego
  • | Joined Jan 2014 | Status: Member | 1,058 Posts
Hi Guys Help needed please, Can Anyone tell me why this and most Breakout Ea Wont trade on Us30 Cash ? it will draw a box but wont take the trade? ive tried every setting, spent 3 days trying to figure it out trades fine on all forex Pairs, its an old Ronald Raygun Ea so many Thanks to him.
Attached File(s)
File Type: mq4 Generic Breakout Version 7 [TD].mq4   39 KB | 184 downloads
 
 
  • Post #46,259
  • Quote
  • May 31, 2021 11:55am May 31, 2021 11:55am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,392 Posts
Quoting montego
Disliked
Hi Guys Help needed please, Can Anyone tell me why this and most Breakout Ea Wont trade on Us30 Cash ? it will draw a box but wont take the trade? ive tried every setting, spent 3 days trying to figure it out trades fine on all forex Pairs, its an old Ronald Raygun Ea so many Thanks to him. {file}
Ignored
Might be it needs compatibility regarding handling all sorts of instruments,a lot has been changed (mql4 language) since the code was public
other than the above possible cause,it must be cleaned by all errors and warning at first
Attached Image (click to enlarge)
Click to Enlarge

Name: 1.png
Size: 225 KB
 
 
  • Post #46,260
  • Quote
  • May 31, 2021 12:55pm May 31, 2021 12:55pm
  •  BlackArt
  • | Joined Feb 2021 | Status: Member | 56 Posts
Quoting jeanlouie
Disliked
{quote} I had a second person notify me of this, so I tried again to replicate it or find out how it'd happen, I did find a way to replicate it, it's been amended, please verify it on your end. HLine_Alert_Maker_v1.4 - multiple line alert bug fixed - option to not show text on lines (course they wouldn't have names anymore, but just an option) - reminder that lines can be given no color, for those that want a lighter chart {image} {image} {file}
Ignored
Hello Jeanlouie!

I just started to use the HLine_Alert_Maker_v1.4 idiciator - awsom thing! Thank you for yor work.
However, I'm having a small issue with it.
Almost everytime I change the time frames, all my lines are disappearing.
So I was wondeirng, is there any chance that you could look into this please and fix it ?

Also, one more option that I would love to have in this indicator to make it a perfect tool for the alerts
I like to label all my alerts with a proper tag line to not get confused when I receive notifications (example screener attached).
Normally I use an email notifications.

It would be great if you could modify idicator's template, so when the email arrives I can see all the necessary details in the topic of the email and rest of the info in the email's content.

So for example - details it the topic:

ALERT: LOWER LEVEL HIT - CURRENCY PAIR + LABEL DESCRIPTION
ALERT: LOWER LEVEL HIT - AUDJPY // - 60 points reached 1

Any chance for this type of modification ?
Attached Image (click to enlarge)
Click to Enlarge

Name: labels.png
Size: 29 KB
< I collect pips to afford a Starship ride >
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 23112312Page 231323142315 2992
    • 1 Page 2313 2992
34 traders viewing now, 5 are members:
rocktheedge
,
jimz73
,
ksanyi
,
Steverino832
,
Mirel85
  • 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