I need a developer to help automate my forex trading strategies

MQL4 Esperti

Specifiche

We are very successful traders looking for software engineers to assist in automating trading strategies for a startup foreign exchange fund that has substantial backing from a family office and seeder fund. The ideal candidates are capable of translating "pseudo-code" algorithms into functioning well-tested software, and are motivated by the opportunity to help build a startup fund as an integral part of the company. We will provide strategies and trade methodology, but your comments and analyses are always welcome, and together we will make decisions on platforms and languages. If you are an ambitious and capable individual, either in school or presently with a job, and your goal is to own and control your own future, this part-time position is a tremendous opportunity to earn equity in a fund.

You will be working directly with me on automating the strategies. I have some programming knowledge, which will allow us to easily communicate and work with one another, but it will ultimately be up to you to implement all facets of the programming. The work will be challenging and require unique and original thinking, with your input and feedback always welcome. Trade methodologies will be laid out in a step by step process. We will take a module approach in constructing the algorithms so that the components will be interchangeable, as well as easily allow for variables and iterations. We will build the algorithms in stages, adding complexity as we go along until we achieve our desired objectives.

Once we have successfully automated our strategies, we will quickly ramp up the fund with substantial capital commitments from a family office and seeder fund. Because of the open ended nature of this project, we are looking for a partner who will receive equity in the management company for their contributions. This equity has vast potential to far exceed any payment that you forego at this time. This is a project that one can do part-time, as we understand the limitations given what we are offering, though we do expect hard work and dedication as this is a very serious endeavor with huge financial implications. Once we have hired a candidate, we will ask that you sign a non-disclosure agreement as well as formalize your compensation package which will be tied to benchmarks and performance. Our ideal candidate will eventually join the firm full-time and become a salaried partner as we look to build this business together and work with likeminded individuals for many years to come. Lastly, phase one of the project is foreign exchange since that is a niche we can quickly capitalize on. However, we do anticipate eventually moving into equites and non-financial software projects for those who have interests beyond foreign exchange. What I am saying is, help us to achieve our objectives and we will do our best to help you achieve yours.
If you are interested in this opportunity, I have a test algorithm along with some questions that I would like you to submit. The algorithm is a simple baseline version of the type of work we will be doing. Please construct it as you see fit and back-test it from January 1, 2017 to May 26, 2017. Once you are finished with the assignment, please send me the final code and we will analyze it, test its viability, and make a decision as to who we will hire.

We are results driven and therefore all candidates will have the same opportunity to prove their merit.

_________________________

This is a sample algorithm that is a very simplified version of the work we will be doing (we will build
upon this layout, so this project is not a wasted effort). It is a fractal candle set-up, meaning that the
same algorithm can be applied to multiple time frames. Our layouts are categorized into sections, each
with various components. Separating components into modules allows us to easily add and subtract
features so that we can quickly iterate existing strategies and build new ones. I laid the strategy out in a
paragraph and below that I set up an outline for how I would approach the build, which is up to you if
you want to follow it. Please include the feature to mark trade entries and exits on the platform’s charts.

This algorithm is for long trades only using one hour charts. We will look to buy pullbacks toward the
open price of closed up one hour candles (signal candle) that are greater than 10 pips
(MinSignalCandlePips) and less than 40 pips (MaxSignalCandlePips), during the next one hour candle.
Once we have entered a trade, we will test various trade management rules, which we should be able to
select from a main menu.
1) The first layer in the process is true/false trade conditions which I call Filters. We
should be able to toggle these filters on and off
a. Is the prior day up
b. Is current day up
c. Has day already moved 80 pips (MaxDayPips variable) from day open price to day
high price

