• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 7:12pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 7:12pm
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 36 replies

I will code your pivot EAs for no charge 18 replies

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
  • 35,931
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 17601761Page 176217631764 2617
  • 1 Page 1762 2617
  •  
  • Post #35,221
  • Quote
  • May 18, 2020 11:40am May 18, 2020 11:40am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,232 Posts
Quoting subraghu
Disliked
Mntiwana, Sir PFA {image}
Ignored
So you already have it,what to do next ?
 
 
  • Post #35,222
  • Quote
  • May 18, 2020 11:50am May 18, 2020 11:50am
  •  guestfromeast
  • | Joined Apr 2006 | Status: Member | 111 Posts
Quoting jeanlouie
Disliked
{quote} Try this Bar_Anchor_Finder.mq4 - places a vertical line on the chart where u click - click 'find' to scroll to the vline/anchor regardless of tf - clear button to make another vline/anchor {image} {file}
Ignored
Hello Jeanlouie, thank you very much, the indicator works very good and is doing the job.
 
 
  • Post #35,223
  • Quote
  • May 18, 2020 12:16pm May 18, 2020 12:16pm
  •  David28
  • | Joined Apr 2020 | Status: Member | 14 Posts
Quoting Beerrun
Disliked
{quote} Yes that could be an issue. Both programs could see 0 orders and then both try to send an order. If you have access to the source code I can help you create a mutex to prevent this.
Ignored
Will this code below just count opened order from a specific magic number?
int TotalOrdersCount()
{
int result=0;
for(int i=0;i<OrdersTotal();i++)
{
OrderSelect(i,SELECT_BY_POS ,MODE_TRADES);
if (OrderMagicNumber()==MagicNumber) result++;
}
return (result);
}
 
 
  • Post #35,224
  • Quote
  • May 18, 2020 12:33pm May 18, 2020 12:33pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 843 Posts
Quoting michymx
Disliked
{quote} Thank you so much BlueRain!! When I try to attach the script no input window is shown, I modified the inputs trough the MetaEditor. Yes it is useful (really thanks for interest and help!!) but I would need the possibility to modify the existing stoplosses. The EA is opening 28 trades every 4 hours with a different stop loss that should be changed after 1 hour, that's the reason why I would need the option to change existing stoplosses... Would be that possible? If not thanks anyway and keep going!!
Ignored

I added option to modify existing SLs.
Also, it will shows up on the screen and you can change inputs also.

However, it sounds like you need EA that will change SL on certain hours automatically.
Attached File
File Type: mq4 SetAllStopLoss_DHL_with_Pad.mq4   2 KB | 96 downloads
 
 
  • Post #35,225
  • Quote
  • May 18, 2020 12:43pm May 18, 2020 12:43pm
  •  subraghu
  • | Joined Apr 2019 | Status: Member | 33 Posts
Quoting mntiwana
Disliked
{quote} So you already have it,what to do next ?
Ignored

Sir,

that one is buy sell arrow repainting one...i dont know the indicator name...

pls see the screen shot
Attached Image (click to enlarge)
Click to Enlarge

Name: buy-sell arrow-indi.png
Size: 198 KB
 
 
  • Post #35,226
  • Quote
  • May 18, 2020 12:47pm May 18, 2020 12:47pm
  •  Beerrun
  • Joined Jan 2016 | Status: Good Coder | Bad Trader | 458 Posts
Quoting David28
Disliked
{quote} Will this code below just count opened order from a specific magic number? int TotalOrdersCount() { int result=0; for(int i=0;i<OrdersTotal();i++) { OrderSelect(i,SELECT_BY_POS ,MODE_TRADES); if (OrderMagicNumber()==MagicNumber) result++; } return (result); }
Ignored
Yessir that counts magic numbers. Add “if(OrderSymbol()==_Symbol)” before “result++;” if you have the same magic number on different chart symbols
 
1
  • Post #35,227
  • Quote
  • May 18, 2020 1:04pm May 18, 2020 1:04pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,232 Posts
Quoting subraghu
Disliked
{quote} Sir, that one is buy sell arrow repainting one...i dont know the indicator name... pls see the screen shot {image}
Ignored
Dear,i cant say any thing about unknown and crap stuff,especially without source code
 
 
  • Post #35,228
  • Quote
  • May 18, 2020 1:44pm May 18, 2020 1:44pm
  •  Badguy
  • | Joined Nov 2006 | Status: Member | 302 Posts
