EA to trade bollinger bands

MQL4 전문가

작업 종료됨

실행 시간 10 일

명시

The name of this EA is Bollinger 1

The EA must run on MQ4 platform and open a trade when price approaches a Bollinger band.

Variables found below "Variable Name in Quotes" (Default Setting in parenthesis) Description after parenthesis:

"MOW" (calculated or collected from the system). Represents the minute of the week. 

"MOD" (calculated or collected from the system). Represents the minute of the Day. 

"FirstMOW" (1441) The first minute of the Week trades are authorized to be opened. 1441 should be 12:01 AM Monday 

"FirstMOD" (0) The first minute of the Day trades are authorized to be opened. 0 Disables the function.

"LastMOW" (7200) The last minute of the Week trades are authorized to be opened.

"LastMOD" (1441) The last minute of the Day trades are authorized to be opened. 1441 disables the function.

"CloseMin" (7800) The minute during the week all open trades are closed. 7800 should be 10:00 AM Friday. Chart Time.

"SinceBuy" (10) Minimum number of bars since the low of any bar touched or went below the lower Bollinger Band to enable a LONG opening order.

"SinceSell" (10) Minimum number of bars since the high of any bar touched or went above the upper Bollinger Band to enable a SHORT opening order.

"MinBal" (1,000,000) If the Net Account Value is below this number the EA will only enter new trades for 0.01 Lots. 

"Stop%" (0.25) Stop Loss is sent with the order. A value of 0.25 would have the Stop Loss set at 99.75% of Purchase price on Buy Orders and at 100.25% of Sale price on Sell Orders.

"%Risked" (1) Percentage of the account that will be lost if the trade results in a Stop Loss. With a value of 1 a thousand unit account would lose ten units of the base currency in the account if the trade stopped out at the S/L without slippage. More can be lost if the market gaps. Much more. If the account enters a trade with %Risked at 1 and Stop% at 0.25 the account would be leveraged 4:1 when this trade opens.

"TP%" (2) Take Profit is sent with the order. A value of 2 would have the Take Profit set at 102% of Purchase price on Buy Orders and at 98% of Sale price on Sell Orders.

"Period" (20) Length of the Bollinger Band in bars and based on the bar length selected NOT the chart time frame of the chart the EA is running on.

"Deviations" (3) Deviations of the Bollinger Band to be referenced.

"ApplyTo" (C) Indicates to apply the calculation to closing prices. There should be a few comment lines explaining how to change the application to other values such as (HLC/3)

"TrendLength" (2400) Length in bars of a SMA used to determine the probable direction of the underlying trend. 

"MS" (1) Maximum Spread in pips. The default setting will disable trading 99.9% of the time I need this to be set thoughtfully for each pair.

"EarlyOut" (0) If this is set to 1 any trade entered will be closed when the opposite band is approached.

"Approach" (1.0) This is the distance before the band is touched that the trade is entered. 1.0= 1* "MS" at the close of the last "Period" bars. 

Housekeeping Issues to be resolved: 

1. User is to set the timeframe of the chart to any standard time available from a drop down menu or similar. M1, M5, M15, M30, H1, H4, D1, W1, or MN. If the EA is dropped on a 5 minute chart and set to M15 it should run in the M15 timeframe and an event an hour ago is 4 bars ago not 12 bars ago, etc.

2. EA to work with price values of any number of digits with the decimal in any location.

3. All values that can be, are to be calculated only one time each bar. This will result in small inaccuracies. That it preferred to the overhead load of calculating each value continuously. The one exception is the decision to enter a new position which is checked each tick. Trades are entered on the first opportunity when the target is enabled and price meets the protocols.

4. Target Values for moving averages and Bollinger lines can be interpolated for the current bar based on last bar's value + previous bar + difference + or - last bar is above or below previous bar. One bar repaint is preferred to overhead load.

