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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Fixing Your Indicators or EAs (Free) 451 replies

Coding robots and indicators in C# for no charge (cTrader API) 180 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

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 29,812
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 20882089Page 209020912092 2180
  • 1 Page 2090 2180
  •  
  • Post #41,781
  • Quote
  • Nov 24, 2020 12:07pm Nov 24, 2020 12:07pm
  •  MFXTrader
  • | Joined Jul 2017 | Status: Member | 47 Posts
Quoting MFXTrader
Disliked
Hi dear coders! I have one humble request. Can some coder add SR button to the attached SS SupportResistance indicator for ON/OFF function. The button should be fully customisable, just like in the other indicator (ORT) Supply Demand button which I also attach. I would really appreciate if some coder can do this. Best regards and green pips {file} {file}
Ignored

Hi dear coders!

Please anyone can do this?

Best regards
  • Post #41,782
  • Quote
  • Nov 24, 2020 1:14pm Nov 24, 2020 1:14pm
  •  Pett
  • | Joined Jan 2018 | Status: Member | 20 Posts
Alright, so quick update to the question I had posted earlier.

For anyone who'd taken an interest, it turns out that ArraySetAsSeries() is actually quite important for obtaining the correct values. MQL4 documentation is not quite clear on this and does not provide a replicable example when dealing with series/non-series arrays. In order to obtain the correct values, the RSI array has to be set as series before populating it with data. The correct code for the RSI/BB should therefore be:

Inserted Code
double rsi[100];
double rsi_bb_main[100];
double rsi_bb_upper[100];
double rsi_bb_lower[100];
 
//+------------------------------------------------------------------+  
void Rsi_bb()
//+------------------------------------------------------------------+  
{  
ArraySetAsSeries(rsi,true);  
int counted_bars=IndicatorCounted();
      if(counted_bars<0) return;
      if(counted_bars>0) counted_bars--;
           int limit=MathMin(100-counted_bars,100-1);
  
  for(int i=limit; i>=0; i--) rsi[i]=iRSI(NULL,0,14,PRICE_CLOSE,i);
  for(int i=limit; i>=0; i--)
        {
         rsi_bb_main[i]  = iBandsOnArray(rsi,0,14,2,0,MODE_MAIN,i);
         rsi_bb_upper[i] = iBandsOnArray(rsi,0,14,2,0,MODE_UPPER,i);
         rsi_bb_lower[i] = iBandsOnArray(rsi,0,14,2,0,MODE_LOWER,i);
         }
  return;  
 }

So when you call the function, you now get the correct values.
Attached Image (click to enlarge)
Click to Enlarge

Name: CorrectVals.png
Size: 49 KB

I got this solution from the Orchard Forex YouTube channel which along with the JimDandy1958 channel I highly recommend especially for beginner and intermediate coders.
  • Post #41,783
  • Quote
  • Nov 24, 2020 1:17pm Nov 24, 2020 1:17pm
  •  Motiram
  • Joined Nov 2014 | Status: Member | 546 Posts
Quoting simnz
Disliked
{quote} Trading is basically a psychology thing. Profitable trading has not much to do with applying a strategy or technique. I gather statistics to study patterns and devise in my own personal way methods that could help me fight fear and greed. Nothing to do with generation of signals or devising a profitable strategy. Trading will be conducted by a semi-automated EA. I am trying to devise an EA based on price action. by forward testing based on knowledge acquired by statistical indicators coded by Blue Rain and do visual backtesting by using...
Ignored
Hello simnz, thank you for taking a time and answering my post.

Quoting simnz
Disliked
Every trader has to find own way and tools in a journey that mostly requires struggling with with own self all the time, rather than try to find a holy grail.
Ignored
The best answer ever simnz

Good Luck, Green Pips to you

Kind Regards,
Moti
  • Post #41,784
  • Quote
  • Nov 24, 2020 2:31pm Nov 24, 2020 2:31pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 1,603 Posts | Online Now
