작업 종료됨
실행 시간 4 일

고객의 피드백
Awesome coder - will definitely use again.

피고용인의 피드백
Awesome customer. A pleasure to work with him.
명시
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © MightyZinger //@version=5 indicator('Slope Adaptive Moving Average (MZ SAMA)', shorttitle='MZ SAMA', overlay=true) ///////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// ///// MZ SAMA ////// ///////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// chartResolution = input.timeframe('', title='Chart Resolution') src = input.source(close, 'Source') // Length Inputs string grp_1 = 'SAMA Length Inputs' length = input(200, title='Adaptive MA Length', group = grp_1) // To check for Highest and Lowest value within provided period majLength = input(14, title='Major Length', group = grp_1) // For Major alpha calculations to detect recent price changes minLength = input(6, title='Minor Length', group = grp_1) // For Minor alpha calculations to detect recent price changes // Slope Inputs string grp_2 = 'Slope and Dynamic Coloring Parameters' slopePeriod = input.int(34, title='Slope Period', group = grp_2) slopeInRange = input.int(25, title='Slope Initial Range', group = grp_2) flat = input.int(17, title='Consolidation area is when slope below:', group = grp_2) bull_col = input.color(color.green, 'Bull Color ', inline='dyn_col', group = grp_2) bear_col = input.color(color.red, 'Bear Color ', inline='dyn_col', group = grp_2) conc_col = input.color(color.yellow, 'Reversal/Consolidation/Choppiness Color ', inline='dyn_col', group = grp_2) showSignals = input.bool(true, title='Show Signals on Chart', group='Plot Parameters') //Slope calculation Function to check trend strength i.e. consolidating, choppy, or near reversal calcslope(_ma, src, slope_period, range_1) => pi = math.atan(1) * 4 highestHigh = ta.highest(slope_period) lowestLow = ta.lowest(slope_period) slope_range = range_1 / (highestHigh - lowestLow) * lowestLow dt = (_ma[2] - _ma) / src * slope_range c = math.sqrt(1 + dt * dt) xAngle = math.round(180 * math.acos(1 / c) / pi) maAngle = dt > 0 ? -xAngle : xAngle maAngle //MA coloring function to mark market dynamics dynColor(_flat, slp, col_1, col_2, col_r) => var col = color.new(na,0) // Slope supporting bullish uprtrend color col := slp > _flat ? col_1: // Slope supporting bearish downtrend color slp <= -_flat ? col_2: // Reversal/Consolidation/Choppiness color slp <= _flat and slp > -_flat ? col_r : col_r col //AMA Calculations ama(src,length,minLength,majLength)=> minAlpha = 2 / (minLength + 1) majAlpha = 2 / (majLength + 1) hh = ta.highest(length + 1) ll = ta.lowest(length + 1) mult = hh - ll != 0 ? math.abs(2 * src - ll - hh) / (hh - ll) : 0 final = mult * (minAlpha - majAlpha) + majAlpha final_alpha = math.pow(final, 2) // Final Alpha calculated from Minor and Major length along with considering Multiplication factor calculated using Highest / Lowest value within provided AMA overall length var _ama = float(na) _ama := (src - nz(_ama[1])) * final_alpha + nz(_ama[1]) _ama // SAMA Definition sama = request.security(syminfo.tickerid, chartResolution, ama(src,length,minLength,majLength)) // Slope Calculation for Dynamic Coloring slope = calcslope(sama, src, slopePeriod, slopeInRange) // SAMA Dynamic Coloring from slope sama_col = request.security(syminfo.tickerid, chartResolution, dynColor(flat, slope, bull_col, bear_col, conc_col)) // SAMA Plot plot(sama, 'MZ SAMA', sama_col, 4) // BUY & SELL CONDITIONS AND ALERTS _up = sama_col == bull_col _downn = sama_col == bear_col _chop = sama_col == conc_col buy = _up and not _up[1] sell = _downn and not _downn[1] chop_zone = _chop and not _chop[1] _signal() => var sig = 0 if buy and sig <= 0 sig := 1 if sell and sig >= 0 sig := -1 sig sig = _signal() longsignal = sig == 1 and (sig != 1)[1] shortsignal = sig == -1 and (sig != -1)[1] // Plotting Signals on Chart atrOver = 1 * ta.atr(5) // Atr to place alert shape on chart plotshape(showSignals and longsignal ? (sama - atrOver) : na , style=shape.triangleup, color=color.new(color.green, 30), location=location.absolute, text='Buy', size=size.small) plotshape(showSignals and shortsignal ? (sama + atrOver): na , style=shape.triangledown, color=color.new(color.red, 30), location=location.absolute, text='Sell', size=size.small) // Signals Alerts alertcondition(longsignal, "Buy", "Go Long" ) alertcondition(shortsignal, "Sell", "Go Short") alertcondition(chop_zone, "Chop Zone", "Possible Reversal/Consolidation/Choppiness") if longsignal alert("Buy at" + str.tostring(close), alert.freq_once_per_bar_close) if shortsignal alert("Sell at" + str.tostring(close), alert.freq_once_per_bar_close)
응답함
1
등급
프로젝트
455
26%
중재
134
21%
/
57%
기한 초과
100
22%
작업중
2
등급
프로젝트
27
26%
중재
2
0%
/
50%
기한 초과
1
4%
무료
3
등급
프로젝트
24
8%
중재
0
기한 초과
0
무료
4
등급
프로젝트
190
66%
중재
8
25%
/
50%
기한 초과
2
1%
무료
5
등급
프로젝트
72
22%
중재
13
46%
/
15%
기한 초과
5
7%
무료
6
등급
프로젝트
577
36%
중재
64
20%
/
58%
기한 초과
147
25%
무료
게재됨: 1 기고글, 22 코드
7
등급
프로젝트
493
67%
중재
5
40%
/
0%
기한 초과
4
1%
작업중
게재됨: 8 코드
비슷한 주문
Convert from Pine Script to Mql5
30+ USD
Hello, I am looking for a programmer who can convert from pine script to mql5. You will receive 11 different trading view indicators to convert to Mql5. You may find them simple and straightforward or not. I repeat this could turn out to be very painstaking and strenuous if you are not well versed in pine script to Mql5 conversion. However, you will add unified alert system to simplify things on mql5 and to alert
I’m looking for an experienced MetaTrader 5 (MT5) programmer to code a custom indicator based on my trading strategy. The strategy involves specific entry and exit conditions, and I need a clean, efficient, and reliable MT5 indicator that can reflect those conditions accurately on the chart
I'm looking for an experienced MQL5 developer to convert a fully functional Pine Script trading strategy into MQL5 for use on MetaTrader 5. The strategy is already backtested and includes entry/exit logic, stop loss, and take profit rules. ✅ Requirements: Strong experience with MQL5 and Pine Script Ability to accurately translate trading logic Clean, well-commented code Responsive communication and timely delivery If
I’m looking for a professional and experienced MQL4 developer who can accurately convert an already completed Pine Script (TradingView) code into a fully functional MT4 indicator or EA. The Pine Script is ready, and I need a clean, bug-free, and optimized MQL4 version that works exactly as intended. Please apply only if you are confident in handling Pine Script to MQL4 conversions. Share relevant past work if
hello great developer Hi I'm going from tradingview pinescript (the code is in the documents ) Need it converted to ninja trader 8. It's an Al brooks concept. Wanting it to print arrows above (for bullish) and below (for bearish) the candles that are "shaved" candles. The candle closes all the way at the top or bottom of the candle
Can you convert 2 think or swim indicators into one ninja trader strategy? There are two 1. kst indicators- the lines at the bottom so when the lines cross above (kst crossing above the signal line) we would buy and if it crosses below we would sell. 2. Reversal: green reversal buy and the red one we sell The ninja strategy Buy: green reversal or kst crossing above the signal line whichever comes first Sell: red
Hello, I need some help with my ninja script I have a pine script strategy I’m trying to convert to ninja script strategy. I done it but the profits are not matching and the reason I’m seeing is it’s difficult to set both a SL and Trailing Stop simultaneously and my strategy needs those
Hello, I am looking for a programmer who can convert from pine script to mql5. You will receive 11 different trading view indicators to convert to Mql5. You may find them simple and straightforward or not. However, you will add unified alert system to simplify things on mql5 and to alert whenever there is a buy or sell instance on the main chart for each indicator. Only 1 of the indicators may require some extra
There is an TradingView Indicator (We don't have PineScript), based on which we have created MQ5 indicator that works well with MT5. However, there are few other things which we couldn't able to figure out from the TradingView Indicator. So, we need someone to crack those things and implement with our existing MQ5 indicator. Once we replicate all functionalities from TradingView indicator to MQ5, we have a plan to
I'm looking for a highly skilled and professional MQL4/MQL5 developer to perform the project below 1.Convert one MT4 EA to MT5 *I will provide the MQL4 source code *The EA trading is martingale EA *Need to work exactly like MT4 *Will perform test run for 1month after done conversion *Payment will be make after test run
프로젝트 정보
예산
30 - 80 USD
개발자에게
27
- 72
USD
기한
로 2 일