EA using 2 Super Trends

Specifiche

1.  General idea - I'd like an EA that is capable of using values of two Super Trends to open trades (super trend equation is High+Low/2) + or - (Multiplier * ATR)) .  You can call one Super Trend long, and the Super Trend short, long being the Super Trend that is farther from the current price, and the short one being closer to the current price.  The buy or sell order would be placed once both super trends are on the same side on the current candle.

2.  Trade trigger - The previous bar close must be > both the long and the short Super Trend for a buy.  For a sell, the previous close must be < both the long and short. No more than 1 order placed per bar.

3.  Inputs - I will need inputs for the ATR periods (2) and multipliers (2), number of maximum open orders, take profit in points, order size in lots, and magic number for multiple pairs.  

4.  Trade management - Open orders at market only, no stop or limit orders.  Stop loss/trailing stop tied to "Long" (farther away) super trend and trail as it increase/decreases.  No time limit on closing trade, GTC.

5.  Other comments - I already have an indicator that I can put on my chart, so the hatching is not necessary, I just need something that will place the trade and minor money management.  If it helps, I can send you the mq5 code for what I currently have for an indicator, this should cover the basic coding for the swapping from buy/sell, ATR, and main equation for the current bar.  You'd have to copy it of course and change the variable names I'm guessing for the long and short super trends.         


Example

Con risposta