Quoting Pett
Disliked
Hello all, I am trying to combine RSI and Bollinger Bands within an EA but I seem to be running into a weird problem. When I combine the default RSI with Bollinger Bands using Previous Indicator's Data or within an indicator (see attached) , I obtain the correct values. {file}However, when I copy the RSI values into a static array with 100 elements, I get totally different results for the Bollinger Bands. double rsi[100]; double rsi_bb_main[100]; double rsi_bb_upper[100]; double rsi_bb_lower[100]; //+------------------------------------------------------------------+...
Ignored
"rsi + bollinger bands alerts + arrows Point"

Dont know still you needs some well coded RSI BB,here is Mladen's and Mrtools tweaked toy

some usual 4 basic averaging methods for bb
20 prices for rsi
full alerting package
full arrowing package
line or dots for rsi option (bar to bar dots)
Attached Image (click to enlarge)
Click to Enlarge

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

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

Name: p.png
Size: 224 KB
Attached File
File Type: ex4 rsi + bollinger bands alerts + arrows Point.ex4   38 KB | 133 downloads
Indicator is just a supportive tool-Use it only if it can benefit you
  • Post #41,785
  • Quote
  • Nov 24, 2020 2:41pm Nov 24, 2020 2:41pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 826 Posts
Quoting rosalieone
Disliked
{quote} Dear BlueRain (and Lucky1359) Would it be complicated to put the label of the day of the week left to the date ? In any case thanks for that interesting indi. Best
Ignored
More space needed..
Anyway, I added option so it is just avail if needed.


input bool ShowTimeColume = false; //Show Timeformat for Candle Index
input bool Prefix_Weekdays_to_Time = false;


if first is true, it will show time, if 2nd is also true, it will show Weekdays.


Attached Image
Attached File
File Type: mq4 PipMoved HLOC mtf v1.61.mq4   56 KB | 82 downloads
I still don't know where is the Holy Grail
4
  • Post #41,786
  • Quote
  • Nov 24, 2020 3:15pm Nov 24, 2020 3:15pm
  •  Pett
  • | Joined Jan 2018 | Status: Member | 20 Posts
Quoting mntiwana
Disliked
"rsi + bollinger bands alerts + arrows Point"
Ignored
Hi Mntiwana, thank you for taking the time. I was actually looking for a way to implement RSI/BB in an EA using arrays. I finally found a solution which I detailed in Post #41,782. Regards.
  • Post #41,787
  • Quote
  • Nov 24, 2020 3:35pm Nov 24, 2020 3:35pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting BitcoinBoff
Disliked
{quote} I want to test this one please ganztrade
Ignored
enjoy bro I've been busy, my big account maybe Blow next days Busy on hedging
Attached File
File Type: mq4 BreakHotZones.mq4   12 KB | 154 downloads
Margin Call again and again...
  • Post #41,788
  • Quote
  • Nov 24, 2020 3:39pm Nov 24, 2020 3:39pm
  •  rosalieone
  • Joined Sep 2009 | Status: Member | 428 Posts
Quoting BlueRain
Disliked
{quote} More space needed.. Anyway, I added option so it is just avail if needed. input bool ShowTimeColume = false; //Show Timeformat for Candle Index input bool Prefix_Weekdays_to_Time = false; if first is true, it will show time, if 2nd is also true, it will show Weekdays. {image} {file}
Ignored
Thanks a lot maestro. Its going to be interesting to spot recuring trends
  • Post #41,789
  • Quote
  • Edited at 8:58pm Nov 24, 2020 4:10pm | Edited at 8:58pm
  •  martetango
  • | Joined Oct 2020 | Status: Member | 7 Posts
Hello everyone!!

How can I turn an EA into indicator?
I made 2 indicators on FXDreema it only runs as an EA.

I already place it on indicators folder but doesn´t work
Green pips!!
Attached Files
File Type: mq4 (1).mq4   231 KB | 69 downloads
File Type: mq4 (2).mq4   224 KB | 61 downloads
  • Post #41,790
  • Quote
  • Nov 24, 2020 6:18pm Nov 24, 2020 6:18pm
  •  simnz
  • Joined Nov 2015 | Status: Member | 1,329 Posts | Invisible
