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

I will code your pivot EAs for no charge 19 replies

Need help to code EAs for MT4 and MT5 4 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
  • 40,243
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 27602761Page 276227632764 2922
  • 1 Page 2762 2922
  •  
  • Post #55,221
  • Quote
  • Oct 14, 2022 12:34pm Oct 14, 2022 12:34pm
  •  PatienceFx
  • Joined Jun 2013 | Status: enjoying life | 14,985 Posts | Online Now
Quoting BestTraderEv
Disliked
{quote} This EA should do what you want. It scans open positions and trails their SL's according to your requirements. It uses the data from the timeframe defined in the input parameters. It will do the TS only if the position already has an SL order applied. Only one instance of this EA is necessary on any chart, it works for all symbols. Please test it. {file}
Ignored
did not set a starting stop
Attached Image (click to enlarge)
Click to Enlarge

Name: USDJPYDaily.png
Size: 15 KB
Indicators on my chart help me guess the trade they do not guarantee result
 
 
  • Post #55,222
  • Quote
  • Oct 14, 2022 12:37pm Oct 14, 2022 12:37pm
  •  walesamuel
  • | Joined May 2018 | Status: Member | 48 Posts
Quoting BlueRain
Disliked
{quote} It has already buffer. I added alert. {file} {image}
Ignored
Hi @Bluerain, I checked the indicator, though it gives alert but still doesn't have buffer. If you could please share the buffer for sell and buy as this was not contained under colour. Many thanks
If it works for you, don't forget to help others.
 
 
  • Post #55,223
  • Quote
  • Oct 14, 2022 12:39pm Oct 14, 2022 12:39pm
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting PatienceFx
Disliked
{quote} did not set a starting stop {image}
Ignored
You want it to set first SL automatically, too?
I didn't do that - I assumed the position already has SL.
 
1
  • Post #55,224
  • Quote
  • Oct 14, 2022 12:47pm Oct 14, 2022 12:47pm
  •  PatienceFx
  • Joined Jun 2013 | Status: enjoying life | 14,985 Posts | Online Now
Quoting BestTraderEv
Disliked
{quote} You want it to set first SL automatically, too? I didn't do that - I assumed the position already has SL.
Ignored
yes there should be a starting stop to protect from surprises
Indicators on my chart help me guess the trade they do not guarantee result
 
1
  • Post #55,225
  • Quote
  • Edited 1:12pm Oct 14, 2022 12:50pm | Edited 1:12pm
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting PatienceFx
Disliked
{quote} yes there should be a starting stop to protect from surprises
Ignored
Sorry, in a moment, I forgot one thing, LOL!

Working now!
Attached File(s)
File Type: mq4 PatienceFx_TrailingStop_EA.mq4   12 KB | 74 downloads
 
1
  • Post #55,226
  • Quote
  • Oct 14, 2022 12:51pm Oct 14, 2022 12:51pm
  •  PatienceFx
  • Joined Jun 2013 | Status: enjoying life | 14,985 Posts | Online Now
Quoting PatienceFx
Disliked
{quote} yes there should be a starting stop to protect from surprises
Ignored
BOJ should not be allowed to give me surprises
Attached Image (click to enlarge)
Click to Enlarge

Name: USDJPYM1.png
Size: 15 KB
Indicators on my chart help me guess the trade they do not guarantee result
 
 
  • Post #55,227
  • Quote
  • Oct 14, 2022 1:03pm Oct 14, 2022 1:03pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 1,053 Posts | Online Now
Quoting walesamuel
Disliked
{quote} Hi @Bluerain, I checked the indicator, though it gives alert but still doesn't have buffer. If you could please share the buffer for sell and buy as this was not contained under colour. Many thanks
Ignored
it has only 1 buffer which is filled with -1 and 1.

#property indicator_buffers 1

You have to check previous buffer value and current buffer value and see if value has changed.
if changed from -1 to 1, it is buy signal.
if changed from 1 to -1, it is sell signal.


