I need an EA that read signal from a csv file

MQL4 Asesores Expertos

Trabajo finalizado

Plazo de ejecución 115 días

Tarea técnica

I need an Expert Advisor that works in strategy tester and in live trading on a Metatrader 4 terminal. I would like this job to be done through the "Job service".

The task will be to read signal from a csv file and to execute orders when one or several new signals are detected. The file is updated daily but the EA must performs its check every 5 minutes.

How it works ?

Let's take an example to see how it works.

Content of the file the 2015-01-01:

Date,Pair,PriceLimit,PositionType

File is empty, there is no signal and no position that need to be open.

Content of the file the 2015-01-02:

Date,Pair,PriceLimit,PositionType
2015-01-02,EURUSD,1.17545,1
2015-01-02,EURGBP,0.77877,-1
2015-01-02,USDJPY,120.132,1

The 2nd of January the EA must open 3 positions :

  • long EURUSD with limit at $1.17545 plus an offset
  • short EURGBP with limit at $0.77877 plus an offset
  • long USDJPY with limit at $120.132 plus an offset

The offset is a value that comes from an external variable. It can be positive or negative depending on the type of the position : long or short.

Lot size must be calculated so that the margin is equal to 1/3 of the balance the EA can trade with (see bellow in Volume Of The Position).

Content of the file the 2015-01-15:

Date,Pair,PriceLimit,PositionType
2015-01-02,EURUSD,1.17545,1
2015-01-02,EURGBP,0.77877,-1
2015-01-02,USDJPY,120.132,1
2015-01-15,EURUSD,1.18325,1
2015-01-15,EURGBP,0.79877,-1
2015-01-15,USDCHF,1.06877,-1

The 15th of January the EA :

  • must close the USDJPY (long) position at market price
  • and open a new USDCHF (short) position with a limit at 1.06877 plus an offset
  • the EURUSD (long) and EURGBP (short) positions remains open

Same rules as above apply for the offset and the lot size.

Content of the file the 2015-01-19:

Date,Pair,PriceLimit,PositionType
2015-01-02,EURUSD,1.17545,1
2015-01-02,EURGBP,0.77877,-1
2015-01-02,USDJPY,120.132,1
2015-01-15,EURUSD,1.18325,1
2015-01-15,EURGBP,0.79877,-1
2015-01-15,USDCHF,1.06877,-1
2015-01-19,AUDUSD,0.82287,1
2015-01-19,USDJPY,119.225,-1
2015-01-19,USDCHF,0.99885,-1

The 19th of january the EA :

  • close the EURUSD and EURGBP position at market price
  • and open two new positions : AUDUSD (long) and USDJPY (short) with 1/3 of the capital each and at limited price +/- offset (same as above)
  • the USDCHF (short) position remains open

Same rules as above apply for the offset and the lot size.

Number of positions

In this exemple the file structure correspond to a strategy that trade with 3 positions at a time but the EA must be able to handle a file with only one position at a time, or with two positions at a time or even with four positions at a time. No more.

Exemple with a strategy that trade with only one position at a time :

Date,Pair,PriceLimit,PositionType
2015-01-02,EURUSD,1.17545,1
2015-01-15,EURGBP,0.79877,-1
2015-01-19,USDCHF,0.99885,-1

The currency pair can be the same and the signal alternate between long and short:

Date,Pair,PriceLimit,PositionType
2015-01-02,EURUSD,1.17545,1
2015-01-15,EURUSD,1.20877,-1
2015-01-19,EURUSD,1.15885,1

Exemple with a strategy that trade with 2 positions:

Date,Pair,PriceLimit,PositionType
2015-01-02,EURUSD,1.17545,1
2015-01-02,EURGBP,0.77877,-1
2015-01-15,EURUSD,1.18325,1
2015-01-15,USDCHF,1.06877,-1
2015-01-19,AUDUSD,0.82287,1
2015-01-19,USDJPY,119.225,-1

And so on for the strategy that trade with four positions.

What is a signal ?

