• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 12:02pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 12:02pm
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) 449 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,677
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 14311432Page 143314341435 2171
  • 1 Page 1433 2171
  •  
  • Post #28,641
  • Quote
  • Apr 6, 2019 9:28am Apr 6, 2019 9:28am
  •  maximumguita
  • Joined Apr 2015 | Status: Member | 1,031 Posts
Hi all,

can someone have a look at this indi. It freezes the terminal if i change the settings or load it in moore than one chart.

Attached File
File Type: mq4 RENKO_2.mq4   9 KB | 211 downloads
(.)(.) think first ...
  • Post #28,642
  • Quote
  • Apr 6, 2019 9:37am Apr 6, 2019 9:37am
  •  Stan
  • | Joined Aug 2006 | Status: Member | 214 Posts
I am wondering if it is possible to code this CCI indicator to have 5 instead of 4 set of parameters. I had been on Ninja Trader and had an indicator I used, but can't find what I am looking for with MT4.
I can give the set of parameters if someone thinks they can do it.

Thank you
Attached Image
Attached File
File Type: mq4 ccifilterv0.1.mq4   3 KB | 187 downloads
  • Post #28,643
  • Quote
  • Edited at 4:07pm Apr 6, 2019 10:51am | Edited at 4:07pm
  •  Retep
  • Joined Apr 2018 | Status: Member | 75 Posts
Quoting Shakka
Disliked
Hi all.. I need an EA that will do a Cumulative Trailing Stop (CTS) from total basket trades on one pair.. E.g. I have basket trades on AU (5 positions) and UJ (3 positions). I attach the EA each pair and set the CTS value at 50 pips. So, when the total basket trades on AU reach 50 pips in profit, EA will set CTS to breakeven, reach 100 pips in profit, CTS is now set at 50 pips. If the price turns back againts my trades and total floating profit is now back to 50 pips, then EA will close all the trades at 50 pips profit. This AU basket trades will...
Ignored
Hi Shakka, see my Trade Manager on my GitHub account. Seems it can do what you want. Run multiple instances of the EA with different "Instance" settings to manage multiple indipendent baskets. And this is not self explanatory: Press the Ctrl key to activate the hotkeys.
Attached Image (click to enlarge)
Click to Enlarge

Name: TradeManager.png
Size: 47 KB
  • Post #28,644
  • Quote
  • Apr 6, 2019 1:41pm Apr 6, 2019 1:41pm
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,076 Posts
Quoting NickBixy
Disliked
{quote} try with another template name i think that's the problem because error code 5020 = File does not exist ERR_FILE_NOT_EXIST, so try another template file or save one as "Default" edit yup thats the problem i got same error code when i used some random template name
Ignored
THANKS NIC ,IT IS WORKING .i will give you more feedback.it is really great job,i appreciate it so much.

you already did a lot ..great.next time think about open drag and drop script open multi time frame .for example if i open eur/gbp ..any pair(at least all major pairs)
open multi time frame like:
EUR
mn,week, day, 4h ,1h ,15,5,1 or at least 3 time frame at a time

this tools are essential for daily/weekly analysis for any trader..imho(i searched but failed ..)
Say something meaningful or Silence!!
2
  • Post #28,645
  • Quote
  • Apr 6, 2019 3:26pm Apr 6, 2019 3:26pm
  •  Moneyfarmer
  • | Joined Apr 2019 | Status: Junior Member | 1 Post
hello to all coders in here I'll be very grateful if you could create an indicator which is built on ADX(ADX alert only when the the value is above 40) + RSI period 1 and level 90 for OverBought and 10 for Oversold that gives an Alert on 5M, 15M, 30M, 1HR, 4HR, 1D timeframes
  • Post #28,646
  • Quote
  • Apr 6, 2019 7:56pm Apr 6, 2019 7:56pm
  •  JojajoForex
  • | Joined Jan 2019 | Status: Member | 212 Posts
HI CAN YOU PLEASE HELP ME TO CODE THIS INDICATOR I WAS TRYING TO CODE IT, IT DOES NOT WORK.
PLEASE

