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

Need help to code EAs for MT4 and MT5 5 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
  • 42,383
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 18751876Page 187718781879 3079
  • 1 Page 1877 3079
  •  
  • Post #37,521
  • Quote
  • Jul 13, 2020 2:02am Jul 13, 2020 2:02am
  •  japfx
  • Joined Jan 2011 | Status: Member | 337 Posts
Quoting BlueRain
Disliked
{quote} ZigZag doesn't have high/low buffer. it will require a lot more changes than I intended.
Ignored

Please take a look @ this coding ..... it may help ...

Thanks
Attached File(s)
File Type: mq4 01_zigzagvalue.mq4   9 KB | 154 downloads
 
 
  • Post #37,522
  • Quote
  • Jul 13, 2020 2:05am Jul 13, 2020 2:05am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,085 Posts
Quoting Thiagot10
Disliked
{quote} remains the same only the signal appears if I change the time keep stopping
Ignored
it uses a lot of indicator internally and maybe, your machine doesn't have power to handle those?
it has to calculate below 9 indicator calls on every tick.

double momVal = iMomentum(symbol,timeFrame,momentumPeriod,PRICE_TYPICAL,i);
double atrVal = iATR(symbol,timeFrame,atrPeriod,i);
double cciVal = iCCI(symbol,timeFrame,cciPeriod,PRICE_TYPICAL,i);
double rsiVal = iRSI(symbol,timeFrame,rsiPeriod,PRICE_TYPICAL,i);
double adxVal = iADX(symbol,timeFrame,adxPeriod,PRICE_TYPICAL,MODE_MAIN,i);
double adxPLUSVal = iADX(symbol,timeFrame,adxPeriod,PRICE_TYPICAL,MODE_PLUSDI,i);
double adxMINUSVal = iADX(symbol,timeFrame,adxPeriod,PRICE_TYPICAL,MODE_MINUSDI,i);

double adx1Val = iADX(symbol,timeFrame,adxControlPeriod,PRICE_CLOSE,MODE_MAIN,i);
double adx1PLUSVal = iADX(symbol,timeFrame,adxControlPeriod,PRICE_CLOSE,MODE_PLUSDI,i);
double adx1MINUSVal = iADX(symbol,timeFrame,adxControlPeriod,PRICE_CLOSE,MODE_MINUSDI,i);
double rsi1Val = iRSI(symbol,timeFrame,rsiControlPeriod,PRICE_CLOSE,i);

I have added to check if this is newbar - that will reduce calculation.
Please check if that make any diff.
Attached File(s)
File Type: mq4 #Momentum onChartSignals Indicator v1.0.mq4   19 KB | 137 downloads
 
 
  • Post #37,523
  • Quote
  • Jul 13, 2020 2:11am Jul 13, 2020 2:11am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,085 Posts
Quoting japfx
Disliked
{quote} Please take a look @ this coding ..... it may help ... Thanks {file}
Ignored
Hi, japfx

Your attached code has two more buffers- that means I have to make "a lot of changes"..
 
 
  • Post #37,524
  • Quote
  • Jul 13, 2020 2:23am Jul 13, 2020 2:23am
  •  Thiagot10
  • | Joined Jan 2020 | Status: Member | 314 Posts
Quoting BlueRain
Disliked
{quote} it uses a lot of indicator internally and maybe, your machine doesn't have power to handle those? it has to calculate below 9 indicator calls on every tick. double momVal = iMomentum(symbol,timeFrame,momentumPeriod,PRICE_TYPICAL,i); double atrVal = iATR(symbol,timeFrame,atrPeriod,i); double cciVal = iCCI(symbol,timeFrame,cciPeriod,PRICE_TYPICAL,i); double rsiVal = iRSI(symbol,timeFrame,rsiPeriod,PRICE_TYPICAL,i); double adxVal = iADX(symbol,timeFrame,adxPeriod,PRICE_TYPICAL,MODE_MAIN,i); double adxPLUSVal = iADX(symbol,timeFrame,adxPeriod,PRICE_TYPICAL,MODE_PLUSDI,i);...
Ignored
made no difference
 
 
  • Post #37,525
  • Quote
  • Jul 13, 2020 2:24am Jul 13, 2020 2:24am
  •  kannyjie
  • | Joined Aug 2012 | Status: Member | 28 Posts
Quoting francisfree
Disliked
can someone make it a non repaint indicator in live market there was no signal then sudden it shows 3 red bars on volume can someone make it that it shows alert on very first bar and not repaint and make arrow also when volume bar blue or red {image} {file}
Ignored

I have checked the source code. Forget this indicator, which has nothing to do with volume, when Bar0's price is greater than Bar1 and Bar2, it rewrites Bar2's color.
 
 
  • Post #37,526
  • Quote
  • Jul 13, 2020 2:24am Jul 13, 2020 2:24am
  •  Thiagot10
  • | Joined Jan 2020 | Status: Member | 314 Posts
