I want devloper to create indicator

指定

i want  devloper to create indicator i have the script from https://usethinkscript.com/ i want to be create in mt4 

# DESCRIPTION # This study plots H1, H2, etc. and L1, L2, etc. labels above or below # those signal bars based on Al Brooks' description of the setups. # DECLARATIONS declare upper; # USER INPUTS input resetCountOnDTorDB = yes; input barsBack = 10; # DEFINITIONS AND CALCULATIONS ## Variable List def isFlatTopSBEligible; def isBullSB; def lastBullSBLow; def isHBar; def lastHBarLow; def isPushUp; def lastPushUp; def resetHCount; def isHCountStillReset; def hCount; def isFlatBottomSBEligible; def isBearSB; def lastBearSBHigh; def isLBar; def lastLBarHigh; def isPushDown; def lastPushDown; def resetLCount; def isLCountStillReset; def lCount; ## Standard variable calculations ### H Counting isFlatTopSBEligible = fold hFold = 1 to barsBack with dt = Double.NaN while IsNaN(dt) do if GetValue(high, hFold) == high then Double.NaN else if GetValue(high, hFold) > high then yes else no; isBullSB = (high[1] > high and high[-1] > high) #Standard bull SB or (isFlatTopSBEligible and high[-1] > high); #DT to the left lastBullSBLow = if isBullSB then low else lastBullSBLow[1]; isHBar = (low < lastBullSBLow[1] and isBullSB) or (isBullSB and isHCountStillReset); lastHBarLow = CompoundValue(1, if isHBar then low else lastHBarLow[1], low); isPushUp = if isHBar then yes else if isPushUp[1] and high >= high[1] then yes else no; lastPushUp = if isPushUp[1] and !isPushUp then high[1] else if high > lastPushUp[1] then high else lastPushUp[1]; resetHCount = high > lastPushUp[1] or ( resetCountOnDTorDB and high == lastPushUp[1] ); isHCountStillReset = if !isBullSB and resetHCount then yes else isHCountStillReset[1]; hCount = CompoundValue(1, if isHBar and !resetHCount then hCount[1] + 1 else if resetHCount then 0 else hCount[1] , 0); ### L Counting isFlatBottomSBEligible = fold lFold = 1 to barsBack with db = Double.NaN while IsNaN(db) do if GetValue(low, lFold) == low then Double.NaN else if GetValue(low, lFold) < low then yes else no; isBearSB = (low[1] < low and low[-1] < low) #Standard bear SB or (isFlatBottomSBEligible and low[-1] < low); #Db to the left lastBearSBHigh = if isBearSB then high else lastBearSBHigh[1]; isLBar = (high > lastBearSBHigh[1] and isBearSB) or (isBearSB and isLCountStillReset); lastLBarHigh = CompoundValue(1, if isLBar then high else lastLBarHigh[1], high); isPushDown = if isLBar then yes else if isPushDown[1] and low <= low[1] then yes else no; lastPushDown = if isPushDown[1] and !isPushDown then low[1] else if low < lastPushDown[1] then low else lastPushDown[1]; resetLCount = low < lastPushDown[1] or ( resetCountOnDTorDB and low == lastPushDown[1] ); isLCountStillReset = if !isBearSB and resetLCount then yes else isLCountStillReset[1]; lCount = CompoundValue(1, if isLBar and !resetLCount then lCount[1] + 1 else if resetLCount then 0 else lCount[1] , 0); # Calculate the day's opening price def openPrice = if GetDay() != GetDay()[1] then open else openPrice[1]; # PLOTS plot hSetup = if hCount <> hCount[1] and hCount <> 0 and close > openPrice then hCount else Double.NaN; plot lSetup = if lCount <> lCount[1] and lCount <> 0 and close < openPrice then lCount else Double.NaN; # GLOBAL COLOR DEFINITIONS DefineGlobalColor("Blue" , CreateColor(33, 150, 243)); DefineGlobalColor("Green", CreateColor(0, 155, 0)); DefineGlobalColor("Red", CreateColor(225, 105, 105)); DefineGlobalColor("Gray", CreateColor(181, 181, 181)); DefineGlobalColor("White", CreateColor(255, 255, 255)); # FORMATTING hSetup.SetPaintingStrategy(PaintingStrategy.VALUES_BELOW); hSetup.SetDefaultColor(GlobalColor("Green")); hSetup.SetLineWeight(2); hSetup.HideBubble(); lSetup.SetPaintingStrategy(PaintingStrategy.VALUES_ABOVE); lSetup.SetDefaultColor(GlobalColor("Red")); lSetup.SetLineWeight(2); lSetup.HideBubble();


