Can you help my tradingview indicator use on mt5 ???

 

Hello everyone.. I want use below indicator on MT5 EA this is possible..? 



//@version=5

indicator("ALİ ALT BUY DENEME", overlay = true)
Kol_Linii = input(2, "Количество линий")

Signal = open[3] > close[3] and open[2] > close[2] and open[1] > close[1] and close > open and low[1] < low and low[1] < close[1] and low < open

longCondition = (Signal)
long = (longCondition)
alertcondition (long, title='long', message='LONG')


X_for_LINIA = ta.valuewhen(Signal, bar_index, 0)
Y_for_LINIA = ta.valuewhen(Signal, low, 0)

var b = array.new_float()
array.push(b, Y_for_LINIA)

peresechenie = ta.crossover(close, Y_for_LINIA)
var p = array.new_bool()
array.push(p, peresechenie)

var ArrayLine = array.new_line()

if Signal
LINIA = line.new(X_for_LINIA, Y_for_LINIA,X_for_LINIA+1,Y_for_LINIA, extend = extend.right, color = #e01414, width = 2, style = line.style_dotted)
array.push(ArrayLine, LINIA)
if array.size(ArrayLine) > 0
NumberOfLine = array.size(ArrayLine)
Complete = false
Index = NumberOfLine - 1
while not(Complete)
Line = array.get(ArrayLine, Index)
if line.get_y1(Line) > close
line.delete(Line)
array.remove(ArrayLine, Index)
Index := Index - 1
if Index < 0
Complete := true
 
aouzumcu Uzumcu: . I want use below indicator on MT5 EA this is possible..?

No, it is not. It must be written in MQL5.

You have only four choices:

  1. Search for it (CodeBase or Market). Do you expect us to do your research for you?

  2. Try asking at:

  3. MT4: Learn to code it.
    MT5: Begin learning to code it.

    If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into your code.
              I need HEEEELP, please, it's URGENT...really ! - General - MQL5 programming forum (2017)

  4. Or pay (Freelance) someone to code it. Top of every page is the link Freelance.
              Hiring to write script - General - MQL5 programming forum (2019)

We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using CODE button) and state the nature of your problem.
          No free help (2017)

 
Ist Even Not Compile in TradingView