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

I will code your pivot EAs for no charge 19 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
  • 40,276
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 15991600Page 160116021603 2924
  • 1 Page 1601 2924
  •  
  • Post #32,001
  • Quote
  • Jan 7, 2020 11:11pm Jan 7, 2020 11:11pm
  •  japfx
  • Joined Jan 2011 | Status: Member | 330 Posts | Online Now
Quoting japfx
Disliked
Dear Coder, Please I need help converting the attached indicator to MT5 version. Thanks {file}
Ignored

Please dear coder , help with this request .


Thanks in advance.
 
 
  • Post #32,002
  • Quote
  • Jan 8, 2020 10:04pm Jan 8, 2020 10:04pm
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,581 Posts
My Humble Request to Master coder to create one indicator/script/ea which able to draw/create any number candle/bar high -low after day open or any time frame ,any time .for example say i want to see 7 candle/bar high-low or 12 bar or 18 bar high-low as al brook said his price actions book( i want to test).one image/picture is better than 100 words(please check attached)thanks in advance.
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: ab 18 bar high low fored chance 2.jpg
Size: 128 KB
Click to Enlarge

Name: ab 3 bo hor l already formed or not bar 7 or 12.jpg
Size: 112 KB
Say something meaningful or Silence!!
 
1
  • Post #32,003
  • Quote
  • Jan 9, 2020 5:36am Jan 9, 2020 5:36am
  •  arkan1976
  • | Joined Sep 2009 | Status: Member | 397 Posts
Quoting arkan1976
Disliked
Hello friends, I currently have an EA that I want when I have opened x positions (5 for example) do not open more positions. I am using it in 4 pairs and I was using the Orderstotal () function. The problem is that it choose the sum of the orders of the 4 pairs and I would like to select the open positions for each pair, separately. Somebody could help me ? a part of EA : if(OnlyBuy==true) { if(iOpen(Symbol(),0,0)>LEVEL) { OrderSend2Stage(Symbol(),OP_BUY,lots,Ask,Slippage,sl,tp,orderComment,MagicNumber,0,CLR_NONE); } } //////////////////////////////////////////////////////////////////...
Ignored

is not possible ?
 
 
  • Post #32,004
  • Quote
  • Jan 9, 2020 6:19am Jan 9, 2020 6:19am
  •  nwesterhuijs
  • | Joined Dec 2017 | Status: Member | 69 Posts
Quoting arkan1976
Disliked
{quote} is not possible ?
Ignored
Google can be handy...

int order_total=0;
for(int cnt=0;cnt<OrdersTotal();cnt++)
{
OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
if ((OrderType()==OP_BUY || OrderType()==OP_SELL) && OrderSymbol()==Symbol() && OrderMagicNumber()== Magic)
{
order_total++;
}
}
 
 
  • Post #32,005
  • Quote
  • Jan 9, 2020 10:15am Jan 9, 2020 10:15am
  •  arkan1976
  • | Joined Sep 2009 | Status: Member | 397 Posts
Quoting nwesterhuijs
Disliked
{quote} Google can be handy... int order_total=0; for(int cnt=0;cnt<OrdersTotal();cnt++) { OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES); if ((OrderType()==OP_BUY || OrderType()==OP_SELL) && OrderSymbol()==Symbol() && OrderMagicNumber()== Magic) { order_total++; } }
Ignored
Thanks friend!
 
 
  • Post #32,006
  • Quote
  • Jan 9, 2020 4:40pm Jan 9, 2020 4:40pm
  •  Dcrs
  • | Commercial Member | Joined Jun 2019 | 217 Posts
Hi all mates
Would like to ask for some help to all.
Here below 3 indis that i have NONE of them are mine but are all available on web etc...
I think they are old versions and perhaps does not work properly as used to.
Would anyone have them, I mean update versions or similar indis like these?
I appreciate a lot for your time and help.

The indi morning-flag-alerts does not work in time frames higher then 1h dont know why....

Thanks
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: forex-sunrise-indicator.jpg
Size: 29 KB
Click to Enlarge

