EA trailing stop atr

  • Tüm siparişler
  • Kurallar
Bir alım satım robotunun nasıl sipariş edileceğini izleyin
Bir sipariş göndermeden veya uygulamadan önce Kuralları okuyun
MQL5 ve MQL4'te Alım Satım Robotu Nasıl Sipariş Edilir?
Bir robot sipariş etmek için örnek Gereklilikler Spesifikasyonu'na bakın
Kategorideki yeni siparişler:
50+ USD
Create an EA out of an proprietary indicator
30+ USD
Modification of Existing Dashboard
30+ USD
Modification in EA
30+ USD
Binance copy trade
30 - 75 USD
I want to modify strategies, to be able to test it over a longer time with "PYTHON" and create a bot that can trade automatically on Binance Futures
30+ USD
Build a dashboard in dual mode ( EA and Alerts ) only
30+ USD
30+ USD
Adicionar 2 funções no EA MQL5
30+ USD
Need to create a simple MT5 Robot based on a simple strategy
30 - 50 USD
Writing of an Expert Advisor

ATR Trailing Stop EA and some

2021.07.23 MQL4 Göstergeler Uzmanlar Forex
  • Açıklama

Spesifikasyon

What i need is a very simple extension of already existing code. This shall be seperated into 2 projects:

1. Chandelier Exit EA

Take the existing code which can found online for a Chandelier Exit indicator. Paste it into an EA and give me the option to set the following external: Magic number, ATR peroid, K(number of multiples). Please take into account that in short cases the EA needs to account for the spread and add it. The most important is that the EA can set the stop automatically by getting the ticket number from the open trades with a for loop or whatever. The Magic number which is an external should reflect the fact that only trades with that Magic are edited.

If you understand Python, the Formula for the Chandelier Exit :

def CHANDELIER(
cls,
ohlc: DataFrame,
short_period: int = 22,
long_period: int = 22,
k: int = 3,
) -> DataFrame:
"""
Chandelier Exit sets a trailing stop-loss based on the Average True Range (ATR).

The indicator is designed to keep traders in a trend and prevent an early exit as long as the trend extends.

Typically, the Chandelier Exit will be above prices during a downtrend and below prices during an uptrend.
"""

l = pd.Series(
ohlc["high"].rolling(window=long_period).max() - cls.ATR(ohlc, 22) * k,
name="Long.",
)
s = pd.Series(
ohlc["low"].rolling(window=short_period).min() + cls.ATR(ohlc, 22) * k,
name="Short.",
)


2. Multi peroid Chandelier Exit EA

The second part will be to build an other version of this EA which follows these rules:

"ATR - (Average True Range) is one of the volatility indicators; the greater the value, the higher the average volatility over the specified time period (of the indicator); measured in points. Trailing by ATR in most cases allows to change the stop loss according to ("adequately", "adaptively") the price behavior type - at high volatility (visible spikes) the price is "let go", when "marking time" it is kept "tighter". The trailing uses 2 ATRs, that are supposed to have different periods - one short (e.g. 5), the other - long (e.g. 20). The calculation of the stop loss always uses the greater value of the 2 ATRs - this is done in order to prevent several low-volatility bars in a row (for example, prior to news release) from moving the stop loss too close to the current price."


In short add another Peroid which is also an extern and save it as another Version.

Under the Link:

https://www.mql5.com/en/code/7108

you will find the code for part 2 called: 6. Trailing by ATR.

All rules from above also apply to this EA with the Extension.


In my opinon the only real thing you need to do is add a for loop which selctes for the Ticket number and then implement the code i referenced here. If thats not the case please explain me why in your application. And ofc i will need the sourcecode to later make some changes.

Dosyalar:

MQ4
TrailingByATR.mq4
8.1 Kb

Yanıtlandı