1
Sviluppatore 1
Valutazioni
(5)
Progetti
9
11%
Arbitraggio
5
40% / 60%
In ritardo
1
11%
Gratuito
2
Sviluppatore 2
Valutazioni
(71)
Progetti
103
20%
Arbitraggio
6
0% / 83%
In ritardo
3
3%
Gratuito
3
Sviluppatore 3
Valutazioni
(42)
Progetti
62
8%
Arbitraggio
12
58% / 42%
In ritardo
1
2%
Gratuito
4
Sviluppatore 4
Valutazioni
(2411)
Progetti
3028
66%
Arbitraggio
77
48% / 14%
In ritardo
340
11%
Gratuito
5
Sviluppatore 5
Valutazioni
(195)
Progetti
395
28%
Arbitraggio
155
20% / 52%
In ritardo
112
28%
Gratuito
6
Sviluppatore 6
Valutazioni
(327)
Progetti
346
71%
Arbitraggio
4
100% / 0%
In ritardo
1
0%
Caricato
7
Sviluppatore 7
Valutazioni
(161)
Progetti
217
30%
Arbitraggio
4
50% / 25%
In ritardo
4
2%
Gratuito
8
Sviluppatore 8
Valutazioni
(2067)
Progetti
2625
62%
Arbitraggio
113
45% / 26%
In ritardo
418
16%
Caricato
9
Sviluppatore 9
Valutazioni
(472)
Progetti
501
52%
Arbitraggio
10
60% / 20%
In ritardo
3
1%
Gratuito
10
Sviluppatore 10
Valutazioni
(194)
Progetti
198
27%
Arbitraggio
0
In ritardo
3
2%
Gratuito
11
Sviluppatore 11
Valutazioni
(116)
Progetti
137
36%
Arbitraggio
15
13% / 67%
In ritardo
9
7%
Gratuito
12
Sviluppatore 12
Valutazioni
(769)
Progetti
1033
44%
Arbitraggio
50
8% / 50%
In ritardo
117
11%
Gratuito
13
Sviluppatore 13
Valutazioni
(263)
Progetti
537
50%
Arbitraggio
55
40% / 36%
In ritardo
224
42%
In elaborazione
14
Sviluppatore 14
Valutazioni
(100)
Progetti
125
23%
Arbitraggio
12
0% / 75%
In ritardo
22
18%
Gratuito
15
Sviluppatore 15
Valutazioni
Progetti
0
0%
Arbitraggio
1
0% / 100%
In ritardo
0
Gratuito
16
Sviluppatore 16
Valutazioni
(76)
Progetti
130
49%
Arbitraggio
5
80% / 0%
In ritardo
6
5%
Gratuito
17
Sviluppatore 17
Valutazioni
(186)
Progetti
261
69%
Arbitraggio
12
33% / 67%
In ritardo
16
6%
Gratuito
18
Sviluppatore 18
Valutazioni
(563)
Progetti
931
47%
Arbitraggio
301
59% / 25%
In ritardo
123
13%
In elaborazione
19
Sviluppatore 19
Valutazioni
(87)
Progetti
114
26%
Arbitraggio
7
29% / 57%
In ritardo
5
4%
Gratuito
20
Sviluppatore 20
Valutazioni
(41)
Progetti
88
14%
Arbitraggio
29
31% / 55%
In ritardo
36
41%
In elaborazione
21
Sviluppatore 21
Valutazioni
(66)
Progetti
143
34%
Arbitraggio
10
10% / 60%
In ritardo
26
18%
Gratuito
Ordini simili
MT5 hft bot 100 - 250 USD
HELLO I AM IN NEED OF HFT TRADING BOT FOR MT5 AND BEFORE WE PROCEEDS YOU MUST SHOW ME HOW YOUR BOT WORK OR SEND ME DEMO VERSION FIRST TO CHECK OUT YOUR BOT WORKING SYSTEM
I already have a Fibonacci based indicator which give precise entry as well as take profit and stop loss levels without repainting. I want to convert this to an EA so as to enable it pick trades automatically. Pay attention to the attached Images for entry and exit description. The EA will be protected with password or any other security protocols. THE EA OUTPUT will be in MQ4 & MQ5
// Define the properties input int ShortPeriod = 12; input int LongPeriod = 26; input double LotSize = 0.1; // OnTick function is called every time there is a price update void OnTick() { double shortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double longMA = iMA(NULL, 0, LongPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double prevShortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 1);
Necesito un bot decente para prueba de fondeo y también cuenta personal, scalp, no grid, no martingale, no practicas prohibidas, algo objetivo, confiable y rentable... 5 Min mínimos de duración por operación, algo ya hecho y bactesteado en cuenta real y de fondeo. Necesito algo agresivo, constante pero que no exponga el capital... prefiero una estrategia de smc
Profit EA 50+ USD
//+------------------------------------------------------------------+ //| SimpleEA.mq4 | //| Generated by MetaEditor | //| https://www.mql5.com/en/docs&nbsp ; | //+------------------------------------------------------------------+ #property strict // Input parameters input double LotSize = 0.1; // Lot size input int MovingAveragePeriod = 50; // MA
I am looking for a day trading bot with over 95% success ratio for gold and forex. It should use all the relevant strategies like moving averages (10, 20, 50), volume, RSI and trend into consideration and then generate buy and sell trade automatically with trailing SL and generate max profit
***** THIS IS FOR MT5 ***** The indicator now makes 5 lines and I use it on US30 It is for NY session and has inputs for times - open and close It creates lines at NY open NY open line 100 point 200 points I want to add 300 pt lines and 400 point lines I want On/off box added for dotted or dashed 50 - 150 - 250 and 350 lines I want alerts when the candles reach the 100 - 200 ect...lines but would love "Push
Active expert 250+ USD
hi, I must do changes to a dashboard with manual input of trader and active expert. Budget 250$ Can do? the budget is correct based on job to do. If you want me to increase the budget you can message me
hey friends, I am looking to build a smart trading robot, for the capital market. He knew how to trade in all the different types of trade. Example - in shares, currencies, index, indices, ETFs, funds, commodities, options, futures and so on. Suitable for trading on all stock exchanges in the world. It will be possible to install the trading robot in the MetaTrader 5 trading software. But it will also be possible to
i Want to convert this Trading View Code to Mt4 Indicator indicator("NEOM Smart Money Concepts ", "NEOM Smart Money Concepts " , overlay = true , max_labels_count = 500 , max_lines_count = 500 , max_boxes_count = 500 , max_bars_back = 500) //-----------------------------------------------------------------------------{ //Constants //-----------------------------------------------------------------------------{ color

Informazioni sul progetto

Budget
100 - 200 USD
Per lo sviluppatore
90 - 180 USD
Scadenze
da 1 a 4 giorno(i)