• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 2:45pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 2:45pm
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,200
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 20462047Page 204820492050 2212
  • 1 Page 2048 2212
  •  
  • Post #40,941
  • Quote
  • Nov 3, 2020 5:09am Nov 3, 2020 5:09am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting Sandile
Disliked
{quote} on GBPJPY M30 today, the values should be 135.421 and 135.007, the indicator still gives incorrect values in this regard. {image} here is a spreadsheet of how I got the 135.421 and 135.007 values: {file}
Ignored
I looked into more detail and I think your checking if this is opening hour is not correct also.

if( TimeHour(bartime ) == MarketOpen )

above checks if "hour is 0"

But if you are using lessor time frame than H1, there will be many bars meets this condition.
Please check how you decide which bar is correct bar.

if you are checking current bar as starting of new session, below should work also.


double HighCandleOne=iHigh(NULL,PERIOD_M30,i);
double LowCandleOne=iLow(NULL,PERIOD_M30,i);


double Range= (HighCandleOne - LowCandleOne)*Point;

double OpenCandleTwo=iOpen(NULL,PERIOD_M30,i+1);


double breakbuy=OpenCandleTwo + (Range);
double breaksell=OpenCandleTwo-(Range);
I still don't know where is the Holy Grail
  • Post #40,942
  • Quote
  • Nov 3, 2020 6:58am Nov 3, 2020 6:58am
  •  Sandile
  • Joined Dec 2013 | Status: Member | 116 Posts
Quoting BlueRain
Disliked
{quote} I looked into more detail and I think your checking if this is opening hour is not correct also. if( TimeHour(bartime ) == MarketOpen ) above checks if "hour is 0" But if you are using lessor time frame than H1, there will be many bars meets this condition. Please check how you decide which bar is correct bar. if you are checking current bar as starting of new session, below should work also. double HighCandleOne=iHigh(NULL,PERIOD_M30,i); double LowCandleOne=iLow(NULL,PERIOD_M30,i); double Range= (HighCandleOne - LowCandleOne)*Point; double...
Ignored
I put the code as mentioned above here and the indicator no longer works, I'm sorry about all this, I'm not a coder and this is all confusing to me.

Attached File
File Type: mq4 BreakoutM30Daily_v1.00 (1).mq4   4 KB | 41 downloads
  • Post #40,943
  • Quote
  • Nov 3, 2020 7:22am Nov 3, 2020 7:22am
  •  klord
  • | Joined Jun 2012 | Status: Member | 22 Posts
Quoting BlueRain
Disliked
{quote} I won't be able to code a new one as there are a lot of those - similar account related ones. You may find attached one is very similar to what you are looking for. {file}
Ignored
Thanks for the indicator. It's so useful. Do u have the mt5 version?
  • Post #40,944
  • Quote
  • Nov 3, 2020 8:13am Nov 3, 2020 8:13am
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 774 Posts
Quoting doggy7
Disliked
Hi BlueRain & other great coders, i do not know this is the right place to ask this or not. i am just learning to code multi time frame & multi pairs indicator, and i try to put some information based on its time frame & pairs to array. i got problem/ error on putting this to arrays...
Ignored
- should start with simpler things, like coding a ma without using inbuilt functions
- what's the point of collecting the mtf price data into arrays? The info already exists and is easily accesible, you don't need to store them. It's the equivalent of you trying to store the current chart ohlc into arrays to use.
  • Post #40,945
  • Quote
  • Nov 3, 2020 8:33am Nov 3, 2020 8:33am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 1,668 Posts
Quoting romeo000
Disliked
can someone code a simple scanner for me? requirements should scan all 28 major pairs timeframe can be changed manually whenever 30sma crosses 100sma it should give an alert
Ignored
"FanSimple8_4MEn sma Romeo"

Hi romeo
It is not exact what you asked (multi pairs) but it will be work only on the instrument it applied on - there are many rest of options,possibly help to others
Originally it is using SMMAs (Smoothed ma) with EMAs (Exponential MA) but particularly i changed all to SMA as you asked