[quote = BlueRain; 13055661] {quote} usa muitos indicadores internamente e talvez sua máquina não tenha energia para lidar com eles? deve calcular abaixo de 9 chamadas indicadoras em cada tick. momVal dupla = iMomentum (símbolo, timeFrame, momentumPeriod, PRICE_TYPICAL, i); atrVal duplo = iATR (símbolo, timeFrame, atrPeriod, i); cciVal duplo = iCCI (símbolo, timeFrame, cciPeriod, PRICE_TYPICAL, i); rsiVal duplo = iRSI (símbolo, timeFrame, rsiPeriod, PRICE_TYPICAL, i); adxVal duplo = iADX (símbolo, timeFrame, adxPeriod, PRICE_TYPICAL, MODE_MAIN, i); adxPLUSVal duplo = iADX (símbolo, timeFrame, adxPeriod, PRICE_TYPICAL, MODE_PLUSDI, i); adxMINUSVal duplo = iADX (símbolo, timeFrame, adxPeriod, PRICE_TYPICAL, MODE_MINUSDI, i); adx1Val duplo = iADX (símbolo, timeFrame, adxControlPeriod, PRICE_CLOSE, MODE_MAIN, i); adx1PLUSVal duplo = iADX (símbolo, timeFrame, adxControlPeriod, PRICE_CLOSE, MODE_PLUSDI, i); adx1MINUSVal duplo = iADX (símbolo, timeFrame, adxControlPeriod, PRICE_CLOSE, MODE_MINUSDI, i); rsi1Val duplo = iRSI (símbolo, timeFrame, rsiControlPeriod, PRICE_CLOSE, i); Eu adicionei para verificar se isso é newbar - isso reduzirá o cálculo. Por favor, verifique se isso faz alguma diferença. {file} [/ quote]
Blue friend look at this version of him just that I prefer the signals from the v1 version only that the v1 version stops giving the signals look this version buddy
Attached File(s)
File Type: mq4 #Momentum onChartSignals Indicator v2.0.mq4   14 KB | 106 downloads
 
 
  • Post #37,527
  • Quote
  • Jul 13, 2020 2:51am Jul 13, 2020 2:51am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,085 Posts
