Convert the TradingView oscillator into an MT5 strategy.

MQL5 Experten

Auftrag beendet

Ausführungszeit 59 Minuten
Bewertung des Entwicklers
Good business. Thanks!

Spezifikation

Hi 

Please convert the oscillator from tradingview to the mt5 strategy. 


The strategy is to open a long position when the Red Oscillator line crosses the lower band from the bottom up (above the value of 0) and close the position when the red oscillator line crosses the upper band from the top down (below the value of 1) and when closing the long position it is to open the position short, i.e. when the red oscillator line crosses the upper band from the top down (below the value 1) and close the short position when the red oscillator line crosses the lower band from the bottom up (above the value 0) (conditions opposite to opening a long position)

The position is to be opened after the candle closes.

If at a given moment we have an open position, e.g. a short position, and the conditions for opening a short position are met again, we do not open the position again but wait for the conditions to close the position to be met (only one position can be open at a given time), this can be seen in the photo where the conditions occurred again to open a short position, but we do not add to the already open position, we wait for it to be closed.

 This is oscillator from tradingview Cycle Channel Oscillator [LazyBear]

//
// @author LazyBear 
// List of my public indicators: http://bit.ly/1LQaPK8
// List of my app-store indicators:  
//
study("Hurst Cycle Channel Clone Oscillator [LazyBear]", shorttitle="HCCCO_LB", overlay=false)
scl_t =  input(10, title="Short Cycle Length?")
mcl_t =  input(30, title="Medium Cycle Length?")
scm =  input(1.0, title="Short Cycle Multiplier?")
mcm =  input(3.0, title="Medium Cycle Multiplier?")
src=input(close, title="Source")
scl = scl_t/2, mcl = mcl_t/2
ma_scl=rma(src,scl)
ma_mcl=rma(src,mcl)
scm_off = scm*atr(scl)
mcm_off = mcm*atr(mcl)
scl_2=scl/2, mcl_2=mcl/2
sct =  nz(ma_scl[scl_2], src)+ scm_off
scb =  nz(ma_scl[scl_2], src)- scm_off
mct =  nz(ma_mcl[mcl_2], src)+ mcm_off
mcb =  nz(ma_mcl[mcl_2], src)- mcm_off
scmm=avg(sct,scb)
ul=plot(1.0, title="UpperLine", color=gray), ml=plot(0.5, title="MidLine", color=gray), ll=plot(0.0, title="LowerLine", color=gray)
fill(ll,ml,color=red), fill(ul,ml,color=green)
omed=(scmm-mcb)/(mct-mcb)
oshort=(src-mcb)/(mct-mcb)
plot(omed>=1.0?omed:na, histbase=1.0, style=histogram, color=purple, linewidth=2, title="MediumCycleOB")
plot(omed<=0.0?omed:na, histbase=0.0, style=histogram, color=purple, linewidth=2, title="MediumCycleOS")
plot(oshort>=1.0?oshort:na, histbase=1.0, style=histogram, color=purple, linewidth=2, title="ShortCycleOB")
plot(oshort<=0.0?oshort:na, histbase=0.0, style=histogram, color=purple, linewidth=2, title="ShortCycleOS")
plot(oshort, color=red, linewidth=2, title="FastOsc")
plot(omed, color=green, linewidth=2, title="SlowOsc")
ebc=input(false, title="Enable bar colors")
bc=(oshort>0.5)?(oshort>1.0?purple:(oshort>omed?lime:green)):(oshort<0?purple:(oshort<omed?red:orange))
barcolor(ebc?bc:na)

In the strategy, i also want to be able to change the input parameters as in the photo


      

Strategy Photo:


 "Visualization of the strategy"

Bewerbungen

1
Entwickler 1
Bewertung
(252)
Projekte
335
71%
Schlichtung
12
42% / 25%
Frist nicht eingehalten
12
4%
Arbeitet
Veröffentlicht: 18 Beispiele
2
Entwickler 2
Bewertung
(320)
Projekte
493
67%
Schlichtung
5
40% / 0%
Frist nicht eingehalten
4
1%
Arbeitet
Veröffentlicht: 8 Beispiele
3
Entwickler 3
Bewertung
(173)
Projekte
184
71%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Ähnliche Aufträge
I need a highly disciplined, low-risk EA for MT4/MT5 that trades only when 100% strategy conditions are met. It must include multi-timeframe trend logic, support/resistance rejection, BOS/CHoCH detection from real swing levels, and a breakout strategy with trailing SL. EA should scan all major pairs (from one chart), trade only during 07:00–16:00 GMT, and skip trades 2 hours before major news. Max 1 trade per pair
a fully automatic Expert Advisor for Scalping Trading. This Expert Advisor The basic strategy starts with Market order in counter trend, but you can change it, in others strategies trend
EA modification 30 - 40 USD
can you help me with fixing errors on my expert advisor. someone made some corrections to the ea but this one (attached below) is not picking the exact 1st pattern and it keeps looking for new ones (not following the rules) but the entry/sl placement is working fine the 38.2 fib has been added the risk calculator is a bit off as well on this one
I am Looking for MT4 or MT5 Sclaper Robot for XAUUSD (GOLD) OR FOREX Pair without Slippage issue and Trade Running minimum 100 Secound close with profit or minor Lost With rate Should be 90 %
I need someone to help me build a private MetaTrader 4 server for training and demos. The setup should look real, allow account management, and simulate trades. Must be experienced with MT4 server simulators and VPS setup
Hello developers, i need a server in training mt4, i want an expert and a long time developer who can work with me with honesty and truth, inbox me only if you can handle the project and understand it
Hi, I’m looking for an experienced developer who can help me set up a private MetaTrader 4 server for educational and training purposes. I need a setup that looks and functions like a real server, with admin access , the ability to manage accounts, simulate trades, and run realistic market conditions for content creation and learning. If you have experience with MT4 server simulators , Windows VPS , and can assist
need a expert advisor for mt5 and need a pine script strategy This indicator is as an evolution of the classic Donchian channel. Pivots are identified using a zigzag structure and graphical markers, with the pivots derived entirely from the behaviour of the channel. A pivot is triggered when the channel flattens, forming a connector point for the next zigzag leg. To avoid weak or insignificant pivots, a depth
need a expert advisor for mt5 and need a pine script strategy This indicator is as an evolution of the classic Donchian channel. Pivots are identified using a zigzag structure and graphical markers, with the pivots derived entirely from the behaviour of the channel. A pivot is triggered when the channel flattens, forming a connector point for the next zigzag leg. To avoid weak or insignificant pivots, a depth
Gold scalper Ea 50+ USD
Hello is any one having Gold Ea please let me know, which should have good scalping result. and should work on real account. if any one have such please connect me

Projektdetails

Budget
50 - 80 USD
MwSt (23%): 11.5 - 18.4 USD
Insgesamt: 61.5 - 98.4 USD
Für die Entwickler
45 - 72 USD
Ausführungsfristen
von 1 bis 3 Tag(e)