1
Geliştirici 1
2021.07.23
Derecelendirme
4.88
(41)
Projeler
56
38%
Arabuluculuk
5
40% / 20%
Süresi dolan
7
13%
Çalışma
2
Geliştirici 2
2021.07.23
Derecelendirme
4.85
(167)
Projeler
200
30%
Arabuluculuk
24
38% / 46%
Süresi dolan
12
6%
Ücretsiz
3
Geliştirici 3
2021.07.23
Derecelendirme
4.93
(167)
Projeler
254
31%
Arabuluculuk
55
33% / 22%
Süresi dolan
35
14%
Meşgul
4
Geliştirici 4
2021.07.23
Derecelendirme
0
Projeler
0
0%
Arabuluculuk
1
0% / 100%
Süresi dolan
0
Ücretsiz
5
Geliştirici 5
2021.07.24
Derecelendirme
4.81
(86)
Projeler
96
35%
Arabuluculuk
4
50% / 25%
Süresi dolan
5
5%
Çalışma
6
Geliştirici 6
2021.07.26
Derecelendirme
5
(123)
Projeler
131
70%
Arabuluculuk
1
100% / 0%
Süresi dolan
0
Çalışma
7
Geliştirici 7
2021.08.06
Derecelendirme
4.84
(493)
Projeler
848
50%
Arabuluculuk
284
60% / 24%
Süresi dolan
116
14%
Çalışma
Benzer siparişler
MT5 EA to be developed from VWAP indicator on trading view with deviation bands. 50 - 100 USD
Need a developer to code a MT5 EA which would have the same indicator as the VWAP indicator on trading view with the upper and lower deviation bands. Buy and Sell entry points determined by price crossing the dynamic deviation bands with from the VWAP. other standard details in specs to follow. Would like the addition of a news filter and a performance panel tracking daily, weekly, monthly and total profit and loss
Seeking FXDREEMA specialist who can take indicators I already have and reconfigure them to provide buffers which I can utilize in FXDREEMA. Sound possible? 30 - 45 USD
My request is rather simple but will be continuous. In other words, this can mean continuous development. I have various buffers I seek to use that I cannot...such as arrows, Pitchforks, and creation of alerts that I would like to consolidate. I cannot do this without being able to get buffers to use. Since I do not code, and have tried to follow directions through the website, I have not been able to find ways to
Add Break Even and Trailing Stop to existing EA 40 - 60 USD
Goal is to add functionality of Break even and Trailing stop to existing EA. EA works on Forex (maybe works on other markets too). Code of EA is attached. The EA was free - available for everybody. The optimization of EA works a little bit different. The full process of Optimization works in 4 runs . (Firsly you do run 1, then run 2, then 3 and the last is run 4). And TP and SL is defined in 3 runs. Generally
مستشار خبير يعتمد علئ الدعم والمقاومة والاخر يعتمد علئ الترند 50+ USD
اريد تحويل مؤشر دعم ومقاومة الئ خبير ايذا اغلق فوق المقاومة وايذا اغلق تحت الأرض التي فية لها خاصية ترلينق و كذالك وقف وكذالك يكون فية بعض بعض المحاور وشكر "لكم والمؤشر الاخر اريد تحوليه لخبير يعتمد علئ الترند
Looking for a developer with experienced in forex to create a support and resistance indicator for MT4 and MT5. Further Specs in the Description Box. 30 - 60 USD
The first support and resistance are major support and resistance they should be drawn based on the daily timeframe and the same levels should be visible on all time frames all the way to 1 minute timeframe. the Second Support and Resistance levels are MINOR S/R Levels and are drawn based on the 15 minutes timeframe. also the same levels should be visible on any timeframe. this means that when the indicator is
Tundebob 30 - 60 USD
I would like to have an experienced & well talented developer to develop a smart MQL5 EA that's going to base majorly on 2 indicators (super trend and an option to select from 4 different periods of Exponential Moving Average). The EA must be able to trade Forex, Crypto and Indices automatically, open and close positions based on the "Buy & Sell" signals given by the Super-Trend indicator. The EA should provide the
Order execution from .CSV file 30+ USD
I have a trade_signal.csv file which is updating every 5-10 second. There is one column and five rows of numbers. I like to execute buy and sell orders based on the last digit in the .csv file. If the last number is 2, than close all trades and open buy order. If the last number is 4, than close all trades and open sell order. Only one trade per bar is allowed. The EA has to check the last number by every second in
NV and RADAR 30 - 200 USD
حدد مواصفات المتطلبات الخاصة بك هنا نقطة تلو الأخرى. حاول وصف متطلباتك بشكل موجز وواضح ، حتى يتمكن المطور المحتمل لديك من تقييم مدى تعقيدها وتكلفتها بشكل صحيح ، بالإضافة إلى وقت التنفيذ المطلوب. سيؤدي الوصف السيئ أو العام جدًا إلى تجاهل طلبك ، أو ستقradamhamadضي الكثير من الوقت في التفاوض على التفاصيل مع كل متقدم. تذكر: من الأفضل قضاء ثلاثين دقيقة لإعداد نص جيد بدلاً من إضاعة ساعات وأيام لحل سوء التفاهم بعد إبرام
Fix the Python script for conversion of FXT format 30+ USD
Hi we need a conversion. can we show a Python strategy on our react page chart? if yes, we will need help in doing some conversion Kindly bid if you are an expert at this
An existing EA for correction, modification and addition (Pivot Points) 80 - 100 USD
We have an existing Martingale EA as attached. Please see below required correction, modification and addition of this EA as stated below points A. Correction 1. First TP was not consistent on 6pips or doesnt follow on what was indicated in the input settings. (Note: back test was okay but when it was in demo account, the first TP was not consistent) B. Modification 1. Moving Average should have enable/disable in

Proje bilgisi

Bütçe
30 - 50 USD
Geliştirici için
27 - 45 USD
Son tarihler
başlangıç0bitiş1gün
Müşteriyi derecelendirin
Tam açıklama