Need This EA Done Based on CCI Cross complex system

MQL4 Other

Specification

I need this developed for MT4 Soon.. Basically Based on CCI Complex cross system .. if you can't understand the code then i basically need EA the works on the CCI complex cross system and adding the tweaks below..

 

Okay , so here is the code for MT4.. The Tweaks that i want to include is 
1: Me Able to adjust the pip entry amount from the original entry ARROW.  Example from arrow.. 80 pips up or down and when that is hit the EA enters the trade.
2: Normal arrow as in the System followed by the Golden Arrow when the price actually hits the entry amount., so the price is hit from the bottom or the top of a buy or cell arrow and not from where the price actually closed at.(all other arrows are fine the way they are , they just don’t enter the trade until the price is hit and Golden Arrow appears)
3: Me Able to place a break even exit after certain amount of pips. (true false option)
4: A trailing stop that I decide after certain amount of pips. (true false option)
5: Slippage protection if there is a news event?  or do I have to do it manually . (not important but it would be nice)
6: Me able to choose a lot size please . (true false option)
7: A take profit . (true false option)
8: Statistics exactly as in the indicator attached. like on the side  ..at least 3 months back as shown on indicator. (Just to clarify I don’t want the indicator I just want the the same statistics that it kinda has with how much pips were earned and how many were lost and NET PIPS over the past as far back as it can go).  
9: And an intilal stop loss adjusted to pips that i would adjust to 
10: The Exit on both sell and buy orders is fine. so it will also stop me when exit is hit on both orders sell and buy
10: Now this one is a feature that Developers told me can be done-  A combined pip gain per week or month from all pairs that would get the EA to stop trading . like for example if it hits 100 pips combined profitfor a week or 500 for a month ,it stops trading for that week ot that month on all pairs. 

I will also send you the mt4 indicator that has the statistics that i want .. ofcourse no martingale ... but what i'm looking for is pips gain and pips loss and net gained for a certain pair for as long as the history goes back for that pair . Like normally the hour would go back 10 months and 15 minutes 3 months.. 

Below is the code:  
 
{Error Control}

Error_CCILevels:= Error(CCI_Control_Levels>=CCI_Extreme_Levels,'Input Error: "CCI +/- Control Level" value cannot be greater than or equal to "CCI +/- Extreme Level" value'); 

{Commodity Channel Index (CCI)}

Diff:= CCI_Price - Mov(CCI_Price,CCI_Periods,S);
AveDiff:= Mov(Abs(Diff),CCI_Periods,S);
EquationComp:= Diff/AveDiff;
AdjCon:= 66.66667;
MS_CCI:= EquationComp * AdjCon;

DL_CCI:= CCI(CCI_Price,CCI_Periods);

CCIndex:= If(CCI_FormulaChoice=0,MS_CCI,DL_CCI);

{Commodity Channel Index (CCI) Levels}

CCI_MidLevel:= 0;

CCI_Control_Level_P:= CCI_Control_Levels; 
CCI_Extreme_Level_P:= CCI_Extreme_Levels; 

CCI_Control_Level_N:= -CCI_Control_Levels;
CCI_Extreme_Level_N:= -CCI_Extreme_Levels;

{Basic Entry/Exit Conditions}

_BarCount:= BarCount();

LongEntryCond1:= CCIndex>CCI_Control_Level_P;
LongEntryCond2:= ValueWhen(1,CCIndex<CCI_MidLevel,_BarCount) > ValueWhen(2,LongEntryCond1=1,_BarCount);
LongEntrySetup:= LongEntryCond1=1 AND LongEntryCond2=1;

LongExitSetup:= If(BarsSince(CCIndex>CCI_Extreme_Level_P) <= BarsSince(LongEntrySetup=1),
                   Cross(CCI_Control_Level_P,CCIndex),
                   Cross(CCI_MidLevel,CCIndex));

ShortEntryCond1:= CCIndex<CCI_Control_Level_N;
ShortEntryCond2:= ValueWhen(1,CCIndex>CCI_MidLevel,_BarCount) > ValueWhen(2,ShortEntryCond1=1,_BarCount);
ShortEntrySetup:= ShortEntryCond1=1 AND ShortEntryCond2=1;

ShortExitSetup:= If(BarsSince(CCIndex<CCI_Extreme_Level_N) <= BarsSince(ShortEntrySetup=1),
                    Cross(CCIndex,CCI_Control_Level_N),
                    Cross(CCIndex,CCI_MidLevel));

{Long Entry Signal}

LongEntrySignal:= (LongTradeAlert=0 AND ShortTradeAlert=0 AND LongEntrySetup=1) OR
                  (LongTradeAlert=0 AND ShortExitSetup=1 AND LongEntrySetup=1);

{Long Exit Signal}

LongExitSignal:= LongTradeAlert=1 AND LongExitSetup=1;

{Short Entry Signal}