A signal is an information in the file that point to a currency pair (i.e. EURUSD) for which no position is actually open in the direction specify by the column PositionType (long : 1 or short : -1).

Opening And Closing A Position

One position must be open if a signal is detected for the day of the current bar (it must works in Strategy Tester with a csv file that contain the history of signals over several years)

Opening a new position would automatically close an existing position, except for the n first positions opened after the EA is launch.

Opening a new position and closing an existing position should trigger a popup window with trading information.

The order to open a position (long or short) must be done at a limited price : the limited price is calculated from the column "PriceLimit" of the csv file plus or minus an offset that should be settable as an external variable. The offset must be positive of negative whether the position type is long or short.

Example :

  • if PriceLimit to open a short position on EURUSD is $1.17555 and the offset is 10pips then the price limit must be $1.17545 (i.e. 1.17555 - 10) 
  • if PriceLimit to open a long position on EURUSD is $1.17555 and the offset is 10pips then the price limit must be $1.17565 (i.e. 1.17565 + 10)

The order to close a position (long or short) must be done at market price.

There is no take profit nor stop loss.

All opened position must be closed automatically when EA is shut down.

If an error occurs when opening or closing a position, the EA should display a window with the error information and retry the attempt.

Volume Of The Position

I would like an external variable that define the % of the account balance the EA can use to open positions.

Example :

My account balance is $1000 and the variable is set to 80% so the EA must have $800 to trade with.

Total margin must be equal to 100% of the account balance the EA can trade with (i.e. $800).

The size of each position must depend of the number of position in the strategy (i.e. in the file).

  • for a one position strategy the margin of the position must correspond to 100% of the account balance the EA can trade with (i.e. $800 * 1)
  • for a two positions strategy the margin of each must correspond to 50% of the account balance the EA can trade with (i.e. $800 * 0.5)
  • for a tree positions strategy the margin of each must correspond to 33.33% of the account balance the EA can trade with (i.e. $800 * 0.33)
  • for a four position strategy the margin of each must correspond to 25% of the account balance the EA can trade with (i.e. $800 * 0.25)

Error Handling

The EA should control only its own positions and shouldn't deal with positions opened manually or by other EAs.

If there are any errors, it must print a message describing the error.

Important

The EA should verify the csv file for new signal every 5 minutes.

The EA should be able to run in strategy tester with a csv file that contain several years of signal. 

The EA should be able to work with multi-currency, includind the BTC/USD pair at FXOpen.

When runing the EA on a real account, it should create a button on the chart, which permits trading.

Few Questions

How the program will be checked? Will you get a demo version?

Will you get the source code of the program, and if so, when - after the complete payment or right away?

How long will be the technical support and on what terms? Will the fix of errors (discrepancies from the algorithm) be done free of charge? How much will small improvements cost?

What electronic payment systems does the developer use? is euro accepted for currency ?

Han respondido