it displaying on chart lines with dash
what to display,lines or dash or both
9 TFs capable
previous history tracking
8 MAs up to users defined values (periods) including which one to true/false
colors choice
xy adjusting option
and more
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM15.png
Size: 39 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM15-all.png
Size: 45 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: XAUUSDM5.png
Size: 28 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: p.png
Size: 210 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: p2.png
Size: 212 KB
Attached File
File Type: ex4 FanSimple8_4MEn sma Romeo.ex4   57 KB | 76 downloads
Indicator is just a supportive tool-Use it only if it can benefit you
1
  • Post #40,946
  • Quote
  • Nov 3, 2020 8:34am Nov 3, 2020 8:34am
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting BlueRain
Disliked
{quote} I looked into more detail and I think your checking if this is opening hour is not correct also. if( TimeHour(bartime ) == MarketOpen ) above checks if "hour is 0" But if you are using lessor time frame than H1, there will be many bars meets this condition. Please check how you decide which bar is correct bar. if you are checking current bar as starting of new session, below should work also. double HighCandleOne=iHigh(NULL,PERIOD_M30,i); double LowCandleOne=iLow(NULL,PERIOD_M30,i); double Range= (HighCandleOne - LowCandleOne)*Point; double...
Ignored

Thank you BlueRain,

but Sandile strategy wants:

1. starting point line on second candle M30 of the day (00:30-01:00), not on first candle (open market candle);
2. first candle (open market candle- 00:00-00.30) = (high-low) acting as offset for the line (high low line second candle) > exactly pips
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot (47).png
Size: 54 KB
Margin Call again and again...
  • Post #40,947
  • Quote
  • Nov 3, 2020 8:59am Nov 3, 2020 8:59am
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting ganztrade
Disliked
{quote} Thank you BlueRain, but Sandile strategy wants: 1. starting point line on second candle M30 of the day (00:30-01:00), not on first candle (open market candle); 2. first candle (open market candle- 00:00-00.30) = (high-low) acting as offset for the line (high low line second candle) > exactly pips {image}
Ignored

ahhh nevermind, finally.....enjoy Sandile...thanks BlueRain.

I finally got it.

double HighCandleOne=iHigh(NULL,PERIOD_M30,i);//--first candle open market
double LowCandleOne=iLow(NULL,PERIOD_M30,i);//--first candle open market

double HighCandleTwo=iHigh(NULL,PERIOD_M30,i-1);//--second candle starting line
double LowCandleTwo=iLow(NULL,PERIOD_M30,i-1);//--second candle starting line


double Range=HighCandleOne-LowCandleOne;//--based on first candle

double breakbuy=HighCandleTwo+(Range);//--for offsett high line second candle
double breaksell=LowCandleTwo-(Range);//--for offsett low line second candle

========================

now Sandile, you should teach us, how to trading use that indicator....hahahaha
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot (48).png
Size: 74 KB
Attached Files
File Type: ex4 BreakoutM30Daily_v1.01.ex4   9 KB | 68 downloads
File Type: mq4 BreakoutM30Daily_v1.01.mq4   5 KB | 114 downloads
Margin Call again and again...
  • Post #40,948
  • Quote
  • Edited Nov 4, 2020 2:14am Nov 3, 2020 9:08am | Edited Nov 4, 2020 2:14am
  •  doggy7
  • | Joined Oct 2020 | Status: Member | 28 Posts
Quoting jeanlouie
Disliked
{quote} - should start with simpler things, like coding a ma without using inbuilt functions - what's the point of collecting the mtf price data into arrays? The info already exists and is easily accesible, you don't need to store them. It's the equivalent of you trying to store the current chart ohlc into arrays to use.
Ignored
Hi jeanlouie,
The highPrc in my code is just an example ... it is actually for other purpose ... , my concern is how to point to an array in mql4 (choosing from so many arrays having same format).
but your idea is good for me to think again for my other project, and yes !t is indeed regarding ohlc price ...
Oh no, i just realize/ see that BR actually has posted an example in mql4, it was my bad ... Nice, will try to learn from his code first.
Thanks again great coders ...