Quoting Thiagot10
Disliked
[quote = BlueRain; 13055661] {quote} usa muitos indicadores internamente e talvez sua máquina não tenha energia para lidar com eles? deve calcular abaixo de 9 chamadas indicadoras em cada tick. momVal dupla = iMomentum (símbolo, timeFrame, momentumPeriod, PRICE_TYPICAL, i); atrVal duplo = iATR (símbolo, timeFrame, atrPeriod, i); cciVal duplo = iCCI (símbolo, timeFrame, cciPeriod, PRICE_TYPICAL, i); rsiVal duplo = iRSI (símbolo, timeFrame, rsiPeriod, PRICE_TYPICAL, i); adxVal duplo = iADX (símbolo, timeFrame, adxPeriod, PRICE_TYPICAL, MODE_MAIN,...
Ignored
V2 was just bug fix version of V1 where devided by zero bug was fixed in V2.

Try this one where I have transferred those bug fix and all the settings as well.
Attached File(s)
File Type: mq4 #Momentum onChartSignals Indicator v1.0.mq4   19 KB | 232 downloads
 
 
  • Post #37,528
  • Quote
  • Jul 13, 2020 3:19am Jul 13, 2020 3:19am
  •  J.Ndungu
  • | Joined Jul 2020 | Status: Member | 22 Posts
Quoting ishak111
Disliked
{quote} Check its works for me. See attached file {file}
Ignored

Hi,

Thank you for sharing.

Please is there an updated version of this SuperTrend5 indicator with push button alert? If none, Coders, kindly assist with push button alert coding.

Thank you in advance.
 
 
  • Post #37,529
  • Quote
  • Jul 13, 2020 3:21am Jul 13, 2020 3:21am
  •  francisfree
  • | Joined Jan 2020 | Status: Member | 234 Posts
Quoting kannyjie
Disliked
{quote} i have checked the source code. Forget this indicator, which has nothing to do with volume, when bar0's price is greater than bar1 and bar2, it rewrites bar2's color.
Ignored
ok i thought its a good volume indicator
 
 
  • Post #37,530
  • Quote
  • Jul 13, 2020 3:48am Jul 13, 2020 3:48am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,085 Posts
Quoting francisfree
Disliked
{quote} ok i thought its a good volume indicator
Ignored
it is a volume indicator.

it does in two steps.
first, it fills up/down/mid buffer with bar 0.

then,
if you set option, it checks if there is 3 bars up/down trend and fill buffer up2,down2 with volume.

However, it is repaint on current bar as it checks current bar up/down condition.
At the same time, that changes 3 bar up/down condition as well.

To make it non-repaint, you have to remove current bar checking.
then, again - if we change to Bar 1 as last bar, you will have a lagging indicator.
 
 
  • Post #37,531
  • Quote
  • Jul 13, 2020 4:16am Jul 13, 2020 4:16am
  •  biker883
  • | Joined Mar 2007 | Status: Member | 142 Posts
Hi,
Here is a indicator that draws rectangle that encompass the high and low of the period set in the parameters.
But it draws it from the 00h00 of the broker time.
Would it be possible to modify it and add a start day of week option and a start time option
So It will be possible to have boxes drawn from any day of week and time.

Thank you very much
Gerald
Attached File(s)
File Type: mq4 mn Period Boxes.mq4   2 KB | 136 downloads
 
 
  • Post #37,532
  • Quote
  • Jul 13, 2020 4:16am Jul 13, 2020 4:16am
  •  2tjv
  • | Joined Aug 2018 | Status: Member | 28 Posts
Does anyone have this indicator?
It starts to display number 1 below of the bar at the time we want then keep going on 2, 3, 4, 5,...
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSDM5__1.png
Size: 21 KB
 
 
  • Post #37,533
  • Quote
  • Jul 13, 2020 4:40am Jul 13, 2020 4:40am
  •  japfx
  • Joined Jan 2011 | Status: Member | 337 Posts
Quoting BlueRain
Disliked
{quote} Hi, japfx Your attached code has two more buffers- that means I have to make "a lot of changes"..
Ignored
hmmmm.

please take ur time and attend only at leisure time sir.


Thanks
 
 
  • Post #37,534
  • Quote
  • Jul 13, 2020 5:32am Jul 13, 2020 5:32am
  •  Bazzza
  • | Joined Sep 2014 | Status: Member | 238 Posts
Quoting BlueRain
Disliked
{quote} Added buttons to show/hide the lines. {file}
Ignored
Hi BlueRain, thank you so much for doing that. It makes my charts so much clearer to be able to hide indicators when they are not required. Thank you.
 
 
  • Post #37,535
  • Quote
  • Jul 13, 2020 5:42am Jul 13, 2020 5:42am
  •  Waih
  • | Joined Aug 2018 | Status: Member | 48 Posts
Quoting jeanlouie
Disliked
{quote} Someone had asked for an mq5 version- Jake_Bernstein_Market_Timing_Method_mq5 - up trend by 2 lows higher than the 10sma(high) - down trend by 2 highs lower than the 8sma(low) - options to use the current live bar in signals or only completed bars - option of number of bars to check (default is 2) - option of MAs (default is J.Bernstein's recommended above) - styling options for arrows, MAs - alerts provided {image} {file}
Ignored
Thank you very much Jean
In It To Win
 
 
  • Post #37,536
  • Quote
  • Jul 13, 2020 7:17am Jul 13, 2020 7:17am
  •  Jotaerre
  • | Joined Jul 2006 | Status: Member | 15 Posts
Hi all, I dont know if is possible but i need a indicator that make an alert only when RSI cross 50 leve down or up AND wpr cross -20 or -80 level , thei could cross with a candle between and so the indicator give an alert to the last cross, well I know is not easy but is it possible? THANKS.(sorry my english)
 
 
  • Post #37,537
  • Quote
  • Jul 13, 2020 9:25am Jul 13, 2020 9:25am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,085 Posts
Quoting japfx
Disliked
{quote} hmmmm. please take ur time and attend only at leisure time sir. Thanks
Ignored
Sure. maybe, 1-2 days later
 
1
  • Post #37,538
  • Quote
  • Jul 13, 2020 10:02am Jul 13, 2020 10:02am
  •  chaoshydra
  • | Joined Mar 2015 | Status: Member | 176 Posts
hello everybody

can someone add to that MACD an alert on value (one on minus and one on plus)

for exemple alert "pop up" is set at:

input : 0.05
input : -0.05

each time macd line cross those value (here the grey lines i draw for exemple)
[attach][EURJPY,H10 (offline)].jpg;3688710[/attach]

thank you very much
Attached File(s)
File Type: mq4 MACD_With_Alert.mq4   12 KB | 116 downloads
 
 
  • Post #37,539
  • Quote
  • Jul 13, 2020 10:04am Jul 13, 2020 10:04am
  •  Jotaerre
  • | Joined Jul 2006 | Status: Member | 15 Posts
well my fault I dont said that the periods of both mus be changeable, and I am sorry I make a mistake when put this in a reply instead of a new threat, sorry and Thanks
 
 
  • Post #37,540
  • Quote
  • Jul 13, 2020 11:11am Jul 13, 2020 11:11am
  •  rahadian1
  • Joined Jul 2013 | Status: Member | 174 Posts
Hello can someone help me make EA that open pending order from order that already get SL ?

for example i buy GU at 1.2400 SL 1.2300 TP 1.2500, then price go to 1.2300, my order get SL.
then i wanna EA that open buy stop at 1.2400 SL 1.2300 TP 1.2500.

i still open manual, i just want that EA reopen my order that already get SL
Not losing money is almost good as making money
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 18751876Page 187718781879 3079
    • 1 Page 1877 3079
59 traders viewing now, 9 are members:
roma23
,
Uru
,
Sadai
,
Nits
,
PutaniBitali
,
lhdsilva
,
daggi22
,
Zadkiel
,
faziza
  • 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