1
Desarrollador 1
Evaluación
(180)
Proyectos
301
30%
Arbitraje
54
24% / 54%
Caducado
99
33%
Trabaja
2
Desarrollador 2
Evaluación
(14)
Proyectos
27
22%
Arbitraje
18
6% / 89%
Caducado
8
30%
Libre
3
Desarrollador 3
Evaluación
(42)
Proyectos
70
43%
Arbitraje
6
33% / 50%
Caducado
19
27%
Libre
4
Desarrollador 4
Evaluación
(128)
Proyectos
236
65%
Arbitraje
30
37% / 23%
Caducado
49
21%
Libre
5
Desarrollador 5
Evaluación
(259)
Proyectos
533
50%
Arbitraje
55
40% / 36%
Caducado
224
42%
Trabajando
6
Desarrollador 6
Evaluación
(221)
Proyectos
369
66%
Arbitraje
10
50% / 0%
Caducado
46
12%
Libre
7
Desarrollador 7
Evaluación
(584)
Proyectos
911
46%
Arbitraje
31
39% / 29%
Caducado
93
10%
Trabaja
8
Desarrollador 8
Evaluación
(169)
Proyectos
218
50%
Arbitraje
6
17% / 67%
Caducado
11
5%
Libre
9
Desarrollador 9
Evaluación
(1)
Proyectos
4
0%
Arbitraje
0
Caducado
2
50%
Libre
10
Desarrollador 10
Evaluación
(59)
Proyectos
182
55%
Arbitraje
31
45% / 16%
Caducado
103
57%
Libre
11
Desarrollador 11
Evaluación
Proyectos
1
0%
Arbitraje
0
Caducado
0
Libre
Solicitudes similares
PROP FIRM EA 4500 - 7000 USD
Hi, i need a Expert Advisor, that can pass prop firm Challenges. A bit of martingale is OK (max. 8 levels) Profit 10% Max Drawdown (DD) 10% Max Daily Loss 4% All trades with SL NO trades during and after high impact news NO trades during Weekend Profitable backtest from eentire history Trades Forex (If you already have a finished EA, send me the BACKTEST I will only ENTERTAIN people with sample ea from previous
Hi, I need a mt5 EA that can track the balance and equity of my account, and show it by magic number also. Ideally it will be able to show the graph on a blank currency chart when the EA is loaded to it. It should also show some basic stats like "max DD%/$ today" "max DD%/$ yesterday" "max DD all time". Maybe we can have tick boxes for each magic number to add/remove them from the graph visual. Is this possible
Ciao, le caratteristiche del mio sistema di trading, sono le seguenti. In allegato il segnale di ingresso a mercato che l'expert dovrà fare su un time frame D1 o W1. Gli asset sono 28 e il segnale sarà BUY o SELL nella direzione del trend. Lavoro con leva 1/500 e ogni volta che l'expert entrerà a mercato, ho la necessità di generare una griglia a MARTINGALA di supporto alla direzione del trend. La gestione delle
An expert in trading i desire something that will make a change in trading industry,something that will be of help to all the Forex trading beginners.Because that's my aim,an aim to help all those that do struggle to trade Forex. many traders be it professionals or non professionals sometimes do struggle to make daily profits,so i thought and said,why not help them
I have a task for creating an EA, which will trade based on predefined levels. Also having time-trigger and time restriction. 1.Let me first mention that expected time for this task is about 10-18days for total completion and payment confirmation. I have right now small windows of time during the day when I could pay attention to this EA. But honestly, I believe we shall manage for 4-5 days+ 3-5 working days of
I'm looking for someone who has experience in takepropips management and Donchian Indiciator, I need settings that automatically take over signals trading It is important that someone already uses the software, as it is very complex
Hello, I am seeking a skilled developer experienced in MetaTrader 5 (MT5) programming to assist me in converting an existing MetaTrader 4 (MT4) Expert Advisor (EA) to MT5. only professional to apply
I need a very good programer a developer that's perfect in building a Telegram signal copy trade Bot very well, that has done about 100 project successfully, please if you don't know how to build this telegram signal copy trade bot don't apply for this project, if you know that you will not start quickly don't apply. I want you to build me a smart Telegram signal copy trade Bot that has subscriber dashboard, that
المطلوب تحويل استراتيجية مكونة الموفينجات الى اكسبيرت تداول ألى او نصف ألى بتم تحديد ذلك من الاعدادات مسبقا 1-الاكسبيرت يدخل تحديدا 3 انواع من الصفقات مع الاتجاه كل صفقة بشروط محددة عن طريق استخدام موفينج او اكثر من الموفينجات 2-ويدخل ايضا صفقتين ضد الاتجاه كل صفقة لها شروط محدده ايضا عن طريق استخدام موفينج او اكثر من الموفينجات 3-الموفينجات التى تتكون منها الاستراتيجية هى واحده فقط ولكن يتم توظيف احدهما او اكثر على
Hello i need to be able to create an EA / Indicator that when a trade reaches TP a screenshot is taken of the history of that trade showing the open price, TP and the profit amount, i then need this screenshot to be sent to Telegram

Información sobre el proyecto

Presupuesto
30 - 50 USD
Para el ejecutor
27 - 45 USD
Plazo límite de ejecución
de 5 a 10 día(s)