I need to Amend tradingview Script
Budget: $10 – $30 USD
I have a TradingView Scrip That needs to be amended to send buy and sell alert to cornix.io to treger short or long trades.
Currently the code has only one alert which can not be recognzed by Coronix.io in order to open a trade.
The Freelancer who is going to work on this project should have experiance in Trading View, Script coding and aware what he is doing as this is will affect the results of the trades.
The code is simple, You can find it here
//@version=5
strategy("BarUpDn Strategy", overlay=true, default_qty_type = strategy.percent_of_equity, default_qty_value = 10)
maxIdLossPcnt = input.float(1, "Max Intraday Loss(%)")
strategy.risk.max_intraday_loss(maxIdLossPcnt, strategy.percent_of_equity)
if (close > open and open > close[1])
strategy.entry("BarUp", strategy.long)
if (close < open and open < close[1])
strategy.entry("BarDn", strategy.short)
//plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_areabr)
Currently the code has only one alert which can not be recognzed by Coronix.io in order to open a trade.
The Freelancer who is going to work on this project should have experiance in Trading View, Script coding and aware what he is doing as this is will affect the results of the trades.
The code is simple, You can find it here
//@version=5
strategy("BarUpDn Strategy", overlay=true, default_qty_type = strategy.percent_of_equity, default_qty_value = 10)
maxIdLossPcnt = input.float(1, "Max Intraday Loss(%)")
strategy.risk.max_intraday_loss(maxIdLossPcnt, strategy.percent_of_equity)
if (close > open and open > close[1])
strategy.entry("BarUp", strategy.long)
if (close < open and open < close[1])
strategy.entry("BarDn", strategy.short)
//plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_areabr)