Expert Advisor using custom indicator together with 2 moving averages cross over and 2 stochastics indicators

指定

1. The idea of the trading system is as follows The system is based on the Binary Destroyer 7.0 which is a custom indicator. Trades are executed when the first only arrow and the stochastics line up in the current trend direction. It only trades the Dow Jones (US30) and only on the 1 minute timeframe.

2. Trend is determined based on the Exponential Moving Average with the specified period of 23 smoothed moving average and 100 simple moving average. However these are built into the Binary Destroyer as a fast ma and slow ma. the first prize would be to call the Binary Destroyer to determine the trend however these settings can also be used. When the 23 smoothed moving average (fast ma) is above the 100 simple moving average (slow ma) then we only look for longs and when the 23 smoothed moving average crosses the 100 simple moving average below we only look for shorts. 

3. Trading Signals:

  • Buy signal: The 12,3,3 must be in the oversold or must have been in the oversold area of 15 this defines the pullback we look for the caveat of the ma cross is that price must never touch the 100 simple moving average, then the green arrow of the Binary Destroyer must paint and at the same time the the 50,24,1 stochastics the main line (blue) must cross the signal line or must already be above the signal line.
  • Sell signal: The 12,3,3 must be in the overbought or must have been in the overbought area of 85 this defines the pullback we look for the caveat of the ma cross is that price must never touch the 100 simple moving average, then the red arrow of the Binary Destroyer must paint and at the same time the the 50,24,1 stochastics the main line (blue) must cross the signal line or must already be below the signal line



4. Positions are closed at a fixed move of 30 pips or on a trailing stop.

5.Positions are opened at the market price as soon as the bar closes and the arrow is solidly painted or on the open of the next bar after the arrow is painted solidly.

6. Additional filters for opening a position:

Once the moving averages has crossed the pullback as defined by the 12,3,3 stochastics price MUST NOT touch the 100 sma when the first arrow paints. Trades are only executed on the first arrow after the moving averages cross it does not trade any other arrows after the first and the next cross is waited for. 

8. Close by Take Profit — during position opening, a Take Profit level is set at a fixed distance from the open price at 30 pips. 

9. Position management 

The trade should be opened with a % risk based on the size of the stop loss. A fixed lot setting can also be added but will not be used as much.

A fixed stop loss and take profit is set at the beginning of 30 pips 

The trade should move to breakeven when the position is in profit between 10-15 pips 

A trailing step should be used ie if it moves 30 pips it should be breakeven already and when it moves 60 pips then the stop will be moved to 30 pips in profit and then position can be closed at say 1:5. 

A partial close will also work nicely with say 5 settings say at 30 it takes 50% off the position then at 60 pips it takes 80% and then at 90 pips it takes the rest of the 20%.

10. Time Filter

We would like to employ a time filter again of say 5 settings would work say between 4am-8am in the morning will be one setting etc. 





T



応答済み

1
開発者 1
評価
(21)
プロジェクト
23
0%
仲裁
6
17% / 83%
期限切れ
2
9%
2
開発者 2
評価
(588)
プロジェクト
920
46%
仲裁
31
39% / 29%
期限切れ
93
10%
仕事中
3
開発者 3
評価
(5)
プロジェクト
9
11%
仲裁
5
40% / 60%
期限切れ
1
11%
4
開発者 4
評価
(42)
プロジェクト
47
30%
仲裁
12
17% / 75%
期限切れ
6
13%
5
開発者 5
評価
(57)
プロジェクト
75
25%
仲裁
9
33% / 56%
期限切れ
8
11%
6
開発者 6
評価
(237)
プロジェクト
419
34%
仲裁
53
36% / 40%
期限切れ
154
37%
多忙
7
開発者 7
評価
(143)
プロジェクト
255
35%
仲裁
12
25% / 58%
期限切れ
42
16%
8
開発者 8
評価
(2423)
プロジェクト
3045
66%
仲裁
77
48% / 14%
期限切れ
340
11%
9
開発者 9
評価
(2078)
プロジェクト
2637
61%
仲裁
113
45% / 26%
期限切れ
418
16%
取り込み中
10
開発者 10
評価
(298)
プロジェクト
427
26%
仲裁
18
61% / 33%
期限切れ
26
6%
11
開発者 11
評価
(15)
プロジェクト
20
15%
仲裁
3
0% / 67%
期限切れ
2
10%
12
開発者 12
評価
(126)
プロジェクト
151
48%
仲裁
6
83% / 17%
期限切れ
2
1%
13
開発者 13
評価
(22)
プロジェクト
30
20%
仲裁
8
63% / 13%
期限切れ
9
30%
類似した注文
1. Combination of Market Profiles on daily basis a) this should be combined if the bell curve is similar to the previous day. Rotational day (volume - standard deviation). b) If breakout, new range should be drawn Conclusion: Market profile should be combined on daily after the market is closed 2. Use Vwap indicator, with 0.5 - slow trend, 1.0 - normal trend, 1.5 fast trend. The stop loss should be under the trend
Make a 10000 plus script trading Expert advisor with detail and make it flawless with no errors no tiny mistakes and make it in mql 5 language. Make it adjustable for it to be able to trade on its own and not be disturbed and make it study the chart and be able to trade any currency pair. I have zero experience and I would just like to copy and paste the code in MetaTrader. Can you make it be compatible with both
Need ea according to stochastic divergence (both hidden and regular) plus candlestick flip .. need for experinced developers to complete my order with 99percent accuracy. So bet for it the budged is fixed and other plugins will be added in the v2
looking for help to get my ibkr automated, i have strategies already built in composer and have JSON for them, i really just need to he setup and explanation on how to maintain it and add new strategies
// 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);
Hello Greetings. I have a custom tradingview strategy I would like to convert to Metatrader 5 ( mt5 ) . I have the source code a and with me. Kindly bid if it is what you can do for me and let discuss about the project. Thanks
I need a AI signal generating bot for forex trading. The bot should operate such that when i put it in a chart it will analyse the market, after several minutes it will display whether the trade is buying or selling. It should display the one minute, five minute,15minute, 30 minute, one hour, 4 hours and daily time frame whether they are buying or selling. If it is buying the arrow should be green and if it is
Using Bollinger Band only. When price closes above upper BB, open Buy. If the length of the candle body that closed above the upper BB is more than Y pips, then do not Buy and remove the EA. Otherwise, continue to open Buy if crosses and close above upper BB and the number of positions is not more than Max No of Positions. The user will choose either Buy or Sell only. When price closes below the lower BB, close all
Hello freelancers here, I need an expert to help me with coding my script which is already working in pinescript, Moreover, i want a system whereby i can sell my trading bot and can give access with a license, I need an expert that can help me with this
hello great developer Can you make a high/low ticker tape on a table for 100 stock symbols? As a symbol makes a high or low throughout the day, it will appear on the table. i will be expecting great developer to bid for this project

プロジェクト情報

予算
50 - 100 USD
開発者用
45 - 90 USD
締め切り
最低 1 最高 14 日