• Home
  • Forums
  • News
  • Calendar
  • Coins
  • Market
  • Login
  • Join
  • 7:09am
Menu
  • Forums
  • News
  • Calendar
  • Coins
  • Market
  • Login
  • Join
  • 7:09am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Forex Factory

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

I will code your scalping EAs for no charge 81 replies

Need help to code EAs for MT4 and MT5 6 replies

I will code your pivot EAs for no charge 20 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
  • 43,903
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 3186318731883189Page 3190 3191
  • 1 Page 3190 3191
  •  
  • Post #63,781
  • Quote
  • Oct 3, 8:35pm (10 hr ago) Oct 3, 8:35pm (10 hr ago)
  •  ronnytan
  • | Joined Aug 2023 | Status: Junior Member | 4 Posts
Quoting ronnytan
Disliked
hello friend. newbie here. i want to ask for help to code my modified candlestick pattern in mt5. ps: i have the pine script at tradingview can anyone help me? thanks
Ignored
1st strategy
//@version=5


strategy(" Engulfing Bear / Bull v2")



// Define the conditions short entry
cond2S = open[0]>close[0]
cond4S = high[1]<high[0]
cond5S = low[1]>low[0]
cond6S = close[0] < low[1]


// Define the conditions long entry
cond2 = open[0]<close[0]
cond4 = high[1]<high[0]
cond5 = low[1]>low[0]
cond6 = close[0]>high[1]

// Define the strategy long entry
long_entry = cond2 and cond4 and cond5 and cond6
// Define the strategy short entry
short_entry = cond2S and cond4S and cond5S and cond6S


strategy 2

//@version=5
strategy(" 3 Candle Outside Break v2")



// Define the conditions long entry
cond1 = open[2]>close[2] // candle 3 is red
cond2 = high[0]>high[1]
cond3 = open[0]<close[0] // candle 1 is green
cond4 = high[1]<high[2]
cond5 = low [1]<low[2] // low candle 2 is lower than candle 3
cond6 = low[0]>low[1]
cond7 = close [0]>high[2] // close candle 1 is lower than close candle 2

// Define the conditions short entry
cond1S = open[2]<close[2] // candle 3 is green
cond2S = low[0]<low[1]
cond3S = open[0]>close[0] // candle 1 is red
cond4S = low[1]>low[2] // high candle 2 higher than high candle 3
cond5S = high[1]>high[2]
cond6S = high[0]<high[1]
cond7S = close [0]<low[2] // close candle 1 is lower than close candle 2

// Define the strategy long entry
long_entry = cond1 and cond2 and cond3 and cond4 and cond5 and cond6 and cond7
// Define the strategy short entry
short_entry = cond1S and cond2S and cond3S and cond4S and cond5S and cond6S and cond7S


ps: please help me to convert it to mt5 indicator . pleaseeee... i am begging you guys
 
 
  • Post #63,782
  • Quote
  • Oct 3, 9:18pm (9 hr ago) Oct 3, 9:18pm (9 hr ago)
  •  TraderJoe
  • | Joined Nov 2004 | Status: SOHN Graduate | 766 Posts
Quoting BestTraderEv
Disliked
{quote} First, I can't read anything in this indicator. Whatever language the discriptions were written in, they show like this: {image} And I don't have a single idea what this is about. Same with texts for alerts. So, if you want me to study this indicator, I need something I can work with.
Ignored
Where is this indicator? Can't seem to find it.
Charts never lie! (everyone else does) ... now where's that FF Adult lounge
 
 
  • Post #63,783
  • Quote
  • Oct 3, 9:26pm (9 hr ago) Oct 3, 9:26pm (9 hr ago)
  •  TraderJoe
  • | Joined Nov 2004 | Status: SOHN Graduate | 766 Posts