if (ind_buffer1[whichBar+1] == -1 && ind_buffer1[whichBar] == 1)
doAlert(whichBar,"Flatliner Buy Signal ");
if (ind_buffer1[whichBar+1] == 1 && ind_buffer1[whichBar] == -1)
doAlert(whichBar,"Flatliner Sell Signal ");
 
 
  • Post #55,228
  • Quote
  • Oct 14, 2022 1:13pm Oct 14, 2022 1:13pm
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting PatienceFx
Disliked
{quote} BOJ should not be allowed to give me surprises {image}
Ignored
Tested, working.
Attached File(s)
File Type: mq4 PatienceFx_TrailingStop_EA.mq4   12 KB | 76 downloads
 
 
  • Post #55,229
  • Quote
  • Oct 14, 2022 2:31pm Oct 14, 2022 2:31pm
  •  walesamuel
  • | Joined May 2018 | Status: Member | 48 Posts
Quoting BlueRain
Disliked
{quote} it has only 1 buffer which is filled with -1 and 1. #property indicator_buffers 1 You have to check previous buffer value and current buffer value and see if value has changed. if changed from -1 to 1, it is buy signal. if changed from 1 to -1, it is sell signal. if (ind_buffer1[whichBar+1] == -1 && ind_buffer1[whichBar] == 1) doAlert(whichBar,"Flatliner Buy Signal "); if (ind_buffer1[whichBar+1] == 1 && ind_buffer1[whichBar] == -1) doAlert(whichBar,"Flatliner Sell Signal ");
Ignored
Many thanks for the explanation. I'll go over it.
If it works for you, don't forget to help others.
 
 
  • Post #55,230
  • Quote
  • Oct 14, 2022 2:51pm Oct 14, 2022 2:51pm
  •  solorik
  • | Joined Mar 2011 | Status: Member | 159 Posts
Dears
i there any basket trading EA
that's can open a trade of all pairs of certain currency
for example :
Buy USD
so it will
sell EURUSD
sell GBPUSD
sell AUDUSD
sell NZDUSD
buy USDCAD
buy USDCHF
buy USDCHF
 
 
  • Post #55,231
  • Quote
  • Oct 14, 2022 2:58pm Oct 14, 2022 2:58pm
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
Quoting solorik
Disliked
Dears i there any basket trading EA that's can open a trade of all pairs of certain currency for example : Buy USD so it will sell EURUSD sell GBPUSD sell AUDUSD sell NZDUSD buy USDCAD buy USDCHF buy USDCHF
Ignored
Maybe this?
https://www.forexfactory.com/thread/...basket-trading
Or this:
https://www.forexfactory.com/thread/...sket-trader-ea
Or Google:
"basket trading EA mq4 site:www.forexfactory.com"
 
 
  • Post #55,232
  • Quote
  • Oct 14, 2022 6:55pm Oct 14, 2022 6:55pm
  •  solorik
  • | Joined Mar 2011 | Status: Member | 159 Posts
Quoting BestTraderEv
Disliked
{quote} Maybe this? https://www.forexfactory.com/thread/...basket-trading Or this: https://www.forexfactory.com/thread/...sket-trader-ea Or Google: "basket trading EA mq4 site:www.forexfactory.com"
Ignored
thanks sir, but unfortunately non of them worked with me
 
 
  • Post #55,233
  • Quote
  • Oct 14, 2022 9:17pm Oct 14, 2022 9:17pm
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,959 Posts
Hii.. Any one has the point and figure indicator latest like this.. I seen this from investing dot com.... Previously seen xo indicator but not good working like this... In case if any one create for me it would be nice. In case if they want any charges too I can try my best level... I can give but I want this indicator...
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot_2022-10-15-06-36-37-544_org.telegram.messenger.jpg
Size: 457 KB
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #55,234
  • Quote
  • Oct 14, 2022 9:21pm Oct 14, 2022 9:21pm
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,959 Posts
Quoting Slingshots1
Disliked
{quote} Hi Best please i need 10pips on daily basis between these 2vertical lines is it possible?Based on 5minutes chart these 2vertical lines represent the start of trend direction from LONDON TO NEW YORK ,the first vertical line stands for 10am as soon as the line form its time for trend to start the real move for the day depending on the currency, for instance GBPUSD or EURUSD, I use LWMA set at 80 to guide the trend move if price is going up above 80 lwma at after 10am a capturable 10pips is definite, however an arrow set at 5/80 in the input...
Ignored
Hii... Is this vh indicator working good? Possible to predict the expecting target?? I failed to use this so left it...
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #55,235
  • Quote
  • Oct 15, 2022 2:48am Oct 15, 2022 2:48am
  •  kinosan80
  • | Joined Oct 2022 | Status: Junior Member | 2 Posts