//+------------------------------------------------------------------+
//| FIBOMPATI.mq4 |
//| Jacksy Mpati 2019-04-04 |
//| https://www.jacksympati.com |
//+------------------------------------------------------------------+
#property copyright "Jacksy Mpati 2019-04-04"
#property link "https://www.jacksympati.com"
#property version "1.00"
#property strict
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_plots 2
//--- plot DOWN
#property indicator_label1 "DOWN"
#property indicator_type1 DRAW_LINE
#property indicator_color1 clrRed
#property indicator_style1 STYLE_SOLID
#property indicator_width1 1
//--- plot UP
#property indicator_label2 "UP"
#property indicator_type2 DRAW_LINE
#property indicator_color2 clrGreen
#property indicator_style2 STYLE_SOLID
#property indicator_width2 1
//--- input parameters
input bool HIGHandLOW=true;
input double Fibozeroline=0.0;
input double Fibo1line=0.1;
input double Fibo13pivotline=13.0;
input double Fibo21BuyorSelllinewhentouchlinemustshowArrow=21.0;
input double Fibo34BuyperfectlineshowArrow=34.0;
input double Fibo50Takeprofit1line=50.0;
input double Fibo55Takeprofit2line=55.0;
input double Fibo80Takeprofit3line=80.0;
input double Fibo89Takeprofit4line=89.0;
input double Fibo999lastline=99.9;
input double FiboStoplosslline=-10.0;
input int FiboStartbar0line=0;
input int FiboBarsback=50;
input bool FiboPause=false;
//--- indicator buffers
double DOWNBuffer[];
double UPBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//--- indicator buffers mapping
SetIndexBuffer(0,DOWNBuffer);
SetIndexBuffer(1,UPBuffer);

//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
//---

//--- return value of prev_calculated for next call
return(rates_total);
}
//+------------------------------------------------------------------+
//| Timer function |
//+------------------------------------------------------------------+
void OnTimer()
{
//---

}
//+------------------------------------------------------------------+
//| ChartEvent function |
//+------------------------------------------------------------------+
void OnChartEvent(const int id,
const long &lparam,
const double &dparam,
const string &sparam)
{
//---

}
//+------------------------------------------------------------------+
Attached Images (click to enlarge)
Click to Enlarge

Name: Screenshot (78).png
Size: 283 KB Click to Enlarge

Name: Screenshot (79).png
Size: 62 KB
  • Post #28,647
  • Quote
  • Apr 7, 2019 1:14am Apr 7, 2019 1:14am
  •  Shakka
  • | Joined Jun 2017 | Status: Superior | 102 Posts
Quoting Retep
Disliked
{quote} Hi Shakka, see my Trade Manager on my GitHub account. Seems it can do what you want. Run multiple instances of the EA with different "Instance" settings to manage multiple indipendent baskets. And this is not self explanatory: Press the Ctrl key to activate the hotkeys.{image}
Ignored
Attached Image (click to enlarge)
Click to Enlarge

Name: 20190407_120820.png
Size: 147 KB


Thank you Sir..
But, I dont know how to download the file..
Kindly to post it here please..

Regards,
Shakka
Gambling = 0% skill, 100% luck. Trading = 1% skill, 99% luck.
Lucky 7 All Time Return: 1.0%
  • Post #28,648
  • Quote
  • Apr 7, 2019 7:23am Apr 7, 2019 7:23am
  •  Retep
  • Joined Apr 2018 | Status: Member | 75 Posts
Quoting Shakka
Disliked
... Kindly to post it here please...
Ignored
Sorry mate, I need GitHub for version/change management. I'm constantly working on my crap
Attached Image (click to enlarge)
Click to Enlarge

Name: Git.png
Size: 113 KB
  • Post #28,649
  • Quote
  • Apr 7, 2019 11:01am Apr 7, 2019 11:01am
  •  Artawidi
  • | Joined Apr 2018 | Status: Loading | 88 Posts
i need help to mod this keltner chanel so its display upper, lower and period at data window

before
Attached Image

after
Attached Image (click to enlarge)
Click to Enlarge

Name: aftermod.png
Size: 23 KB
Attached File
File Type: mq4 Keltner_ATR_Band_mt4.mq4   4 KB | 216 downloads
  • Post #28,650
  • Quote
  • Apr 7, 2019 2:34pm Apr 7, 2019 2:34pm
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,691 Posts | Invisible
Quoting JojajoForex
Disliked
HI CAN YOU PLEASE HELP ME TO CODE THIS INDICATOR I WAS TRYING TO CODE IT, IT DOES NOT WORK. PLEASE //+------------------------------------------------------------------+ //| FIBOMPATI.mq4 | //| Jacksy Mpati 2019-04-04 | //| https://www.jacksympati.com | //+------------------------------------------------------------------+ #property copyright "Jacksy Mpati 2019-04-04" #property link "https://www.jacksympati.com" #property version "1.00" #property strict #property indicator_chart_window #property indicator_buffers 2 #property indicator_plots...
Ignored
No time for help - see my posts this thread for examples - https://www.forexfactory.com/showthread.php?t=261217
Posts are not necessary intended for you
  • Post #28,651
  • Quote
  • Apr 7, 2019 3:12pm Apr 7, 2019 3:12pm
  •  JojajoForex
  • | Joined Jan 2019 | Status: Member | 212 Posts
Pls someone modify it for me
Attached File
File Type: mq4 FIBOMPATI.mq4   3 KB | 207 downloads
  • Post #28,652
  • Quote
  • Apr 7, 2019 4:48pm Apr 7, 2019 4:48pm
  •  rpasupathy
  • Joined May 2008 | Status: Member | 317 Posts