5. EA must have a "TradesInitiated" counter to eliminate the possibility of entering a trade more than one time in any bar. Set the counter to zero at the beginning of each bar and increase the count when a trade is opened. Disable opening a new trade when the value is >0.  

6.Text in the top Left corner of the chart should be populated with current information and read similar to this: "Trend=1.00013, Spread=5216, SinceBuy=38, Buy 2.37 Lots @ 1.24762, SL=1.24450, TP=1.27257" There will be no need of a SinceSell or sale values text line when the trend is >1.0 since the system will trade with the trend. If the trend was < 1.0 the line might read  "Trend=0.99927, Spread=5216, SinceSell=38, Sell 2.37 Lots @ 1.24762, SL=1.25074, TP=1.22267". In this case the displayed values of "SinceBuy" or "SinceSell" are not the values set by the user. They represent the actual number of bars since the price touched or approached the noted Bollinger Band.

7. IF NAV is <"MinBal" the trade is 0.01 Lots. If NAV is > "MinBal" the trade size is calculated by comparing the "Stop%" to NAV, "%Risked", and the nominal unit price of the pair being traded. Note the account could be below "MinBal" After a trade is stopped out.

8. Maximum Deviation from Quoted Price for Opening Orders should be "MS"  Closing Orders are at the market regardless of Deviation.

9. All charted prices are to be mid spread or half way between Bid and Ask.

10. All Buy orders to Open or to Close are to be based on Ask Prices.

11. All Sell to Open or to Close are to be based on Offered Prices.  

12. If "FirstMOD" is > "LastMOD" the EA must not shut down at midnight. It runs continuously from "FirstMOD" to "LastMOD". If "FirstMOD" = 601 and "LastMOD" = 120 then the EA is enabled from 10:00 AM daily until 1:59 the next morning.  If "FirstMOD" is < "LastMOD" the EA is never enabled to open a trade at midnight (unless FirstMOD = 0 or LastMOD >1440).

 

Long entry:

"MOW" is >"FirstMOW" and < "LastMOW"  

"MOD" is >"FirstMOD" and < "LastMOD"  

"SpreadRatio"> "MaxSpread" 

