BollingerBandsMACD and TrendPeriod

MQL4 指标

工作已完成

执行时间2 天

指定

I need someone to code and or modify the BollingerBand Macd indicator and code a TrendPeriod indicator which is a simple slow length and fast length variant of the macd. Please don't apply and or accept the job if you don't understand what i am looking for. I have attached images and a video showing exactly what i need and how it needs to look like. The images and code i have attached is from Thinkorswim which is the platform i currently use.


Thinkorswim BBMACD Code:

#Wammys MACDBollinger
 
declare lower;
 
input price = close;
input BBlength = 10;
input BBNum_Dev = 1.0;
input MACDfastLength = 8;
input MACDslowLength = 22;
input MACDLength = 5;
 
def MACD_Data = MACD(fastLength=MACDfastLength, slowLength=MACDslowLength, MACDLength = MACDLength);
 
plot MACD_Dots = MACD_Data;
plot MACD_Line= MACD_Data;
 
plot BB_Upper = BollingerBandsSMA(price = MACD_Line, length=BBlength, Num_Dev_Dn=-BBNum_Dev, Num_Dev_Up=BBNum_Dev).UpperBand;
plot BB_Lower = BollingerBandsSMA(price = MACD_Line, length=BBlength, Num_Dev_Dn=-BBNum_Dev, Num_Dev_Up=BBNum_Dev).Lowerband;
plot BB_Midline = BollingerBandsSMA(price = MACD_Line, length=BBlength, Num_Dev_Dn=-BBNum_Dev, Num_Dev_Up=BBNum_Dev).MidLine;
 
BB_Upper.SetDefaultColor(color.gray);
BB_Lower.SetDefaultColor(color.gray);
BB_MidLine.SetDefaultColor(color.gray);
BB_MidLine.setStyle(curve.SHORT_DASH);
 
MACD_Line.setDefaultColor(color.white);
 
MACD_Dots.setStyle(curve.POINTS);
MACD_Dots.setLineWeight(2);
MACD_Dots.assignValueColor(if MACD_Line>MACD_line[1] then color.green else color.red);
 
plot zero = 0;
zero.assignValueColor(if MACD_line<0 then color.red else color.green);

zero.setLineWeight(2);



Please note the mid line is very important. When MACD line crosses and or closes below the midline its red; if crosses and  or closes above the midline its green. The indicator should look like the attached bbmacd in the picture and or the video shown here(http://vimeo.com/12983221)



The last indicator is a Trendperiod indicator it is a variant of the MACD indicator. It consists of the fast and slow line. Its exactly like the color changing midline as noted directly above but gives a different visualization. Again i have attached the Thinkorswim code. If you could decode it and code it for mt4 i'd greatly appreciate it.


Thinkorswim Trendperiod:


# TD Ameritrade IP Company, Inc. (c) 2009-2013
#

declare lower;

input fastLength = 7;
input slowLength = 15;

plot Periods = sign(ExpAverage(close, fastLength) - ExpAverage(close, slowLength));

Periods.SetDefaultColor(GetColor(1));


Again please don't apply for this job if you dont have a clear idea what i am looking for. Please message me for clarity before applying for the job.

反馈

1
开发者 1
等级
(488)
项目
1014
58%
仲裁
29
28% / 24%
逾期
131
13%
工作中
2
开发者 2
等级
(795)
项目
1365
72%
仲裁
112
29% / 48%
逾期
341
25%
工作中
3
开发者 3
等级
(90)
项目
159
61%
仲裁
40
18% / 63%
逾期
70
44%
空闲
4
开发者 4
等级
(48)
项目
91
31%
仲裁
28
29% / 43%
逾期
42
46%
空闲
5
开发者 5
等级
(195)
项目
395
28%
仲裁
155
20% / 52%
逾期
112
28%
空闲
6
开发者 6
等级
(15)
项目
65
58%
仲裁
6
17% / 33%
逾期
39
60%
空闲
7
开发者 7
等级
(71)
项目
254
53%
仲裁
16
50% / 38%
逾期
83
33%
空闲
8
开发者 8
等级
(62)
项目
140
46%
仲裁
19
42% / 16%
逾期
32
23%
空闲
9
开发者 9
等级
(9)
项目
18
22%
仲裁
3
67% / 33%
逾期
4
22%
空闲
相似订单
Hello! I want to develop an indicator for tradingview. Twice a day on 12H candle close the indicator will show a set of timeframes if they closed bullish or bearish. Show daybreak with a vertical line. Every 12H closure will show a box somewhere, preferably above/below that candle on all timeframes up to D1, clearly showing which candle is the close of 12H. The box will contain info about which timeframes closed
Hello, I hope you are well. I have an alert/s that I would like to provide buy and sell orders. The alerts are named *ENTRY* and *EXIT*, so the EA will know what to do. I would like the EA to have the following parameters: 1. Select the number of trades per currency pair 2. Time to trade: Time to start trading to time to end trading - I would like 4 different times to be able to be entered 3. Option to choose which
Hello, Looking for Multipair and Multi-timeframe scanner indicator based on Zigzag. It's going to be a simple indicator based on Higher high and Lower Low Formation. I want for both platform for MT4/5. It should have alert features as well have to scan from custom pairs, marketwatch also able to use custom timeframe. I'll share zigzag formation to the right candidate when it should gives an alert. And if you are not
Hello, I purchased a TradingView script that works very well, but it doesn’t have any alerts. All I need are alerts programmed so I don’t have to sit behind the chart watching it all the time
Hi! Are you able to code an exact copy of an indicator for trading view? It must be exactly the same. if you are expert in doing this I am expecting your message in the comment session to share you with the indicator I want to duplicate. Looking forward to your positive response and the opportunity to collaborate with you on this project
Hello developers I hope this message finds you well. I am currently seeking a highly skilled developer for an important project. I need an exact copy of a TradingView indicator to be coded for the MetaTrader 4/5 platform. The indicator must be replicated with absolute precision, maintaining all its functionalities and features. Would you be able to take on this project? If so, I would appreciate discussing the
Hello Developers, I am looking for a highly skilled and experienced developer to code an exact copy of a specific indicator for TradingView. The indicator must be replicated with precise accuracy, maintaining all functionalities and features of the original. Requirements: Proficiency in Pine Script and experience with TradingView indicators. Demonstrated ability to replicate complex indicators with exact
MODIFICATION OF AND EXISTING EXPERT BY ADDING INDICATORS TO FUNCTION AS FILTERS, TRADE CLOSURE BY THE REVERSAL OF THE adx INDICATOR, LOOKING FOR TRADE BASED ON THE COLOR OF THE PERCENTAGE CHANGE INDICATOR (DPC) SELLING THE COLR IS RED AND DECREASING IN PERCENTAGE AND BUYING WHEN THE COLOR IS GREEN AND INCREASING IN PERCENTAGE . There is an EA I have been using which I splitted into long trading and short trading. It
Looking for someone who can convert 130 Lines of Pinescript code to MT4/5 And I want extra input for scanning from Marketwatch and Custom Pairs. More details for the right candidate. And if you are high demand freelancer, please don't apply to this project. We're looking for someone who are individual and keep working with us. Thank you
i am looking for experienced programmer to create indicator for me. i am willing to pay for the service. and if it works amazingly like i expected. i will tip more money

项目信息

预算
10 - 50 USD
开发人员
9 - 45 USD
截止日期
 2  7 天