ShortEntrySignal:= (ShortTradeAlert=0 AND LongTradeAlert=0 AND ShortEntrySetup=1) OR
                   (ShortTradeAlert=0 AND LongExitSetup=1 AND ShortEntrySetup=1);

{Short Exit Signal}

ShortExitSignal:= ShortTradeAlert=1 AND ShortExitSetup=1;

{Open Trade Determination for Long/Short Entry/Exit Signals}

LongTradeAlert:= SignalFlag(LongEntrySignal=1,LongExitSignal=1);
ShortTradeAlert:= SignalFlag(ShortEntrySignal=1,ShortExitSignal=1);

{Define Long Trend and Short Trend}

CciLongTrend:= CCIndex>CCI_MidLevel;
CciShortTrend:= CCIndex<CCI_MidLevel;

{Auto-Trading Functionality; Used in Auto-Trade Mode Only}

OpenBuy:= BuyPositionCount()=0 AND LongEntrySignal=1;
CloseBuy:= BuyPositionCount()>0 AND LongExitSignal=1;

OpenSell:= SellPositionCount()=0 AND ShortEntrySignal=1;
CloseSell:= SellPositionCount()>0 AND ShortExitSignal=1;

Responded

1
Developer 1
Rating
(82)
Projects
150
29%
Arbitration
9
44% / 11%
Overdue
46
31%
Free
2
Developer 2
Rating
(2430)
Projects
3062
66%
Arbitration
77
48% / 14%
Overdue
340
11%
Free
3
Developer 3
Rating
(54)
Projects
164
43%
Arbitration
43
47% / 16%
Overdue
58
35%
Free
4
Developer 4
Rating
Projects
3
0%
Arbitration
0
Overdue
0
Free
5
Developer 5
Rating
(266)
Projects
540
50%
Arbitration
55
40% / 36%
Overdue
224
41%
Free
6
Developer 6
Rating
(30)
Projects
93
49%
Arbitration
18
56% / 17%
Overdue
38
41%
Free
7
Developer 7
Rating
(9)
Projects
18
22%
Arbitration
3
67% / 33%
Overdue
4
22%
Free
Similar orders
Connect from Mt5 via binary deriv account api I have mt5 indicator, need to connect with binary deriv account through api. If anyone can setup via API then contact me. everything control mt5
Hey greetings. Am in need of a developer that has already made profitable MT4 or MT5 EA that I can buy with the backtesting and proven result. How is the draw down ? What is the winning rate ? Kindly reply and let proceed
I have attached the rules for the strategy. I have a mt4 EA version but now I want the bot on my Ctrader platform. I have never used an EA on Ctrader but I think after the EXE file is made, I just click on it to install in the Ctrader platform, correct? Anyway, if you could do this, that would be great. It's based on only one indicator, the RSI. I don't know how adjustments are made in Ctrader but I just need to be
Hello, I need a cBot for cTrader for my trading system. However, this bot should not be based on timeframes. I trade exclusively with Renko Blocks. Could you implement this for me? Here are the rough requirements: 1. an EMA200 should simply serve as an entry point. If the current price is above it, a long position is opened, if the price is below it, we open a short position. 2. i must be able to set how many pips my
We are interested in a TradingView indicator that reads candlestick pattern shapes and shows the location of entry and exit points on a candlestick chart. What services do you provide related to this
I am looking for a developer to create an automated ATM strategy for NinjaTrader. The strategy should operate as follows: Trade Entry : Manual entry based on a bullish or bearish engulfing pattern. Stop Loss : Set at the low of the previous candle for long trades and at the high of the previous candle for short trades, covering the entire candle body and wicks. Take Profit : Set at twice the size of the stop loss
Hey all, im looking for a desktop app to be made which ''integrates'' with mt5. The aim here is youll open the desktop app, link it to the mt5 you have downloaded which will then allow you to auto test on that mt5 with the click of a button. i want to basically load an opt file which has already been created with the desired input combinations, input dates you want etc... and then start the test. once the test is
Dear Colleagues, I am currently seeking the assistance of an experienced professional who can help me integrate my TradingView alerts with Interactive Brokers in order to execute live trades automatically. If you have the expertise in setting up such an automation or know someone who does, I would greatly appreciate your support. Please feel free to reach out to me if you can assist with this project or if you need
I am in search of a driven and results-oriented individual to promote my forex trading signals under the "Elevated Tradinghub" brand. The perfect candidate will have a strong background in digital marketing, particularly within the finance and trading sectors. Your main goal will be to expand my follower base by effectively promoting my signals across a variety of platforms, such as social media, trading forums, and
Connect from Mt4 via binary derive account api. I have a bot. You need to convert the bot to an indicator. After converting I need to connect with my binary deriv through api. I want to trade my derivative binary account through mt4. If anyone can setup via API then contact me

Project information

Budget
30 - 55 USD
For the developer
27 - 49.5 USD
Deadline
from 2 to 5 day(s)