Name: forex-sunrise-indicator2.jpg
Size: 34 KB
Click to Enlarge

Name: forex-sunrise-indicatorChart.jpg
Size: 194 KB
Click to Enlarge

Name: HiLoLines Chart.jpg
Size: 186 KB
Click to Enlarge

Name: HiLoLines indi.jpg
Size: 27 KB
Click to Enlarge

Name: HiLoLines indi2.jpg
Size: 37 KB
Click to Enlarge

Name: morning-flag-alerts.jpg
Size: 27 KB
Click to Enlarge

Name: morning-flag-alerts2.jpg
Size: 59 KB
Click to Enlarge

Name: morning-flag-alerts3.jpg
Size: 33 KB
Click to Enlarge

Name: morning-flag-alertsChart.jpg
Size: 196 KB
 
 
  • Post #32,007
  • Quote
  • Jan 9, 2020 4:42pm Jan 9, 2020 4:42pm
  •  Dcrs
  • | Commercial Member | Joined Jun 2019 | 217 Posts
Quoting nwesterhuijs
Disliked
{quote} Google can be handy... int order_total=0; for(int cnt=0;cnt<OrdersTotal();cnt++) { OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES); if ((OrderType()==OP_BUY || OrderType()==OP_SELL) && OrderSymbol()==Symbol() && OrderMagicNumber()== Magic) { order_total++; } }
Ignored
Here are the indis...
Attached File(s)
File Type: ex4 forex-sunrise-indicator.ex4   15 KB | 174 downloads
File Type: mq4 forex-sunrise-indicator.mq4   5 KB | 221 downloads
File Type: ex4 HiLoLines.ex4   11 KB | 189 downloads
File Type: ex4 morning-flat-alerts.ex4   20 KB | 141 downloads
File Type: mq4 morning-flat-alerts.mq4   17 KB | 218 downloads
 
 
  • Post #32,008
  • Quote
  • Jan 9, 2020 5:33pm Jan 9, 2020 5:33pm
  •  Dcrs
  • | Commercial Member | Joined Jun 2019 | 217 Posts
Just for informe guys I am only asking for help to get those indis update and working properly/ or similar indis.
Not any kind of EA.

Thanks
 
 
  • Post #32,009
  • Quote
  • Jan 9, 2020 11:43pm Jan 9, 2020 11:43pm
  •  PatienceFx
  • Joined Jun 2013 | Status: enjoying life | 15,001 Posts
are these condition statements valid ?

Inserted Code
      if ( Month() == 1 || 4 || 7 || 10 ) { sh = 1;}
      if ( Month() == 2 || 5 || 8 || 11 ) { sh = 2;}
      if ( Month() == 3 || 6 || 9 || 12 ) { sh = 3;}
Indicators on my chart help me guess the trade they do not guarantee result
 
 
  • Post #32,010
  • Quote
  • Jan 10, 2020 1:12am Jan 10, 2020 1:12am
  •  falgaba
  • | Joined Aug 2018 | Status: Member | 7 Posts
Hello,
I need to modify this indicator. Modification should be adding 7 buffers, to see them in the data windows.
I add an image with the information.
These 7 buffers must be money column values, starting from the top of it.
Many thanks
Attached Image (click to enlarge)
Click to Enlarge

Name: i-profittracker2 image.jpg
Size: 263 KB
Attached File(s)
File Type: mq4 i-Profittracker2.mq4   36 KB | 158 downloads
 
 
  • Post #32,011
  • Quote
  • Edited 3:34am Jan 10, 2020 3:19am | Edited 3:34am
  •  ktrimy
  • Joined Dec 2019 | Status: Member | 27 Posts
Quoting PatienceFx
Disliked
are these condition statements valid ? if ( Month() == 1 || 4 || 7 || 10 ) { sh = 1;} if ( Month() == 2 || 5 || 8 || 11 ) { sh = 2;} if ( Month() == 3 || 6 || 9 || 12 ) { sh = 3;}
Ignored
Yes it is. You can also state it as follows if you'd like the output to be displayed for the relative bars in your chart history instead of concurrently. This feature is great for visual back-testing if used within an indicator.