Hi Friends,

Can this be coded for Indicator ...

1. We need 3 or more bars making LOWER LOWS.

2. The next bar SHOULD OPEN AND CLOSE ABOVE the previous bar close.

3. Need an arrow with alert once the signal bar closes.

For sell signal arrow its the opposite.

1. We need 3 or more bars making HIGHER HIGHS.

2. The next bar SHOULD OPEN AND CLOSE BELOW the previous bar close.

Thanks a lot

Attched a picture to make it clear.
Attached Image (click to enlarge)
Click to Enlarge

Name: Example.JPG
Size: 49 KB
The One Who Makes The Thunder Roar Also Hears A Butterfly Sigh - Ruzbeh
  • Post #28,653
  • Quote
  • Apr 7, 2019 7:21pm Apr 7, 2019 7:21pm
  •  tojah
  • | Joined Jun 2007 | Status: Member | 6 Posts
please can anyone help me with this indicator?
Attached Images
  • Post #28,654
  • Quote
  • Apr 8, 2019 7:34am Apr 8, 2019 7:34am
  •  talisean
  • | Joined Aug 2013 | Status: Member | 23 Posts
the screen shot looks like super trend indicator. with the oscillator parts of the indi displayed in the box at the bottom of the screen. just my 2 cents
  • Post #28,655
  • Quote
  • Apr 8, 2019 4:13pm Apr 8, 2019 4:13pm
  •  talisean
  • | Joined Aug 2013 | Status: Member | 23 Posts
looking for a gap indicator. i know there must be one somewhere but cant find one that fits these parameters online.

http://prntscr.com/n99q5o

a line drawn that can be extended a variable number of bars to the right from the low of the next bar in an uptrend or the high of the next bar in a downtrend.

the condition for drawing the line is that there is no overlap of any part of two consecutive bars.

any help gratefully accepted. thankyou
  • Post #28,656
  • Quote
  • Apr 8, 2019 7:42pm Apr 8, 2019 7:42pm
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 4,076 Posts
Quoting classy
Disliked
{quote} THANKS NIC ,IT IS WORKING .i will give you more feedback.it is really great job,i appreciate it so much. you already did a lot ..great.next time think about open drag and drop script open multi time frame .for example if i open eur/gbp ..any pair(at least all major pairs) open multi time frame like: EUR mn,week, day, 4h ,1h ,15,5,1 or at least 3 time frame at a time this tools are essential for daily/weekly analysis for any trader..imho(i searched but failed ..)
Ignored
any mates know about this type of multi time frame chart open for any pair script
Say something meaningful or Silence!!
  • Post #28,657
  • Quote
  • Apr 8, 2019 8:55pm Apr 8, 2019 8:55pm
  •  Nicholishen
  • Joined Jul 2005 | Status: zzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzz | 1,289 Posts
Quoting Phylo
Disliked
{quote} No time for help
Ignored
Thanks for taking your precious time to remind us how much time you don't have.
2
2
  • Post #28,658
  • Quote
  • Apr 9, 2019 4:42am Apr 9, 2019 4:42am
  •  T4Trade
  • Joined Sep 2017 | Status: Trend Following,Price Action,Marti | 1,561 Posts
Quoting worz22
Disliked
hello i was wondering if there is a possibilty you can either code or fix the icefx.newsinfo indicator iv been using it some time and now has came to a hault as you can tell by its name its a news indicator which basically stops the EA 30mins before and restarts the EA 30 mins after high impact news or if anyone else has another alternative to the ice news indicator im open ears thanks in advance and keep up the good work
Ignored
I just came through telegram group where they posted updated verison of icenews indicator,i don't use it,otherwise I would have given you,please visit telegram and get it from group name:FREE EA:Forex discussion
  • Post #28,659
  • Quote
  • Apr 9, 2019 6:45am Apr 9, 2019 6:45am
  •  tojah
  • | Joined Jun 2007 | Status: Member | 6 Posts
Thank you very much ,i will take time to check it
  • Post #28,660
  • Quote
  • Apr 9, 2019 1:13pm Apr 9, 2019 1:13pm
  •  kaola508
  • | Joined May 2011 | Status: Member | 31 Posts
Can someone convert this useful MT4 indicators to mq5?
thank you!
Attached File
File Type: mq4 #Daily-Weekly-Monthly Hi-Low.mq4   17 KB | 226 downloads
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 14311432Page 143314341435 2171
    • 1 Page 1433 2171
23 traders viewing now, 8 are members:
diegom2020
,
wongstill
,
Invisible
,
wowzers
,
DrDre
,
TonyJohnCali
,
Ceto
,
maplefu0601
  • 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