反馈

1
开发者 1
等级
(7)
项目
5
20%
仲裁
3
0% / 33%
逾期
1
20%
工作中
2
开发者 2
等级
(378)
项目
401
31%
仲裁
63
19% / 68%
逾期
51
13%
已载入
3
开发者 3
等级
项目
1
0%
仲裁
0
逾期
0
空闲
4
开发者 4
等级
项目
0
0%
仲裁
0
逾期
0
空闲
5
开发者 5
等级
(9)
项目
8
38%
仲裁
3
0% / 67%
逾期
2
25%
工作中
6
开发者 6
等级
(5)
项目
2
0%
仲裁
2
0% / 0%
逾期
0
工作中
7
开发者 7
等级
(299)
项目
445
64%
仲裁
5
40% / 0%
逾期
4
1%
工作中
8
开发者 8
等级
(27)
项目
47
38%
仲裁
6
17% / 50%
逾期
30
64%
空闲
相似订单
Looking for an mql5 EA developer to build a custom EA for MT5 based on several simple variables. It will be initially used on 5m EUR/USD, but needs to work with any currency/commodity/stock/crypto. Custom risk management will also need to be built into the EA. Exact variables will be discussed in detail once a developer is selected, but a basic overview of the EA variables is below. Positions will be opened based on
I want an Expert Advisor developed that will use two MAs to determine the trend, then open trades at every candle close subsequently. Each opened trade will have a take profit and a stop loss. The EA should be able to trade multiple forex pairs at the same time, and should also be able to trade on any specified/chosen timeframe. The EA will also have a news filter, to determine if the EA should trade during news
Hello, Can you build and help me optimize the following very simple strategy using tradingview: 1.) On QQQ, Wait for market opening range 10 minute bar to close. 2.) Go long beyond the high of 10 min range OR short below on low of 10 min range. (intrabar entry not on close of next bar) 3.) Stop loss is the opposite end of the 10 minute range. All stops and exits are intrabar. Far backtesting can we use 10 minute
Hello developers, no negotian please this is the fucken last badget for this EA I need to code EA which can sell and buy within my help(semi-auto) and by gathering data from an indicator. I have the indicator needed for the strategy. It is very semple job. Here is the rules : 1 - I can set which direction for the ea to work buy or sell . 2- the ea collect the
I am looking for a highly skilled and experienced developer who can assist with converting six Pine Script strategies into NinjaTrader. The goal is to seamlessly transition these scripts while preserving their original functionality and ensuring they operate efficiently on the NinjaTrader platform. If you have the expertise and are interested in this project, please reach out. I am looking forward to collaborating
I just need someone to help convert tradingview indicator (Top Bottom by ceyhun) to mq5. With the input and the signal (Can change it to arrow). I need it for my MT5
The Trading View Indicator script has about 80% of what I need. 1. I have an additional entry model called a confirmation entry 2. I normally just look back 3-50 bars to determine if a bar is wide range or not, but the 3 additional WRB models require requirements based on 3 bars before it, and each one has its own name. 3. The TV indicator has a lot of visual cosmetics that we won't be able to do in MT5, but colour
Hello, I am looking for a developer to reconstruct an indicator that is currently in an ex4 file into an mq4 file. The indicator provides buy and sell signals with entry points, Stop Loss, and TP1, TP2, and TP3. However, the indicator has some errors, and I would like to correct them. Unfortunately, since I only have the ex4 file, it's not possible to make these corrections directly. Therefore, I would like to
very simple rule buy rate 2 sl 1 if market reach 3 sl 2 market reach 4 sl 3 sl hit reverse trade open too with same 1:1 trail sl system if sl hit reverse trade open with same sl trail function 1 input open trade with buy or sell option 2 sl in pip .............xyz 3 lot size ............. xyz 4 distance from sl when sl trail one step [main point] Iam buying in rate of 2 my sl is 1 market reach 3 my sl is 2 market
Looking for help to code an Expert Advisor for MT5" is a request from someone seeking assistance with developing a custom trading robot (Expert Advisor) for MetaTrader 5 (MT5). The individual likely needs help from a skilled developer or coder who understands the MetaTrader 5 platform, MQL5 programming language, and can create an automated trading system tailored to their trading strategy. The Expert Advisor may

项目信息

预算
50+ USD
开发人员
45 USD