Sorry members

don't LOL. After nearly 20 years MT4
How i get the trade arrows on my live chart? Especially when the trades where opened on other PC/ Platform. Script / indi needed?
Like in the back tests

Attached Image
 
 
  • Post #35,229
  • Quote
  • May 18, 2020 2:19pm May 18, 2020 2:19pm
  •  KayStreet
  • | Joined Mar 2014 | Status: Member | 188 Posts
Quoting Badguy
Disliked
....How i get the trade arrows on my live chart? Especially when the trades where opened on other PC/ Platform. Script / indi needed? Like in the back tests
Ignored
___
Here's the indicator i use.
Hope it helps.
___
Attached File
File Type: ex4 Trade_Plotter.ex4   11 KB | 135 downloads
L.L.L.T
 
1
  • Post #35,230
  • Quote
  • Edited at 3:47pm May 18, 2020 3:09pm | Edited at 3:47pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 843 Posts
Quoting Watercooler
Disliked
{quote} Hi BlueRain, i have try this script and it works perfect. Can you add Take profit. Thank you so much
Ignored
TakeProfit added.

You have option to enable/disable to modify existing stoploss and takeprofit if there is any.
If SL,TP not in place, it will place SL,TP using daily H/L + pad.

Just changed name to reflect it now handles SL and TP also.
Attached File
File Type: mq4 SetAll_SL_TP_With_DHL.mq4   3 KB | 98 downloads
 
1
  • Post #35,231
  • Quote
  • Edited May 19, 2020 2:38pm May 18, 2020 4:06pm | Edited May 19, 2020 2:38pm
  •  jeanlouie
  • Joined Dec 2010 | Status: Member | 1,225 Posts