Quoting Motiram
Disliked
{quote} Hello simnz, thank you for taking a time and answering my post. {quote} The best answer ever simnz Good Luck, Green Pips to you Kind Regards, Moti
Ignored
Real live trading and developing techniques to trade for profit are entirely two different things.

You might have noticed 90 pc of visitors to this thread are not real traders yet they are providing a useful service by coming out with their ideas for demo trading and throwing up challenges to coders .

It is the free availability of MT demos that as well attracts video players . I have found retirees and elderlies with interest in money and investment enjoy it as some kind of exercise to keep brain active with a belief that it helps them keep away from brain related diseases like dementia or keeps the brain active.

Real traders do try these indicators and fine tune their strategies and plots. Most of them share their experiences not here but on other threads of FF..

So it is a win win situation for every one. Enthusiastic and passionate coders get real good ideas to work on .

Professional coders were earlier showcasing their indicators by posting exe files frquently until metatrader forum did not otfer inexpensive freelance coding services.

Now it has become a thread which attracts passionate and enthusiastic coders and learners .
Practice makes a person perfect
Golden 88 Pips Today: 0
2
  • Post #41,791
  • Quote
  • Nov 24, 2020 8:09pm Nov 24, 2020 8:09pm
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,091 Posts | Online Now
my humble request to master coder, is it possible to convert mt4 version please? thanks in advance.
Attached File
File Type: mq5 Highest high - lowest low SR.mq5   14 KB | 58 downloads
Say something meaningful or Silence!!
  • Post #41,792
  • Quote
  • Nov 24, 2020 8:46pm Nov 24, 2020 8:46pm
  •  Yunis
  • | Joined Oct 2020 | Status: Member | 5 Posts
Dear coder,

Please help modify this indicator. I want to add push notification and sound alert on arrow signal to this indicator
Attached File
File Type: mq4 4candles_FalseBreak.mq4   12 KB | 99 downloads
  • Post #41,793
  • Quote
  • Edited at 10:32pm Nov 24, 2020 10:16pm | Edited at 10:32pm
  •  ecryptom
  • | Joined Jun 2019 | Status: Member | 140 Posts
Dear coder,
i need a script that
open a (pending order) SELL STOP position example 0.01(can change that) at last close LOW wick if is bullish candle
open a BUY STOP position example 0.01 at last close HIGH wick if is BEARish candle
with magic number
and delete and old pending orders of the same pair if any (if run the script again after some time) and create new
Everything flows. Learn to Earn.
  • Post #41,794
  • Quote
  • Nov 25, 2020 1:28am Nov 25, 2020 1:28am
  •  genuine007
  • | Joined Sep 2020 | Status: Member | 107 Posts
Quoting classy
Disliked
my humble request to master coder, is it possible to convert mt4 version please? thanks in advance. {file}
Ignored
how this indicator looks on chart? can you show an image of that..
  • Post #41,795
  • Quote
  • Nov 25, 2020 2:08am Nov 25, 2020 2:08am
  •  Ehsaan1999
  • | Joined Sep 2020 | Status: Member | 28 Posts
Hello all traders,

I have a Renko chart enabled and am using the Renko Live chart generator v3.2 attached below to make Renko charts and a Renko EA which works on those generated charts. I also have a VPS enabled with a ping of less than 10ms from server.

The issue I am facing is in the photo below. It shows very poor opening and closing of orders on the XAUUSD offline Renko chart. However, this doesn't happen on any other currency chart as I have also tried on EURUSD and the EA works correctly as it is supposed to. I have tried 60 pip and 100 pip Renko blocks to see if it was an issue with spreads but issue still remains. I have tried 2 different brokers to see if it was an issue with broker but issue remains on both brokers.

Since the chart, EA and VPS have no issue on EURUSD what can be the problem on XAUUSD?

EA only available in EX4 file and is not my property so I cannot share here.

Regards, TIA.
Attached Image (click to enlarge)
Click to Enlarge

