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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Need help to code EAs for MT4 and MT5 4 replies

I will code your scalping EAs for no charge 36 replies

I will code your pivot EAs for no charge 18 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
  • 37,035
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 20552056Page 205720582059 2689
  • 1 Page 2057 2689
  •  
  • Post #41,121
  • Quote
  • Nov 8, 2020 2:24pm Nov 8, 2020 2:24pm
  •  Beerrun
  • Joined Jan 2016 | Status: Good Coder | Bad Trader | 461 Posts
Quoting ganztrade
Disliked
{quote} Maybe someone can help fix the code..and i can learn too. in my testing side, only one alert triggering when crossing fibo 0% and when hit 100%. BlueRain please check the code, where is the problems? thanks a lot extern bool UseAlert = true; extern int PlaySoundNTimes = 1; if(Bid <= lowest) { if(UseAlert){ for(x=0;x<=PlaySoundNTimes;x++) { PlaySound("expert.wav"); Alert(" Fibo touch on Low " + Symbol() + " @ " + DoubleToStr(lowest, Digits)); } } } if(Bid >= highest) { if(UseAlert){ for(x=0;x<=PlaySoundNTimes;x++) { PlaySound("expert.wav");...
Ignored
Not your main issue but this adds 1 to the amount of alerts sent:
Inserted Code
x=0;x<=PlaySoundNTimes
Should be:
Inserted Code
x=0;x<PlaySoundNTimes
or
x=1;x<=PlaySoundNTimes
 
1
  • Post #41,122
  • Quote
  • Nov 8, 2020 3:37pm Nov 8, 2020 3:37pm
  •  Georgebaker
  • | Joined Nov 2009 | Status: Member | 424 Posts
Quoting ganztrade
Disliked
{quote} Maybe someone can help fix the code..and i can learn too. in my testing side, only one alert triggering when crossing fibo 0% and when hit 100%. BlueRain please check the code, where is the problems? thanks a lot extern bool UseAlert = true; extern int PlaySoundNTimes = 1; if(Bid <= lowest) { if(UseAlert){ for(x=0;x<=PlaySoundNTimes;x++) { PlaySound("expert.wav"); Alert(" Fibo touch on Low " + Symbol() + " @ " + DoubleToStr(lowest, Digits)); } } } if(Bid >= highest) { if(UseAlert){ for(x=0;x<=PlaySoundNTimes;x++) { PlaySound("expert.wav");...
Ignored
Should only alert when crossing 0% not 100%
Blindly following others will make you blind!
 
 
  • Post #41,123
  • Quote
  • Nov 8, 2020 3:44pm Nov 8, 2020 3:44pm
  •  Georgebaker
  • | Joined Nov 2009 | Status: Member | 424 Posts
Quoting Beerrun
Disliked
{quote} Not your main issue but this adds 1 to the amount of alerts sent: x=0;x<=PlaySoundNTimes Should be: x=0;x<PlaySoundNTimes or x=1;x<=PlaySoundNTimes
Ignored
@Beerun,

How do u get the value from 0% fib?
Blindly following others will make you blind!
 
 
  • Post #41,124
  • Quote
  • Nov 8, 2020 3:50pm Nov 8, 2020 3:50pm
  •  ntk
  • Joined Dec 2018 | Status: Member | 962 Posts
Quoting RoninTheory
Disliked
{quote} page 17 post no 327 i belive it is the same thing - or at the very least it is to do with cycles friend of mine was playing with it the name on this thread doesnt mention cycles though i dont think so might be why you over looked it failing that it is video clip expain possibly an early version of - cycle identifyer and if you look at xards work on another site ( will take very long time and also may amount to nothing- as he posts alot ) he was playing with it and was on about making mtf version but was in two minds because of the repaint...
Ignored
You are very knowledgeable and have an amzing good memory. Indeed this picture has great similarity.

I look for this indicator, not because hoping for something magic or a holy grail, but because it appears in a youtube clip explaining DOW theory, the relation ship betwen the long-, medium- and short-term trend in the market movement. which has waken my interest that I want to follow up stuff shown in the video. (video presentation is made off stand-still pictures and unfortunately in Vietnamese only)

Inserted Video


The page I had searched must be different then the page you show here page 17 post 327, thank you to go to such length and post the picture and page and post number for me. The pages I had checked have name also "100 best indicators" etc.. but have less then 17 pages.

Could you give me the link to the web page you get the post from please. and again appreciated very much for your help.
Attached Image
http://forex.timezoneconverter.com/
 
1
  • Post #41,125
  • Quote
  • Nov 8, 2020 4:06pm Nov 8, 2020 4:06pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting Georgebaker
Disliked
{quote} @Beerun, How do u get the value from 0% fib?
Ignored

Thanks a lot Beerun.


@georgebaker, base your code, i read, sometimes, 0% fibo go on lowest, sometimes go on 0% highest...

did really problem to have two times alert when touch 0% and 100%?

Regards
Attached File
File Type: mq4 KISS Auto Fib_alert_fix.mq4   5 KB | 149 downloads
Margin Call again and again...
 
 
  • Post #41,126
  • Quote
  • Nov 8, 2020 4:24pm Nov 8, 2020 4:24pm
  •  Georgebaker
  • | Joined Nov 2009 | Status: Member | 424 Posts
Quoting ganztrade
Disliked
{quote} Thanks a lot Beerun. @georgebaker, base your code, i read, sometimes, 0% fibo go on lowest, sometimes go on 0% highest... did really problem to have two times alert when touch 0% and 100%? Regards {file}
Ignored
did really problem to have two times alert when touch 0% and 100%? I don't understand what you mean by this
Blindly following others will make you blind!
 
 
  • Post #41,127
  • Quote
  • Nov 8, 2020 4:26pm Nov 8, 2020 4:26pm
  •  Phil133
  • | Joined Nov 2020 | Status: Junior Member | 3 Posts
Hello,
I am posting the post again because in the previous one I posted the wrong indicator format.
Could someone add an alert to this indicator that would appear when the color of the candle changes to the opposite? And for the alert to work on Japanese candles as well as Renko candles.
Thank you in advance
Attached Files
File Type: mq4 Forexprofitsupreme Bars.mq4   2 KB | 141 downloads
File Type: ex4 Forexprofitsupreme_Bars.ex4   18 KB | 126 downloads
 
1
  • Post #41,128
  • Quote
  • Nov 8, 2020 4:35pm Nov 8, 2020 4:35pm
  •  RoninTheory
  • Joined Apr 2020 | Status: learning to become butterfly | 741 Posts
Quoting ntk
Disliked
{quote} You are very knowledgeable and have an amzing good memory. Indeed this picture has great similarity. I look for this indicator, not because hoping for something magic or a holy grail, but because it appears in a youtube clip explaining DOW theory, the relation ship betwen the long-, medium- and short-term trend in the market movement. which has waken my interest that I want to follow up stuff shown in the video. (video presentation is made off stand-still pictures and unfortunately in Vietnamese only) https://www.youtube.com/watch?v=FsDN...seGBnElFq2PTz4...
Ignored
so the one you are referencing to me

i feel is this in the screen shot - which you can easily search on google its based on zigzag i believe ( and it can repaint ) so good study is necessary - perhaps google xard he seems to do things with this not saying hes going to be the be all and end all of you learning to use it but more of a prompt that its a repainter and that should be considered

the link for the other page is hear i belive this also may be the same thing kind of but not sure

https://www.forexfactory.com/thread/...s-here?page=17

this is the link you asked for page 17 and post 327

no need for thanks ( i cant code so i try to help in a way in which i can when i feel it is appropriate for me to do so)

kindness is like snow - it beauties everything it touches

you may at some point want to look at mad dash - and- multi bar 2 beta - and a recent post i thanked the wonderful mtwana for only an hour ago these are good tools to be used with other supportive indications

in regards to you finding the very specific indicator that you have seen in some hope that it perhaps displays differently then others provided
you might try to do an image search via google or some other search platform searching the image as aposed to the indicator name might lead to a different result


good luck nice to meet you - hope this helps
Attached Image (click to enlarge)
Click to Enlarge

Name: b328211fc8f548c3fefa0a0671132bf4.png
Size: 137 KB
 
 
  • Post #41,129
  • Quote
  • Nov 8, 2020 4:50pm Nov 8, 2020 4:50pm
  •  Georgebaker
  • | Joined Nov 2009 | Status: Member | 424 Posts
The fixed file didn't work better than the first one, still a lot of pop-up alerts when i attach it to a chart
Blindly following others will make you blind!
 
 
  • Post #41,130
  • Quote
  • Nov 8, 2020 5:24pm Nov 8, 2020 5:24pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting Georgebaker
Disliked
The fixed file didn't work better than the first one, still a lot of pop-up alerts when i attach it to a chart
Ignored

In my side, nothing happened

No pop up, sound... maybe turn on if cross 0% or 100%
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot (98).png
Size: 131 KB
Margin Call again and again...
 
 
  • Post #41,131
  • Quote
  • Nov 8, 2020 6:38pm Nov 8, 2020 6:38pm
  •  cja
  • Joined Feb 2007 | Status: Member | 1,848 Posts
Quoting Georgebaker
Disliked
Hello great coders, Can anyone add an alert to this indicator? The alert should show up when price hit the zeroline of the fib. Thanks in advance! {file}
Ignored
The alerts have to signal on either the zero or hundred line as the Fibs change and the 100 level becomes the 0 level and visa versa. Try this it appears to work on the tester.
Attached File
File Type: ex4 KISS Auto Fib.ex4   17 KB | 240 downloads
Trade what you see not what you hope
 
1
  • Post #41,132
  • Quote
  • Nov 8, 2020 7:17pm Nov 8, 2020 7:17pm
  •  ntk
  • Joined Dec 2018 | Status: Member | 962 Posts
Quoting RoninTheory
Disliked
{quote} so the one you are referencing to me i feel is this in the screen shot - which you can easily search on google its based on zigzag i believe ( and it can repaint ) so good study is necessary - perhaps google xard he seems to do things with this not saying hes going to be the be all and end all of you learning to use it but more of a prompt that its a repainter and that should be considered the link for the other page is hear i belive this also may be the same thing kind of but not sure https://www.forexfactory.com/thread/...s-here?page=17...
Ignored

I have searched via tiny eye, google immage on whole web for cycle indentifier, none like that I see.

I also look through all the cycle indicators. none let go change parameter to get something like that. Perhaps some proprietary SW of long time ago

It is also odd the link you give https://www.forexfactory.com/thread/...s-here?page=17, guide me to the 100 indicator thread but it has only 11 pages not 17!!!
http://forex.timezoneconverter.com/
 
1
  • Post #41,133
  • Quote
  • Nov 8, 2020 8:15pm Nov 8, 2020 8:15pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 980 Posts
Quoting stesy
Disliked
{quote} BlueRain "Click-to-Call-A-Script"does it work for indicators too ? thx
Ignored
No. it was designed to call script only..
 
 
  • Post #41,134
  • Quote
  • Nov 8, 2020 8:25pm Nov 8, 2020 8:25pm
  •  palmy
  • | Joined Dec 2011 | Status: Member | 48 Posts
Quoting jeanlouie
Disliked
{quote} Ok, v1.01 - sl/tp pips from entry price, entry price still inputted - vlines stay in place on tf change {file} {quote} If it's that complicated, then https://www.mql5.com/en/job. {quote} I'm not into EAs, good luck.
Ignored
Thanks Jean! Much appreciated!
 
 
  • Post #41,135
  • Quote
  • Nov 9, 2020 12:16am Nov 9, 2020 12:16am
  •  lucky1359
  • Joined Nov 2018 | Status: Member | 1,051 Posts
Quoting simnz
Disliked
{quote} I hope I have succeeded in putting the idea in a simpler and shorter way. ADR FIBO% Strategy Example: Swing Trading I select Time hours to trade 14:00 to 18:00 an action period . I want to do swing trading using H1 TF. I will have 4 TFs to trade. Either I hit TP or SL , or else trade will be terminated at closure of 18:00 Entry point is 21.4% TP roughly 120 pips close to Target of 38.2% SL is 100 pips closer to Daily Open. ---------------------------------------------------------------------------------- Example: Scalping I select Time hours...
Ignored

Good Great,

Many Good Great Nice Possibilities for Trading. Keep going
 
 
  • Post #41,136
  • Quote
  • Nov 9, 2020 12:21am Nov 9, 2020 12:21am
  •  lucky1359
  • Joined Nov 2018 | Status: Member | 1,051 Posts
Quoting RoninTheory
Disliked
{quote} page 17 post no 327 i belive it is the same thing - or at the very least it is to do with cycles friend of mine was playing with it the name on this thread doesnt mention cycles though i dont think so might be why you over looked it failing that it is possibly an early version of - cycle identifyer and if you look at xards work on another site ( will take very long time and also may amount to nothing- as he posts alot ) he was playing with it and was on about making mtf version but was in two minds because of the repaint factor understand...
Ignored
I was also fascinated by this Cycles but they repainted a lot
I studied them for a long time and feel that it can be blended with some other indicator to get some good results
 
1
  • Post #41,137
  • Quote
  • Edited at 8:02am Nov 9, 2020 12:33am | Edited at 8:02am
  •  doggy7
  • | Joined Oct 2020 | Status: Member | 28 Posts
Hi BlueRain and other great coders,
if you have time, please help to confirm this : i try to create labels, but it was failed. if i am not wrong (i read some where), that the string type in buffer / array can hold only 25 6characters. so i try to compare the print & label of the array, and the result are different.
Below is my testing code (as attachment), i am not sure if my code is right ... and regarding the maximum/ biggest value, is it really not more than that 255 characters ? if i look at expert tab, the print result is ok, it can print almost all of that ... but the label on chart is wrong ...
i am still confuse about this ... ... any clue is welcome ...
Attached Image
Attached File
File Type: mq4 arrayTest.mq4   14 KB | 97 downloads
Learning coding &&& statistics are useful. Never giveup even if
 
 
  • Post #41,138
  • Quote
  • Nov 9, 2020 2:32am Nov 9, 2020 2:32am
  •  ntk
  • Joined Dec 2018 | Status: Member | 962 Posts
Quoting lucky1359
Disliked
{quote} I was also fascinated by this Cycles but they repainted a lot I studied them for a long time and feel that it can be blended with some other indicator to get some good results
Ignored
Do you know about theKuskus_Starlight indicator. That has a special part in it, where only new coordinate is calculated not the history I would like that some coder would inspect that code and explain so that more people can see advantage or dis-advantage using or not using that indicator.

I know that this cycle identifier are repainting, like zigzag line too but I would like to use that as a tool for invectigating the relationship of different trend type for the purpose of timing rather than signaling for entering a trade. Hence I hope to find the code not ex4
Attached File
File Type: mq4 Kuskus_Starlight.mq4   12 KB | 148 downloads
http://forex.timezoneconverter.com/
 
2
  • Post #41,139
  • Quote
  • Nov 9, 2020 3:36am Nov 9, 2020 3:36am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,289 Posts
Quoting ntk
Disliked
{quote} Do you know about theKuskus_Starlight indicator. That has a special part in it, where only new coordinate is calculated not the history I would like that some coder would inspect that code and explain so that more people can see advantage or dis-advantage using or not using that indicator. I know that this cycle identifier are repainting, like zigzag line too but I would like to use that as a tool for invectigating the relationship of different trend type for the purpose of timing rather than signaling for entering a trade. Hence I hope...
Ignored
"Kuskus_Starlight" - looks like an old and renamed of EFT (Ehler's Fisher Transform) indicator that coded/displayed differently
better to try on Mladen's "nrp" ver EFT - more reliable code wise and latest comparing to that
Attached Image (click to enlarge)
Click to Enlarge

Name: kuskus star light and ehler fisher trans.png
Size: 39 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM1.png
Size: 27 KB
 
2
  • Post #41,140
  • Quote
  • Nov 9, 2020 4:07am Nov 9, 2020 4:07am
  •  RoninTheory
  • Joined Apr 2020 | Status: learning to become butterfly | 741 Posts
Quoting lucky1359
Disliked
{quote} I was also fascinated by this Cycles but they repainted a lot I studied them for a long time and feel that it can be blended with some other indicator to get some good results
Ignored
thanks for your point

i should revisit this my self with new eyes perhaps
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 20552056Page 205720582059 2689
    • 1 Page 2057 2689
21 traders viewing now, 8 are members:
avidtrader4
,
Invisible
,
fxpiper
,
sieggard
,
koredee
,
Agus168
,
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 / ©2022