Quoting KayStreet
Disliked
Is anybody in position to code this indicator that should measure and plot on an oscillator the average time it takes a candle from OPEN to CLOSE. Example. Assume bearish candles 1,2,3,4,5,6,7,8 each takes 4,5,8,2,7,1,9,3 minutes respectively from open to close. So for a set period = 7, at the close of the the 7th candle, the average for the last 7 candles =(4+5+8+2+7+1+9)/7 is plotted on the oscillator. ____ Bearish and Bullish candles would each have a separate line in the same oscillator window. ____ This should work for offline charts whose...
Ignored
Here is something, only works on new data (I think mql5 overcomes this or I'm unaware of a better way in mql4), either live data or in the strategy tester (tester times are based on your own computer clock, so keeping a constant speed is required). Haven't tested the minutes option, but should work.

Candle_Speed_Meter
- from loading/changing settings, measures the time each tick takes from the first to last in a candle
- averages these times over a period for all bars, and bull/bear bars separately
- ie period = 10, all bars average=10 last bars, bullish=last 10 bullish (incl doji), bearish=last 10 bearish
- can opt to show bar timings in seconds or minutes
edit
- new proper version
Attached Image
Attached Image (click to enlarge)
Click to Enlarge

Name: candle speed meter pic 1.png
Size: 31 KB
 
3
  • Post #35,232
  • Quote
  • May 18, 2020 6:39pm May 18, 2020 6:39pm
  •  Da.Blanchot
  • | Joined Mar 2013 | Status: Member | 34 Posts
Quoting jeanlouie
Disliked
{quote} Give this a shot. High_Low_Price_Finder - click an option to find a high or low, to the left or right, and it will draw a trend line connecting the selected bar to the matching/higher-lower price to the left or to the right of the selected bar. Alert notice if a higher-lower price isn't found. If the found price-bar isn't on the screen it will move the screen. - optional start-end markers - color choices edit - updated file, removed bug that deletes objs on changing timeframes {image} {file}
Ignored

Although this request was made by other members, I thank you since this might be helpful for me as well..
May God Bless You and all other generous FF coders..
 
 
  • Post #35,233
  • Quote
  • May 18, 2020 8:28pm May 18, 2020 8:28pm
  •  Watercooler
  • Joined Dec 2008 | Status: Member | 142 Posts
Quoting BlueRain
Disliked
{quote} TakeProfit added. You have option to enable/disable to modify existing stoploss and takeprofit if there is any. If SL,TP not in place, it will place SL,TP using daily H/L + pad. Just changed name to reflect it now handles SL and TP also. {file}
Ignored
Thank you so much BlueRain.
 
 
  • Post #35,234
  • Quote
  • May 18, 2020 9:23pm May 18, 2020 9:23pm
  •  Da.Blanchot
  • | Joined Mar 2013 | Status: Member | 34 Posts
morning guys..

I have one more idea need help from coders to make it work..
I'm really sorry I don't have the source code for you guys to work on..

cja has successfully made one which is literally the closest 'open levels with xx pips' to what I need..
here's what need to be add as a plus point from what cja has created..

1. option to add 'time setting' as the 'starting point to calculate the levels from. cja's one is fixed to open daily level as the starting point. for example at 00:00, 04:00, 08:00, etc and each time setting is user preference..

2. if no 1 is possible, make an option to have max 6-10 different 'time setting' as the starting point to calculate the levels from.

thanks in advance..
n credit to cja for creating such a wonderful indi..
Attached Image
Attached File
File Type: ex4 Open Levels Historical.ex4   44 KB | 76 downloads
 
 
  • Post #35,235
  • Quote
  • May 18, 2020 11:19pm May 18, 2020 11:19pm
  •  tpatraders
  • | Joined Oct 2019 | Status: Member | 51 Posts
Hello,

Can someone please add a push notifications option to this indicator please.

Push notifications that has the currency name and additional details if possible (price etc).

Thank you in advance for your help with this!
Attached File
File Type: mq4 super-signals-channel.mq4   2 KB | 111 downloads
 
 
  • Post #35,236
  • Quote
  • May 19, 2020 1:41am May 19, 2020 1:41am
  •  japfx
  • Joined Jan 2011 | Status: Member | 317 Posts
Dear Master,

Please help me educate this indicator to load faster on chart .... its taking too long to update information when added to chart.

Thanks
Attached File
File Type: mq4 FXTT_Fx_Scanner.mq4   77 KB | 120 downloads
 
 
  • Post #35,237
  • Quote
  • May 19, 2020 2:08am May 19, 2020 2:08am
  •  AdamEgWhite
  • Joined Dec 2019 | Status: Member | 253 Posts
Quoting japfx
Disliked
Dear Master, Please help me educate this indicator to load faster on chart .... its taking too long to update information when added to chart. Thanks {file}
Ignored
checked on my computer. I have all the work fine and fast.

I saw indicators a million times slower. I think your pc .... quite old. Throw it a way.
 
 
  • Post #35,238
  • Quote
  • May 19, 2020 2:25am May 19, 2020 2:25am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 843 Posts
Quoting japfx
Disliked
Dear Master, Please help me educate this indicator to load faster on chart .... its taking too long to update information when added to chart. Thanks {file}
Ignored
I tried and it works fine. I don't see any slow down or delay.
it could be your internet speed or computer being old.
 
 
  • Post #35,239
  • Quote
  • May 19, 2020 2:39am May 19, 2020 2:39am
  •  francisfree
  • | Joined Jan 2020 | Status: Member | 233 Posts
Quoting subraghu
Disliked
dear all, here is the conditions...want to make best indicator i want to make final indicator like this... We can use sr zone,trendline breakout & pattern indicator (some time make true/false) stop loss previous low/high {image} {image} {image} {file} {file} {image} {image}
Ignored
dear mr subraghu can u send me your this attached indicator which showing buy sell label i want please
Attached Image (click to enlarge)
Click to Enlarge

Name: SR2.png
Size: 64 KB
 
 
  • Post #35,240
  • Quote
  • May 19, 2020 2:52am May 19, 2020 2:52am
  •  Liba
  • | Joined Sep 2018 | Status: Member | 10 Posts
Dear Sir,
I'm trying to make my first EA with MLADEN Jfatl slope speed indi.
It is a simply Stop and Reverse, above/below zero.
When I compile it all seams ok, but on live and test does't work.
Should be a minor issue, but don't know where.
Can anyone please help me and fix it?
It would appreciate if you send me back the .mq4 file so I can learn the mistake.
Thanks a lot
Liba
Attached Files
File Type: ex4 jfatl slope speed.ex4   62 KB | 99 downloads
File Type: mq4 Libanaga Jfatl.mq4   10 KB | 88 downloads
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 17601761Page 176217631764 2617
    • 1 Page 1762 2617
7 traders viewing now, 3 are members:
Zookeeper85
,
Jwiro
,
jacryptoking
  • More
Top of Page
Forex Factory Blog Updated: Alerting All Members
  • 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 / ©2022