Trend is >1.0 (Trend is calculated by dividing the value of the "TrendLength" SMA from the previous bar by what it's value was "Period" bars prior to the last bar.

Low of each of the last "SinceBuy" bars of a "Period" "Deviations" Bollinger Band has been higher than the value of the lower band + ("Approach"*"MS")

"TradesInitiated" = 0 

Price on a recent tick is <= the value of a lower band of a "Period" "Deviations" Bollinger Band + "Approach"+"MS"

Enter immediately. Make "TradesInitiated" =1, Set S/L and T/P, Mark the Chart with an up Arrow below the Lower Bollinger Band Line.

Short entry:

"MOW" is >"FirstMOW" and < "LastMOW"  

"MOD" is >"FirstMOD" and < "LastMOD" 

"SpreadRatio"> "MaxSpread"  

Trend is <1.0 (Trend is calculated by dividing the value of the "TrendLength" SMA from the previous bar by what it's value was "Period" bars prior to the last bar.

High of each of the last "SinceSell" bars of a "Period" "Deviations" Bollinger Band has been lower than the value of the upper band - ("Approach"*"MS")

"TradesInitiated" = 0 

Price on a recent tick is >= the value of a upper band of a "Period" "Deviations" Bollinger Band - ("Approach"*"MS")

Enter immediately. Make "TradesInitiated" =1, Set S/L and T/P, Mark the Chart with an up Arrow below the Lower Bollinger Band Line. 

Early Exit:

If "EarlyOut" =1 and the opposite Bollinger Band is Approached.

If  "CloseMOW" is reached and positions are still open.

 

By way of observation the system would have opened three SHORT trades in the attached USDJPY Chart and the last trade will be a loser. In the NZDUSD chart illustrated the system would have opened a LONG trade at 21:18. It gets stopped out. Oh well.

응답함

1
개발자 1
등급
(52)
프로젝트
133
44%
중재
14
50% / 29%
기한 초과
55
41%
무료
2
개발자 2
등급
(54)
프로젝트
64
42%
중재
5
20% / 60%
기한 초과
4
6%
무료
3
개발자 3
등급
(1856)
프로젝트
3459
88%
중재
73
40% / 15%
기한 초과
265
8%
무료
4
개발자 4
등급
(89)
프로젝트
137
24%
중재
35
9% / 40%
기한 초과
52
38%
무료
5
개발자 5
등급
(5)
프로젝트
14
86%
중재
2
0% / 100%
기한 초과
1
7%
무료
6
개발자 6
등급
(80)
프로젝트
117
67%
중재
16
25% / 13%
기한 초과
12
10%
무료
7
개발자 7
등급
(1096)
프로젝트
1777
61%
중재
14
64% / 7%
기한 초과
84
5%
무료
8
개발자 8
등급
(11)
프로젝트
12
0%
중재
2
0% / 50%
기한 초과
1
8%
무료
9
개발자 9
등급
(879)
프로젝트
1392
67%
중재
117
32% / 42%
기한 초과
215
15%
무료
10
개발자 10
등급
(1235)
프로젝트
2820
80%
중재
156
22% / 43%
기한 초과
488
17%
무료
11
개발자 11
등급
(107)
프로젝트
149
36%
중재
29
3% / 55%
기한 초과
35
23%
무료
비슷한 주문
Creating of an expert advisor or trading bot that uses a Top Down analysis (using monthly, weekly, daily, hourly, minutes ( 30, 15, 5, 1) to determine trade direction or trend direction and makes multiple trade decisions for mt4. You can use or combine accurate trend indicators
Creating of an expert advisor or trading bot that uses a Top Down analysis (using monthly, weekly, daily, hourly, minutes ( 30, 15, 5, 1) to determine trade direction or trend direction and makes multiple trade decisions for mt4. You can use or combine accurate trend indicators
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA
I am looking forward to automate my trading strategy where I use renko bars on Tradingview. I really want to use unirenkos too, but unfortunately I couldn't figure out how to use ninjatrader on my MacBook and Tradingview does not offer unirenkos. As far as I see from your offered services you are very familiar with ninjatrader. I wanted to ask you if you could code me an Indicator for unirenkos for Tradingview so I
I am looking forward to automate my trading strategy where I use renko bars on Tradingview. I really want to use unirenkos too, but unfortunately I couldn't figure out how to use ninjatrader on my MacBook and Tradingview does not offer unirenkos. As far as I see from your offered services you are very familiar with ninjatrader. I wanted to ask you if you could code me an Indicator for unirenkos for Tradingview so I
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA
Hello, I want to create an EA that can be able to take and optimise trade bids using the trend tracker concept I have developed. The tracker will monitor 2 lines to determine the trend of the market and afterwards take bids towards the correct direction. It will also be able to use a distance between the bids for the direction of the trend and plan a reverse bid when the price of the extreme doesn’t change again. The
Gradient boosting and L2 100 - 200 USD
I am looking for a well experienced programmer to put/implement a gradient boosting algorithm and an L2 to reduce overfitting in my ea which l already have which uses indicators . If you are experienced please adhere
Hello, I'm looking for a developer for repair calendar in EA MT4/MT5 (News Filter - https://ec.forexprostools.com ) for all windows servers. Note: EA MT4/MT5 works with calendar on PC Win 10, 11 but not on all windows servers. I have the source code and will post within the comments section for review. If you are able to do this and quality. Please apply. Thanks
Create mt4 ea 50+ USD
To convert the provided MT4 indicator script into an Expert Advisor (EA) and implement prompt functionality for user input, we need to modify the code to handle external parameters and provide a user-friendly interface. Below is the EA code that incorporates prompts for user inputs

프로젝트 정보

예산
200 - 500 USD
개발자에게
180 - 450 USD
기한
에서 7  14 일