Edit :
I see BR code: BR-Momentum-Dashboard , it is multi pair .... and for all time frames, we can choose just one tf from the drop down menu (using enum) :

Inserted Code
input    ENUM_TIMEFRAMES      timeframe            =  PERIOD_CURRENT;

one question:
if i want to make it for all of time frames from M1 to MN1 , it is better to put the tf in array like this :

Inserted Code
   string allTimeFramesArr[]  = {"M1","M5", .... , "MN1"};

or just define it one by one like this ?

Inserted Code
   string allTimeFrames = "M1","M5", .... ,"MN1";

Edit again :
Sorry ... i just found the Fractal example by BR, will look at it
Learning coding &&& statistics are useful. Never giveup even if
  • Post #40,949
  • Quote
  • Nov 3, 2020 9:31am Nov 3, 2020 9:31am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 1,668 Posts
Quoting paul72
Disliked
{quote} Yes 60 oversold 10 undersold Can you code this for me please
Ignored
"DMI"

In this ver users can choose what to show/hide (DI Plus,DI Minus,DX,ADX,ADXR) or show all
users defined levels possibility

Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM15.png
Size: 41 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM15-2.png
Size: 39 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM15-3.png
Size: 33 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: GBPUSDM1.png
Size: 45 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: p.png
Size: 234 KB
Attached File
File Type: ex4 DMI.ex4   20 KB | 71 downloads
Indicator is just a supportive tool-Use it only if it can benefit you
1
  • Post #40,950
  • Quote
  • Nov 3, 2020 10:01am Nov 3, 2020 10:01am
  •  paul72
  • | Joined Jun 2013 | Status: Member | 132 Posts
Quoting mntiwana
Disliked
{quote} "DMI" In this ver users can choose what to show/hide (DI Plus,DI Minus,DX,ADX,ADXR) or show all users defined levels possibility {image}{image}{image}{image}{image} {file}
Ignored
Thank you so much for your help.

Cheers Paul
  • Post #40,951
  • Quote
  • Nov 3, 2020 10:17am Nov 3, 2020 10:17am
  •  merlin1331
  • Joined Mar 2015 | Status: Member | 232 Posts
hi, does any coders can help to add buffers to this indicator?
Attached File
File Type: mq4 Trading_Volume_v1 (1).mq4   11 KB | 59 downloads
  • Post #40,952
  • Quote
  • Nov 3, 2020 10:26am Nov 3, 2020 10:26am
  •  romeo000
  • | Joined Oct 2020 | Status: Member | 12 Posts
Quoting mntiwana
Disliked
{quote} "FanSimple8_4MEn sma Romeo" Hi romeo It is not exact what you asked (multi pairs) but it will be work only on the instrument it applied on - there are many rest of options,possibly help to others Originally it is using SMMAs (Smoothed ma) with EMAs (Exponential MA) but particularly i changed all to SMA as you asked it displaying on chart lines with dash what to display,lines or dash or both 9 TFs capable previous history tracking 8 MAs up to users defined values (periods) including which one to true/false colors choice xy adjusting option...
Ignored
thanks you very much sir! i am definitely going to add it in my trend check list!
Happy Pipping
1
  • Post #40,953
  • Quote
  • Nov 3, 2020 12:08pm Nov 3, 2020 12:08pm
  •  Mcxtrader
  • | Joined Jun 2017 | Status: Member | 142 Posts
Quoting visobibi
Disliked
Hello Blue Rain, Thank you for adding a stoploss to the EA. It will take one day to get activated. I have already added to the MT4 platform. I will let you know. Thakning you once again Sobha
Ignored

Could you please shed some light on how to make this EA work?

It was loaded before one day and still, not even one trade opened.
  • Post #40,954
  • Quote
  • Nov 3, 2020 12:44pm Nov 3, 2020 12:44pm
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,136 Posts
Quoting classy
Disliked
My Humble request to all master coders please create one indicator or script which show equal high=low horizontal line (consider close price or candle body only)different color for different color horizontal line will be great.i searched a lot on net but no luck........thanks in advance ONE IMAGE CAN express more clearly than 100 words {image}
Ignored
i searched google but no luck ? pending from 2019?
Say something meaningful or Silence!!
  • Post #40,955
  • Quote
  • Nov 3, 2020 12:54pm Nov 3, 2020 12:54pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting classy