Inserted Code
if ( TimeMonth(Time[i]) == 1 || 4 || 7 || 10 ) { sh = 1;}
if ( TimeMonth(Time[i]) == 2 || 5 || 8 || 11 ) { sh = 2;}
if ( TimeMonth(Time[i]) == 3 || 6 || 9 || 12 ) { sh = 3;}
 
 
  • Post #32,012
  • Quote
  • Jan 10, 2020 3:47am Jan 10, 2020 3:47am
  •  Ashwani
  • Joined Oct 2016 | Status: Member | 195 Posts
Hi please someone share rvi divergence indicator
 
 
  • Post #32,013
  • Quote
  • Jan 10, 2020 6:18am Jan 10, 2020 6:18am
  •  yoosif
  • | Joined Jan 2011 | Status: Member | 16 Posts
Ashwani,
Check the this url>> https://www.mql5.com/en/code/13784
 
 
  • Post #32,014
  • Quote
  • Jan 10, 2020 6:33am Jan 10, 2020 6:33am
  •  yoosif
  • | Joined Jan 2011 | Status: Member | 16 Posts
Attached File(s)
File Type: mq4 RVI.mq4   3 KB | 240 downloads
 
 
  • Post #32,015
  • Quote
  • Jan 10, 2020 8:35am Jan 10, 2020 8:35am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,959 Posts
any one have simple renko bars indicators which convert the normal candles to renko bars as per the box size
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #32,016
  • Quote
  • Jan 10, 2020 10:20am Jan 10, 2020 10:20am
  •  Sohocool
  • Joined Dec 2009 | Status: Member | 451 Posts
Quoting ramzam
Disliked
any one have simple renko bars indicators which convert the normal candles to renko bars as per the box size
Ignored
This one ???

Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDH1.png
Size: 54 KB
KISS&V :Keep it simple safe & visual
 
 
  • Post #32,017
  • Quote
  • Jan 11, 2020 4:06am Jan 11, 2020 4:06am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,959 Posts
Quoting Sohocool
Disliked
{quote} This one ??? {image}
Ignored
is this renko bar bro ?
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #32,018
  • Quote
  • Jan 11, 2020 4:06am Jan 11, 2020 4:06am
  •  Motiram
  • | Joined Nov 2014 | Status: Member | 567 Posts
Quoting ramzam
Disliked
any one have simple renko bars indicators which convert the normal candles to renko bars as per the box size
Ignored
Hello ramzam, please look at the link below does this help you

https://www.forexfactory.com/showthr...69#post9736569

Regards
Moti
 
 
  • Post #32,019
  • Quote
  • Jan 11, 2020 4:34am Jan 11, 2020 4:34am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,959 Posts
Quoting Motiram
Disliked
{quote} Hello ramzam, please look at the link below does this help you https://www.forexfactory.com/showthr...69#post9736569 Regards Moti
Ignored
i will check bro.. downloaded.. will test and convey..
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #32,020
  • Quote
  • Jan 11, 2020 4:42am Jan 11, 2020 4:42am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,959 Posts
i made one simple indicator with H0 = Open + (Range* 0.236 ) ; L0 = Open - (Range* 0.236 ) ;
this will work for some price range of 100to above 5000 even 6000..

but above that range it shows large range of 1000 points and all...
is there any option to go with
if condition if open less than 6000 range will be range..
if condition if open greater than 6000 to 15000 range will be range /2 ...
like that? because as per image 1 it is crudeoil chart and it works fine as its price is 4240.. where as in image2 it is silver and its price is 46500 inthis case want to divide the range into range/2.. so it will give lines near...
the same to nifty image3 want to use the range /1.5 so it will give lines near..
how to make that if condition i dont know please any of one good coding person help me out
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 9 KB
Click to Enlarge

Name: Image2.png
Size: 10 KB
Click to Enlarge

Name: Image3.png
Size: 12 KB
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 15991600Page 160116021603 2924
    • 1 Page 1601 2924
14 traders viewing now, 4 are members:
VikThor1
,
Sepo29
,
sabird
,
cocowell
  • 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