Quoting cliprs
Disliked
Merhaba, Göstergenin ayarlandığı seviyede ulaştığında görünmesini istiyorum. bana bu konuda birileri yardımcı olabilir mi? Örnek olarak resim gönderdim. Okların seviyesinin işaretlendiği alanda olmasını istiyorum {image} {file}
Ignored
"Belirttiğiniz gibi göstergede ayarlanan seviyeye ulaştığında görünmesini istediğinizi söylüyorsunuz? Bahsettiğiniz "o" nedir?"
Charts never lie! (everyone else does) ... now where's that FF Adult lounge
 
 
  • Post #63,784
  • Quote
  • Oct 3, 10:29pm (8 hr ago) Oct 3, 10:29pm (8 hr ago)
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,688 Posts
Quoting BestTraderEv
Disliked
{quote}...(i < ObjectsTotal()... i++...as for counting down, or up, I don't know, I tend to use what works. I have only experienced this skipping issue once...
Ignored
The reason counting up in a list when deleting entries, leads to issues, is that when an item is deleted from the list, all other items have their indexes shifted down 1, and on the next loop, the loop index has gone up by 1 as normal, but the next item in the list got shuffled down 1 place replacing the deleted item, thereby getting skipped. So counting down to zero from the starting list size is the way to go, when an item is deleted, it is chopped off the end, and the next loop index is the one before it, nothing is skipped.
 
1
  • Post #63,785
  • Quote
  • Oct 3, 10:33pm (8 hr ago) Oct 3, 10:33pm (8 hr ago)
  •  acetrader
  • Joined Feb 2006 | Status: Member | 1,784 Posts
Quoting smartvin
Disliked
Thank you Best trader EV {quote}
Ignored
Hi smartvin,

When I first discovered this indicator the info that came with it said it is a NRP indicator & from viewing on the 1M time frame I think that's correct.
What do you think? Are you have successful trades with this indicator? From what I've seen the more dots in one direction or the other is the important aspect of this indicator. The more dots together usually produce a successful trade, but not always. Try a 200 EMA on median H/L2 along with Trend Wave & see what you think.

Just thought I would share this with you, but I'm sure you have your own method to the madness of trading with Trend Wave.

Best of trades to you.
____________________________________________
 
 
  • Post #63,786
  • Quote
  • Oct 3, 10:38pm (8 hr ago) Oct 3, 10:38pm (8 hr ago)
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,688 Posts
Quoting Javedsheikh
Disliked
{quote}...live trading by EA going on all details over there you may can check and relaxen your approach and thoughts...
Ignored
- the account number the terminal is using on the top left is left out of sight, and the account list in the navigator is set to show a real account, but there is at least 1 other account because there is a small dotted line indicating more accounts ie drop down list
- the video description is a straight up sales pitch, also this is quite amusing "this EA is built to create over 4,500% every 4 months safely, without a 10% drawdown and also about more than 1,200% per month"
- the video description also has a bunch of # and seo tags for search rankings
- don't think they want you to test it: "testing this strategy in the MetaTrader4 tester is impossible, as EA trades on the following pairs only"
- I doubt there is much merit to this at all
 
1
  • Post #63,787
  • Quote
  • Oct 3, 11:31pm (7 hr ago) Oct 3, 11:31pm (7 hr ago)
  •  ellenbrook
  • Joined Oct 2011 | Status: Member | 1,023 Posts
please with Forex platform as 20 minute time frame a really need to download one
thanks
 
 
  • Post #63,788
  • Quote
  • Oct 4, 1:12am (5 hr ago) Oct 4, 1:12am (5 hr ago)
  •  TraderGamer
  • | Joined Aug 2022 | Status: Member | 28 Posts | Online Now
Hello FF community!

I have this i-sessions indicator and I tried to add more sessions. I also wanted to add a show/hide option (as shown in the image) but I can't seem to make it work. I need some help from our dear coders to check the attached mq4 file and see what adjustments are needed.

Thank you very much!
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 24 KB
Attached File(s)
File Type: mq4 i-Sessions (10 sessions).mq4   17 KB | 15 downloads
 
 
  • Post #63,789
  • Quote
  • Oct 4, 2:09am (5 hr ago) Oct 4, 2:09am (5 hr ago)
  •  Erebus
  • Joined Jul 2011 | Status: Member | 7,303 Posts | Online Now
Quoting TraderGamer
Disliked
Hello FF community! I have this i-sessions indicator and I tried to add more sessions. I also wanted to add a show/hide option (as shown in the image) but I can't seem to make it work. I need some help from our dear coders to check the attached mq4 file and see what adjustments are needed. Thank you very much! {file} {image}
Ignored
Do you really need 10 sessions?

A work-around that I have used before is to apply the indicator twice, that give you 6 sessions.

Maybe you can do it 3 times.

Don't believe everything that you THINK
BuyDips,SellRips Return This Week: na
 
 
  • Post #63,790
  • Quote
  • Oct 4, 3:40am (3 hr ago) Oct 4, 3:40am (3 hr ago)
  •  TraderGamer
  • | Joined Aug 2022 | Status: Member | 28 Posts | Online Now
Quoting Erebus
Disliked
{quote} Do you really need 10 sessions? A work-around that I have used before is to apply the indicator twice, that give you 6 sessions. Maybe you can do it 3 times.
Ignored
Oh there's a misunderstanding. The problem is that I can't hide the session boxes whenever I choose "false" in the option (with the green arrow) so I'm asking for some guidance to check if there's something missing in the code.

And I'm just doing an experiment to see if I can implement 10 sessions but I just really need 3-5

I hope this clears up any confusion here
 
1
  • Post #63,791
  • Quote
  • Oct 4, 3:51am (3 hr ago) Oct 4, 3:51am (3 hr ago)
  •  Erebus
  • Joined Jul 2011 | Status: Member | 7,303 Posts | Online Now
Quoting TraderGamer
Disliked
{quote} Oh there's a misunderstanding. The problem is that I can't hide the session boxes whenever I choose "false" in the option (with the green arrow) so I'm asking for some guidance to check if there's something missing in the code. And I'm just doing an experiment to see if I can implement 10 sessions but I just really need 3-5 I hope this clears up any confusion here
Ignored
Sort of clears it up, but why the arrows at 1, 2, and 3?

I see the setting for Show sessions on 4, 5, 6, and 7.

How many did it start with, how many did you add, which ones do and don't work?

EDIT: I better try it and see, works for me.

Attached Image (click to enlarge)
Click to Enlarge

Name: 2023-10-04_17-59-12.jpg
Size: 300 KB
Don't believe everything that you THINK
BuyDips,SellRips Return This Week: na
 
 
  • Post #63,792
  • Quote
  • Oct 4, 4:18am (2 hr 51 min ago) Oct 4, 4:18am (2 hr 51 min ago)
  •  TraderGamer
  • | Joined Aug 2022 | Status: Member | 28 Posts | Online Now
Quoting Erebus
Disliked
{quote} Sort of clears it up, but why the arrows at 1, 2, and 3? I see the setting for Show sessions on 4, 5, 6, and 7. How many did it start with, how many did you add, which ones do and don't work? EDIT: I better try it and see, works for me. {image}
Ignored
The time and color settings work in all sessions. I just used the first three sessions for testing.

It's the show/hide option that needs some help with the coding.

How about if you input time on the 1st and 2nd sessions and still choose false in the option? Did it hide the session boxes?

Let me know if it works on your end
 
 
  • Post #63,793
  • Quote
  • Oct 4, 4:34am (2 hr 35 min ago) Oct 4, 4:34am (2 hr 35 min ago)
  •  Erebus
  • Joined Jul 2011 | Status: Member | 7,303 Posts | Online Now
Quoting TraderGamer
Disliked
{quote} The time and color settings work in all sessions. I just used the first three sessions for testing. It's the show/hide option that needs some help with the coding. How about if you input time on the 1st and 2nd sessions and still choose false in the option? Did it hide the session boxes? Let me know if it works on your end
Ignored
No, it doesn't, that's why I removed the times, seems the True / False option is the problem.

But I'm no coder, better read the manual, cheers.
Don't believe everything that you THINK
BuyDips,SellRips Return This Week: na
 
1
  • Post #63,794
  • Quote
  • Oct 4, 4:35am (2 hr 34 min ago) Oct 4, 4:35am (2 hr 34 min ago)
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,574 Posts
Quoting ronnytan
Disliked
{quote} 1st strategy //@version=5 strategy(" Engulfing Bear / Bull v2") // Define the conditions short entry cond2S = open[0]>close[0] cond4S = high[1]<high[0] cond5S = low[1]>low[0] cond6S = close[0] < low[1] // Define the conditions long entry cond2 = open[0]<close[0] cond4 = high[1]<high[0] cond5 = low[1]>low[0] cond6 = close[0]>high[1] // Define the strategy long entry long_entry = cond2 and cond4 and cond5 and cond6 // Define the strategy short entry short_entry = cond2S and cond4S and cond5S and cond6S strategy 2 //@version=5 strategy(" 3...
Ignored
Indicator:
Attached File(s)
File Type: ex5 JFEngulf.ex5   29 KB | 9 downloads


ExpertAdvisor:
Attached File(s)
File Type: mq5 Bullish and Bearish Engulfing.mq5   25 KB | 9 downloads


PS. You don't need to rediscover America - you need to use a search engine like Google.
 
1
  • Post #63,795
  • Quote
  • Oct 4, 4:38am (2 hr 31 min ago) Oct 4, 4:38am (2 hr 31 min ago)
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,574 Posts
Quoting TraderJoe
Disliked
{quote} Where is this indicator? Can't seem to find it.
Ignored
Attached File(s)
File Type: ex4 Trend Trader System.ex4   79 KB | 16 downloads

There is no source code.
 
 
  • Post #63,796
  • Quote
  • Oct 4, 4:48am (2 hr 21 min ago) Oct 4, 4:48am (2 hr 21 min ago)
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,574 Posts
Quoting jeanlouie
Disliked
{quote} - the account number the terminal is using on the top left is left out of sight, and the account list in the navigator is set to show a real account, but there is at least 1 other account because there is a small dotted line indicating more accounts ie drop down list - the video description is a straight up sales pitch, also this is quite amusing "this EA is built to create over 4,500% every 4 months safely, without a 10% drawdown and also about more than 1,200% per month" - the video description also has a bunch of # and seo tags for search...
Ignored
Yes, they are typical scammers and they think they can use all sorts of manipulation techniques, like what they are trying to do with me.
That's why I am telling people they should NEVER fall for such BS!

The other guy told me to send him a list of 100 EA's and he would make at least 5 work for me.
But he can't even use html properly....
 
 
  • Post #63,797
  • Quote
  • Oct 4, 4:50am (2 hr 19 min ago) Oct 4, 4:50am (2 hr 19 min ago)
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,574 Posts
Quoting ellenbrook
Disliked
please with Forex platform as 20 minute time frame a really need to download one thanks
Ignored
MetaTrader 5 has M20 by default.
MetaTrader 4 has M20 by custom indicator, or by Period Converter.
 
 
  • Post #63,798
  • Quote
  • Oct 4, 5:04am (2 hr 5 min ago) Oct 4, 5:04am (2 hr 5 min ago)
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,574 Posts
Quoting TraderGamer
Disliked
Hello FF community! I have this i-sessions indicator and I tried to add more sessions. I also wanted to add a show/hide option (as shown in the image) but I can't seem to make it work. I need some help from our dear coders to check the attached mq4 file and see what adjustments are needed. Thank you very much! {file} {image}
Ignored
Attached File(s)
File Type: mq4 i-Sessions_btn.mq4   22 KB | 7 downloads
 
 
  • Post #63,799
  • Quote
  • Oct 4, 5:05am (2 hr 4 min ago) Oct 4, 5:05am (2 hr 4 min ago)
  •  ronnytan
  • | Joined Aug 2023 | Status: Junior Member | 4 Posts
Quoting BestTraderEv
Disliked
{quote} Indicator: {file} ExpertAdvisor: {file} PS. You don't need to rediscover America - you need to use a search engine like Google.
Ignored
thanks mate! you are the best!
but, i am sorry to say that the jfengulf is different with mine

JFEngulf version
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 7 KB



my version
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 21 KB


and one more mate. please help the strategy 2

//@version=5
strategy(" 3 Candle Outside Break v2")



// Define the conditions long entry
cond1 = open[2]>close[2] // candle 3 is red
cond2 = high[0]>high[1]
cond3 = open[0]<close[0] // candle 1 is green
cond4 = high[1]<high[2]
cond5 = low [1]<low[2] // low candle 2 is lower than candle 3
cond6 = low[0]>low[1]
cond7 = close [0]>high[2] // close candle 1 is lower than close candle 2

// Define the conditions short entry
cond1S = open[2]<close[2] // candle 3 is green
cond2S = low[0]<low[1]
cond3S = open[0]>close[0] // candle 1 is red
cond4S = low[1]>low[2] // high candle 2 higher than high candle 3
cond5S = high[1]>high[2]
cond6S = high[0]<high[1]
cond7S = close [0]<low[2] // close candle 1 is lower than close candle 2

// Define the strategy long entry
long_entry = cond1 and cond2 and cond3 and cond4 and cond5 and cond6 and cond7
// Define the strategy short entry
short_entry = cond1S and cond2S and cond3S and cond4S and cond5S and cond6S and cond7S

i do more prefer the .ex5 because if mg5 i dont understand how to show it on chart
 
 
  • Post #63,800
  • Quote
  • Oct 4, 5:39am (1 hr 30 min ago) Oct 4, 5:39am (1 hr 30 min ago)
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,574 Posts
Quoting ronnytan
Disliked
{quote} thanks mate! you are the best! but, i am sorry to say that the jfengulf is different with mine JFEngulf version {image} my version {image} and one more mate. please help the strategy 2 //@version=5 strategy(" 3 Candle Outside Break v2") // Define the conditions long entry cond1 = open[2]>close[2] // candle 3 is red cond2 = high[0]>high[1] cond3 = open[0]<close[0] // candle 1 is green cond4 = high[1]<high[2] cond5 = low [1]<low[2] // low candle 2 is lower than candle 3 cond6 = low[0]>low[1] cond7 = close [0]>high[2] // close candle 1 is lower...
Ignored
What you are showing in your version is not an Engulfing candle.
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 3186318731883189Page 3190 3191
    • 1 Page 3190 3191
97 traders viewing now, 10 are members:
Baayesh
,
ffss
,
Invisible
,
hassan5041
,
mchl13
,
TikhoNewbie
,
classy
,
Invisible
,
Invisible
,
Erebus
  • More
Top of Page
  • Facebook
  • Twitter
About CC
  • Mission
  • Products
  • User Guide
  • Blog
  • Contact
CC Products
  • Forums
  • Calendar
  • News
  • Coins
  • Market
CC Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow CC
  • Facebook
  • Twitter

CC Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Forex Factory

Crypto Craft® is a brand of Fair Economy, Inc.

Terms of Service / ©2023