Disliked
{quote} i searched google but no luck ? pending from 2019?
Ignored

maybe your strategy not clearly enough, i read your post, and i'm confuse read it...

if u look for supply demand/ S&R there is good indicator for it

https://www.forexfactory.com/thread/...3#post13241083
Margin Call again and again...
  • Post #40,956
  • Quote
  • Nov 3, 2020 12:59pm Nov 3, 2020 12:59pm
  •  T4Trade
  • Joined Sep 2017 | Status: Trend Following,Price Action,Marti | 1,631 Posts
Quoting T4Trade
Disliked
Dear Bluerain, please add push notification on this indicator you just coded for motiram,thanks a lot! {file}
Ignored
please someone check this indcator and add push notification if Pa crosses the line,thanks
  • Post #40,957
  • Quote
  • Edited Nov 4, 2020 1:06am Nov 3, 2020 2:54pm | Edited Nov 4, 2020 1:06am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting Mcxtrader
Disliked
{quote} Could you please shed some light on how to make this EA work? It was loaded before one day and still, not even one trade opened.
Ignored
This is EA looking for Opening Gab from last bar's high and current bar's open.
Since most of Gabs are filled, I think this is looking for that strategy.



if condition like below, you will get sell signal.

current_openprice > previous_highprice + (min_gapsize + spread_gap)*point_gap
&& current_time != order_time)


You will not get any trade signal on day to day - unless you reduce gapsize.
if you are using smaller time frame, you may have to reduce gapsize..


Based on my Tester, it only opened 3-4 time a week trade ( about 3-4 trade per months ) on default settings, mostly on Weekly Opening day.

However, it seems it is profitable on my tester run . ( EURUSD )
I still don't know where is the Holy Grail
1
  • Post #40,958
  • Quote
  • Nov 3, 2020 2:56pm Nov 3, 2020 2:56pm
  •  AkuMK
  • | Joined Nov 2018 | Status: Member | 13 Posts
Hi coders,

Requesting:
a) Add Stop Loss function,
b) Add Trailing Stop / BE function,
c) Double confirm or update the codes, if needed, since it an old codes. It running well on back-test and live chart. Just for confirmation since it create in 2011.


Thanks in advance.
Attached File
File Type: mq4 Renko pure candle auto-trading EA by Steve Hopwood.mq4   9 KB | 49 downloads
  • Post #40,959
  • Quote
  • Nov 3, 2020 3:24pm Nov 3, 2020 3:24pm
  •  junior.eso
  • | Joined Feb 2014 | Status: Member | 16 Posts
Hi guys,
Anybody could rewrite this indicator for MT5 please?
Attached File
File Type: ex4 StochDifZones_v2_60_v600.ex4   68 KB | 80 downloads
  • Post #40,960
  • Quote
  • Nov 3, 2020 5:00pm Nov 3, 2020 5:00pm
  •  RoninTheory
  • Joined Apr 2020 | Status: price is just going from a to b | 437 Posts
Quoting mntiwana
Disliked
{quote} "FanSimple8_4MEn sma Romeo" Hi romeo It is not exact what you asked (multi pairs) but it will be work only on the instrument it applied on - there are many rest of options,possibly help to others Originally it is using SMMAs (Smoothed ma) with EMAs (Exponential MA) but particularly i changed all to SMA as you asked it displaying on chart lines with dash what to display,lines or dash or both 9 TFs capable previous history tracking 8 MAs up to users defined values (periods) including which one to true/false colors choice xy adjusting option...
Ignored
is it possible for coder

to add vma type into this and function weekly period vma crossing daily period

i hope such request would make very nice dashboard with appropriate settings
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 20462047Page 204820492050 2212
    • 1 Page 2048 2212
14 traders viewing now, 2 are members:
casious
,
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 / ©2021