Evaluating bids

Indicador para Metatrader4 se encuentra en tradingview se llama pivot reversal strategy

Published on the July 18, 2018 in IT & Programming

About this project

Open

Tengo un proyecto muy simple. Necesito un Script de Vista de Trading específico, Estrategia de Inversión de Pivote (ver el código a continuación) para convertirlo en un indicador para poder agregarle alertas en la Vista de Trading.
Además de poder pasarlo a metatrader4 como indicador

//@version=3
strategy("Pivot Reversal Strategy", overlay=true)
leftBars = input(4)
rightBars = input(2)
swh = pivothigh(leftBars, rightBars)
swl = pivotlow(leftBars, rightBars)
swh_cond = not na(swh)
hprice = 0.0
hprice := swh_cond ? swh : hprice[1]
le = false
le := swh_cond ? true : (le[1] and high > hprice ? false : le[1])
if (le)
[url removed, login to view]("PivRevLE", [url removed, login to view], comment="PivRevLE", stop=hprice + [url removed, login to view])
swl_cond = not na(swl)
lprice = 0.0
lprice := swl_cond ? swl : lprice[1]
se = false
se := swl_cond ? true : (se[1] and low < lprice ? false : se[1])
if (se)
[url removed, login to view]("PivRevSE", [url removed, login to view], comment="PivRevSE", stop=lprice - [url removed, login to view])
//plot([url removed, login to view], title="equity", color=red, linewidth=2, style=areabr)

Category IT & Programming
Subcategory Other
Project size Medium
Is this a project or a position? Project
I currently have I have an idea
Required availability As needed
API Integrations Other (Other APIs)

Delivery term: July 23, 2018

Skills needed

Other projects posted by E. B.