auto; -webkit-text-stroke-width: 0px; d. Is last one hour candle closing price above one hour 50 period moving average
(variable)
2) After the filter conditions have been satisfied, we will then look for an up signal
candle
3) After there is a closed up one hour candle, we will place a bid above that signal
candle’s open price plus a 5 pip band (EntryPips variable*)
4) The failsafe stop is 30 pips (Failsafe variable)
5) The stop loss is below the signal candle low price less a 0 pip band
(StopPipsBelowSignalCandleLow variable)
6) There are 3 different take profits we will test
a. A Multiple of three times (MultipleOfStop variable) the stop loss ((signal candle
open price – signal candle low) * MultipleOfStop)
b. A Trailing stop of the low price of subsequent candles after entry (every time a new
one hour candle closes, the stop moves to a tick below that newly closed candle’s
low price)
c. Trailing stop of 20 pips (TrailingStop variable)
d. Once a one hour candle has closed down after there is a position, we close the
position at the next tick if none of the prior conditions have been met
7) The back-test will be to May 26, 2017 from January 1, 2017
8) The system will look for trades between 2:00 AM EST and 3:00 PM EST
*Variable – should be set up so that they can easily be toggled from a main menu
Baseline Categories (controlled from menu)
1) Starting Amount - $1,000,000
2) Position Size – 10 lots (1 million notional)
3) “Failsafe” Stop – 30 pips (We would stop out of the position at this price point no matter what)
4) Starting Period – January 1, 2017
5) Ending Period – May 26, 2017
6) Long / Short Trades – Long Only
7) Time Period – 1 hour candles
8) Day Start Time – 2:00 AM EST (time it begins looking for trades for that day)
9) Day End Time – 3:00 PM EST (time is stops looking for trades for that day)
Trade Variables (controlled from menu)
1) Entry Bar Variables
a. “MaxSignalCandlePips” - Maximum one hour signal candle size – 40 pips
b. “MinSignalCandlePips” - Minimum one hour signal candle size – 10 pips

2) Entry Pips to add to signal candle open price
a. “EntryPips” - 5
3) Stop Loss
a. “StopPipsBelowSignalCandleLow” variable - 0
4) Take Profit Variable (this is where we get to select the type of take profit the algorithm will use)
a. Take profit type:
i. “MultipleOfStop” – 3 times
ii. Trailing subsequent candle low prices
iii. “TrailingStop” – 20 pips
iv. Close position on one hour down candle – true/false
Trade Filters
1) Is prior day up
2) Is current day up
3) “MaxDayPips”- How many pips for day to be up from open to high to stop looking for trades –
80 pips
4) Is price above 1 hour moving average – 50 period MA
Trade
After all filter conditions are satisfied true, then we look for a trade entry signal
Trade Entry
1) Once we have a one hour up candle, we look to enter on a pullback to the open price of that
candle plus the entry band (prior candle open price plus EntryPips).
2) If the prior candle’s open price plus band is not re-tested during the following one hour, then
there is no trade and we reset the strategy with the open price of the next one hour up candle.
We only want a re-test of the open price within the next hour.
Stop Loss
1) Stop
a. Tick below the entry candle low less the StopPipsBelowSignalCandleLow variable
Take Profit / Exit Trade

 1) Multiple Of Stop
a. MultipleOfStop - 3 times the stop loss ((signal candle open price – signal candle low) *
MultipleOfStop)
2) Trailing stop of subsequent candle low
a. Use a tick below the low of subsequent candle lows after entry
3) Trailing stop
a. TrailingStop – 20 pips
4) Exit at the next tick after there is a down one hour candle if none of the other trade conditions
have been met


IF YOU ARE INTERESTED PLEASE PM US YOUR SKYPE ID



Con risposta