Name: 20201123_220917(1).jpg
Size: 1.4 MB
Attached File
File Type: ex4 RenkoLiveChart_v3.2.ex4   12 KB | 61 downloads
  • Post #41,796
  • Quote
  • Nov 25, 2020 2:27am Nov 25, 2020 2:27am
  •  PlSoft
  • Joined Feb 2018 | Status: Member | 39 Posts
Hi it is possible to color the folder starting from my signal. Thanks
Attached Image (click to enlarge)
Click to Enlarge

Name: Cattura_v.08.PNG
Size: 21 KB
  • Post #41,797
  • Quote
  • Nov 25, 2020 2:35am Nov 25, 2020 2:35am
  •  lucky1359
  • Joined Nov 2018 | Status: Member | 647 Posts | Online Now
Quoting simnz
Disliked
{quote} Real live trading and developing techniques to trade for profit are entirely two different things. You might have noticed 90 pc of visitors to this thread are not real traders yet they are providing a useful service by coming out with their ideas for demo trading and throwing up challenges to coders . It is the free availability of MT demos that as well attracts video players . I have found retirees and elderlies with interest in money and investment enjoy it as some kind of exercise to keep brain active with a belief that it helps them...
Ignored
Dear Simnz,

Each and every word very truly said

Real live trading and developing techniques to trade for profit are entirely two different things

throwing up challenges to coders - Enthusiastic and passionate coders get real good ideas to work on

retirees and elderlies with interest in money and investment enjoy it as some kind of exercise to keep brain active with a belief that it helps them keep away from brain related diseases like dementia or keeps the brain active

[ THEY CAN TRADE VERY SMALL MICRO LOTS TO KEEP THEM BUSY AND OCCUPIED TILL THEY BECOME PERFECT IN TRADING ]

Really Hats off to you

Thanks & Regards
  • Post #41,798
  • Quote
  • Nov 25, 2020 2:37am Nov 25, 2020 2:37am
  •  lucky1359
  • Joined Nov 2018 | Status: Member | 647 Posts | Online Now
Quoting classy
Disliked
{quote} thanks bro , i am also watch pip moved along with level specially equal high-low. if you want know how i trade than you can catch me. what is that high-low level in you chart ? https://www.forexfactory.com/thread/...8#post13272178 {image}
Ignored
Very nice Classy - Your Charts.

That are OPEN-HIGH-LOW Lines for 4 hours TF

Thanks & regards
1
  • Post #41,799
  • Quote
  • Nov 25, 2020 2:48am Nov 25, 2020 2:48am
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,091 Posts | Online Now
Quoting genuine007
Disliked
{quote} how this indicator looks on chart? can you show an image of that..
Ignored
many many thanks for notice and response . it is nice creation of mlden. if possible please modify on /of channel will be great. Thanks in advance

original source link
https://www.mql5.com/en/code/23378
Attached Image (click to enlarge)
Click to Enlarge

Name: HIGEST HIGH.png
Size: 78 KB
Say something meaningful or Silence!!
  • Post #41,800
  • Quote
  • Nov 25, 2020 3:16am Nov 25, 2020 3:16am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 1,603 Posts | Online Now
Quoting Ehsaan1999
Disliked
Hello all traders, I have a Renko chart enabled and am using the Renko Live chart generator v3.2 attached below to make Renko charts and a Renko EA which works on those generated charts. I also have a VPS enabled with a ping of less than 10ms from server. The issue I am facing is in the photo below. It shows very poor opening and closing of orders on the XAUUSD offline Renko chart. However, this doesn't happen on any other currency chart as I have also tried on EURUSD and the EA works correctly as it is supposed to. I have tried 60 pip and 100 pip...
Ignored
Try using this last ver,and probably issue coming from non usual instrument
always try posting clear visible pictures
Attached File
File Type: ex4 RenkoLiveChart_v600.9.ex4   45 KB | 87 downloads
Indicator is just a supportive tool-Use it only if it can benefit you
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 20882089Page 209020912092 2180
    • 1 Page 2090 2180
14 traders viewing now, 5 are members:
dariuske
,
emonts
,
richiekoh
,
Dewara92
,
mntiwana
  • 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