An Expert Advisor needed based on Stochastic Indicator and moving averages

명시

Good day,

I need an export advisor for the following Specifications

EA Name:  Master Scalper



#1 Trading Panel Indicators

 

The trading panel indicators should consist of the following technical indicators:

 

1.       Moving average (short) – where price is current trading above the moving average (buy) or below (sell) (To be set by user)

2.       Moving average (long) -where price is current trading above the moving average (buy) or below (sell) (To be set by user)

3.       RSI14 – if indicators is above 70, the indicator is =Overbought or less the 30 =oversold

4.       Stochastics (14,3,3) – Where Indicator value >= 80 = “Overbought” or <=20 =” Oversold”

5.       Last signal – Get last signal on initiation

6.       Current Signal – Buy, Sell and Neutral (Based on the calculations of the higher timeframe signals as describe in 3.2

7.       Higher Timeframe trend by angle

 

These indicators should return the values for the 3 times frames of which the user can choose

 

 

#2 Advisor Performance Panel

 

P&L = Total Profit or lost from the initialization of the expert advisor

Growth = Growth of account from the initialization of the expert advisor

Total Consecutive Wins – Count of current consecutive wins without a loss

Net lot size – See money management in trading strategy

 

#3 Trading Strategy

 

 

1.       Money Management

 

List of Risk setting

a.       Risk determined by price chart (Eg. Low of candle bar if Long entry)

b.       User defined in Base Currency (Eg1. $1 = 100pips)

c.       Risk: Reward – User should enter reward for each $1 of Risk ($1:$5)

 

 

List three possible options for lot size calculation

1.       Fixed lots size – User should enter the fix lot size

2.       Incremental lot size – as per stock standard moving average ea(see code)

 

 

3.       % of consecutive profits the determine max lot size

a.       User should enter the maximum lot size (if blank – then it must get the brokers maximum amount)

b.       User must enter value to maintain minimum margin level%

c.       First lot size should always be the minimum broker amount (standard 0.01)

d.       User should enter that % amount that he/she wants use (for consecutive wins)

e.       For the first loss the lot size should reset to 3.c

f.        % of the consecutive profits should be used

g.       to determine the next lot size, but the lot size can’t be more than the margin level % when reaching the Stop Loss value

For example:

1.       Technical indicators signals

 

·         Daily Time Frame (User should be able to choose time frame)

o   The EA should look for price reversal in a higher timeframe where the market is over-bought/-sold

o   Trend direction – EMA 21

§  If the closing price is above moving

§  Measure the trend by angle from start of first buy/sell signal to first price reversal (This is only for the indicator panel)

·         If trend is more than >30 degrees, then strong buy signal

·         If trend is less than 15degrees (buy) and more than 345degrees (Sell), then Neutral Signal

·         If trend is > 270 and <330 degrees, then strong sell signal

 

o   Stochastics (14,3,3)

§  When value <=50 and value > Signal then look for Bullish Price Action Signals

§  When value >=50 and value < Signal then look for Bearish Price Action Signals

 

·         15M Time Frame (User should be able to choose time frame)

o   Exponential Moving Average 21 period

o   Exponential Moving Average 8 period

 

 

 

 

 

·         Price Action Signals

o   Price Action Signals consist out of Candle Stick Pattern (All candle sticks should have on/ off trigger for back testing optimization – to determine which patterns has the best performance)

 

 

1.       Market Entries

a.       User must choose if trades are allowed by the expert advisor or not (AllowTrades = True/False)

b.       Send push notifications to cellphone – True(yes)/ False(no) (For signals and trades separate)

 

c.       Long entries

 

                                                               i.      The higher timeframe should be a buy signal where the stochastic indicators value is below 50 and the value of the indicator is greater than the signal, then the EA must wait for a price reversal indication using the candlesticks patterns.

                                                             ii.      Here is an example



 

                                                               i.      Here is an example to short the market.  Short signal confirmed at 2018.04.22 and lasted up to 2018.08.19

1.       Weekly Timeframe



1.       15M Timeframe (same logic for market entry)

a.       Market Entry should be opened after confirming the price action

b.       Stoploss should either be what the user made it (fixed)/or based on the highest value of the two bars

c.       Take profit = The total risk in pips X the reward as set by the user

                                                                                                                                       i.      Risk = Market open position/(Close of 2 ndBar) – Highest of the 2 bars/SL set by user



1.       Open position maintenance

a.       The user should be asked to use trail stop loss (True/False)

b.       If the users choose “True” then for any open position, if there is a price reversal on the shorter time frame, then the stop loss should narrow to the current position by either

                                                               i.      User defined trail stop loss (2 pips) /if blank use smallest trail stop loss by broker; or

                                                             ii.      Use a step stop loss (for example 5 pips); or

                                                           iii.      Use the highest/lowest of the previous bar outside candle stick pattern, for example



 

1.       Market Exit

 

·         When the higher time frame makes a price reversal signal in the longer time frame, the market condition should change neutral and wait for the next buy/sell signals.


응답함

1
개발자 1
등급
(167)
프로젝트
192
11%
중재
37
38% / 35%
기한 초과
5
3%
작업중
2
개발자 2
등급
(33)
프로젝트
46
59%
중재
0
기한 초과
6
13%
무료
3
개발자 3
등급
(42)
프로젝트
47
30%
중재
12
17% / 75%
기한 초과
6
13%
무료
4
개발자 4
등급
(7)
프로젝트
10
20%
중재
3
0% / 100%
기한 초과
6
60%
무료
5
개발자 5
등급
(19)
프로젝트
35
26%
중재
10
30% / 70%
기한 초과
5
14%
무료
6
개발자 6
등급
(143)
프로젝트
255
35%
중재
12
25% / 58%
기한 초과
42
16%
무료
비슷한 주문
// @version= 5 strategy ( "EMA Crossover Strategy with 1:1.6 Risk-Reward" , overlay = true ) // Define the EMAs shortEma = ta.ema ( close , 10 ) longEma = ta.ema ( close , 20 ) // Plot the EMAs on the chart plot ( shortEma , color = color.blue , title = "10 EMA" ) plot ( longEma , color = color.red , title = "20 EMA" ) // Calculate the crossover conditions longCondition = ta.crossover ( shortEma , longEma )
Hi, i have a tos script i need converted to Ninja script, but someone who knows both coding. Cant be someone who is just going to paste into chat gpt, it requires more understanding for compatibility
Hello, I am looking for a highly skilled and experienced MT4 developer to assist with transferring a strategy currently coded in Pine Script to MetaTrader 4 (MT4). The project requires a professional who can handle this project successfully. I am looking for a dedicated and professional developer who can deliver high-quality results. If you have any questions or need further details about the project, feel free to
Hello, I am looking for a highly skilled and experienced MT5 developer to assist with modifying an existing MT5 file. I am looking for a dedicated and professional developer who can deliver high-quality results. If you have any questions or need further details about the project, feel free to reach out. Thank you for your time and consideration. I look forward to working with the right expert to bring this project to
An EA based on zigzag and some indicators ( The ea is already working i need to add this indicator to guide and control trades) Project Overview: - I am seeking a skilled freelance developer to enhance my existing Expert Advisor (EA) by creating source code that I can easily integrate. The EA currently uses Moving Averages (MA) and lines to place trades. I need to add a zigzag function with a true/false option and
We are looking for an experienced coder to develop a trading robot that utilizes two main indicators: 1) Brain Trend Signal 2) TMA (Triple Moving Average) Centered Bands. The robot should generate buy and sell signals based on specific conditions and include robust risk management features. Initial Requirements - **Indicators**: 1. Brain Trend Signal 2. TMA Centered Bands - **Timeframes**: - H4/D1 for trend
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
I 'm looking for a bot to take trades . I have questions 1 . What is the win rate? It could be ! 2 . Any guarantee if the bot does not take a win trade
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
I need a trading bot, My strategy works with the 1hour timeframe .My stop-loss should be put using Atr of the candle multiply by 1.5 then the value will be added or subtracted from my entry depending on if it's a buy or sell and my entry should be a candlestick pattern also in addition to when the 3 Ema corresponds .When the 8Ema is above the 20Ema and they are both above the 100Ema it is a buy and when the 20Ema is

프로젝트 정보

예산
30 - 50 USD
개발자에게
27 - 45 USD