1
Sviluppatore 1
Valutazioni
(589)
Progetti
921
46%
Arbitraggio
31
39% / 29%
In ritardo
93
10%
Gratuito
2
Sviluppatore 2
Valutazioni
(212)
Progetti
246
45%
Arbitraggio
42
10% / 57%
In ritardo
5
2%
Gratuito
3
Sviluppatore 3
Valutazioni
(80)
Progetti
117
67%
Arbitraggio
16
25% / 13%
In ritardo
12
10%
Gratuito
4
Sviluppatore 4
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
5
Sviluppatore 5
Valutazioni
(182)
Progetti
342
42%
Arbitraggio
118
12% / 73%
In ritardo
104
30%
Gratuito
6
Sviluppatore 6
Valutazioni
(44)
Progetti
100
39%
Arbitraggio
17
29% / 47%
In ritardo
32
32%
Gratuito
7
Sviluppatore 7
Valutazioni
(30)
Progetti
52
52%
Arbitraggio
6
0% / 100%
In ritardo
18
35%
Gratuito
8
Sviluppatore 8
Valutazioni
(119)
Progetti
127
41%
Arbitraggio
3
33% / 67%
In ritardo
0
Gratuito
9
Sviluppatore 9
Valutazioni
(91)
Progetti
144
38%
Arbitraggio
67
15% / 48%
In ritardo
55
38%
Gratuito
10
Sviluppatore 10
Valutazioni
(1)
Progetti
1
0%
Arbitraggio
1
0% / 100%
In ritardo
0
Gratuito
Ordini simili
The strategy uses a grid trading system where trades are placed at set intervals (grid levels) and are managed using Bollinger Bands for entry and exit signals. A fixed lot size, trades are managed to comply with maximum spread conditions and specific trading hours, with the possibility of closing trades based on Bollinger Bands signals. The use of Bollinger Bands indicates a focus on volatility-based trading, while
Hi, I would like to create an expert advisor to fully automatic trade in MT4 as below, it should be possible with gold or any currency pairs and need to possible with 2, 3, 4 or 5 after decimal quotes PAROL MA CROSSOVER 1. Magic Number : Customize 2. Take profit in points : Customize 3. Stop loss in points : Customize 4. Strat time in GMT : Customize 5. End time in GMT : Customize (It means no need to open a new
Hi. I will require a MT4 EA with 3 indcators for a specific time frame, certain parameters can be adjusted and should be able to automated trading. 1. RSI 2. EMA EA 3.Trading Volume . 4 & 5 digits can use 1.) 1 RSI . and 2 EMA ( cross over ) 1.1.) All different timeframe can use ( adjustable ). 1.2.) Entry pricing will need to meet at least 2 out of 3 indicators levels. 1.3.) Each indicators can be adjusted. 2.)
Need MT4 EA which will trade based on Round Number and Supertrend. Trading conditions: If buy supertrend is >= lower round number and <= the higher round number, EA will place a buy pending order at the higher round number. If sell supertrend is <= higher round number and >=lower round number, EA will place sell pending order at the lower round number. If the trade is exited because of SL/BE, EA will place another
Hi Everyone, I need a cloud based licensing system to protect my MT4 / MT5 Indicators and Expert advisors Secure an unlimited number of EAs, indicators, and scripts. Create and manage unlimited license keys for secured EAs, indicators, and scripts. Instantly suspend license keys in case of refund. Lock EA/indicator to specific accounts and time frame similar to this
I need a ea 50+ USD
I need an ea for my prop firm challenge 5000usd account. that can execute trade itself with 0.5R risk and at least 1:2 target.Not maximum drawdown 2-3% and can generate monthly return 10 to 20%
Hello Devs! I like to create a new EA based on the below conditions: (Please do not bid if you have no confidence of fulfilling the codes requirements. Thanks!) You can code MT4 or MT5 or both depending on your preference. 1. Different Magic numbers for BUY and SELL 2. Add on time filter for each day individually. Eg: Mon = 00:01-23:59, Tue = 01:00-23:30 etc. (Monday to Sunday) True/false to close all trades at end
Hi, i have a tos script i need converted to Ninja script, but someone who knows both coding. Cant be someone who is just going to paste into chat gpt, it requires more understanding for compatibility
I need an EA which takes confluence of 4 ema on 3 different time frame before taking a trade. Ea should have risk to reward option, option to add xyz pips above stoploss criteria in order to avoid hitting sl due to spreads. Customizable RR to cl9se trade partially when desired RR is reached. Also require source code to get future changes done
I need MT4 and MT5 hedging locker expert advisors that hedge existing trades either with pending or market order hedging trades. With pending hedge trades the entry price may optionally be made to trail the existing open orders. There should be option for a breakeven and trailing of the hedge trade’s stop

Informazioni sul progetto

Budget
999 USD
IVA (22%): 219.78 - 219.78 USD
Totale: 1218.78 - 1218.78 USD
Per lo sviluppatore
899.1 - 899.1 USD
Scadenze
da 1 a 2 giorno(i)