Quoting BestTraderEv
Disliked
{quote} Wait, there was a small bug, now corrected: {file} Both lines now plotting properly.
Ignored
Hi Sir,
I have encountered an array out of range message when try to backtest with EA. Tried in two different broker will have the same error message. May i know what is the suggestion to fix this?

Thanks

regards
Kino
Attached Image (click to enlarge)
Click to Enlarge

Name: arrayError.jpg
Size: 37 KB
 
 
  • Post #55,236
  • Quote
  • Oct 15, 2022 2:56am Oct 15, 2022 2:56am
  •  sol4live
  • | Joined Jan 2009 | Status: Member | 188 Posts
Quoting BestTraderEv
Disliked
{quote} Ok, got the idea, here it is! {file}
Ignored
Happy weekend to you BestTraderEv,

please the ea works fine with stoploss. But could you PLEASE make the BE work without stoploss (i.e when stoploss is set to 0)
Attached File(s)
File Type: mq4 SL_TP_BE_in_Currency EA.mq4   4 KB | 62 downloads
Bjos
 
 
  • Post #55,237
  • Quote
  • Edited 5:32am Oct 15, 2022 5:10am | Edited 5:32am
  •  tito5615104
  • | Joined Oct 2010 | Status: Member | 170 Posts
morning everyone, i am asking about if any one have a scripte that i put in stop loss by $ and stop loss point then it calculate the lot size automatic mt4 platform?
For Example, assuming price now @ 1.1500 then i will buy and stop loss 60 $ stop loss @1.1470
good luck
 
 
  • Post #55,238
  • Quote
  • Oct 15, 2022 7:43am Oct 15, 2022 7:43am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,355 Posts
I have introduced a safety condition so that the EA doesn't try to modify the SL if Ask or Bid doesn't allow it.
Attached File(s)
File Type: mq4 PatienceFx_TrailingStop_EA.mq4   13 KB | 67 downloads
 
1
  • Post #55,239
  • Quote
  • Oct 15, 2022 8:15am Oct 15, 2022 8:15am
  •  Slingshots1
  • Joined Feb 2012 | Status: Member | 1,269 Posts
Quoting BestTraderEv
Disliked
I have introduced a safety condition so that the EA doesn't try to modify the SL if Ask or Bid doesn't allow it. {file}
Ignored
Hello Best hope you're having a Kool weekend,please if it's not too much can the new 2x5 indicator created for me which is performing wonderfully on all time frames( unexpectedly)have an automatic trade executor for the set up . ... .Set up . .. Entry. . arrow appears for a BUY trade only, normal take profit of 10pips, if trend direction for the day is UP, it should not take any SELL and vise versa .Regards
 
 
  • Post #55,240
  • Quote
  • Oct 15, 2022 8:29am Oct 15, 2022 8:29am
  •  fantores
  • | Joined Aug 2013 | Status: Junior Member | 1 Post
Hi All I have a polite question to You. I am using XTB Broker and it stopped using mt4 and changed it for X Station 5. If anyone come accross with idea is it possible to use on this platform any EA?
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 27602761Page 276227632764 2922
    • 1 Page 2762 2922
31 traders viewing now, 3 are members:
Nod32
,
Nits
,
khelemen
  • 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