Building an strategy on tradingview (pine Script)

Other Scripts Outros

Termos de Referência

Hello 


Im looking for someone to build a Strategy for me in Pine Script and also be able to help Webhook it with alerts to Tradestation and Coinbase


For Crypto it will be sent to coinable entering Buy and To alert for Close postion


For Stocks similar as crypto 


Also would like like to be able to have the option to enter Shorts in script for use in futures 


I would like to also have setting in the Script for Settings more so for future use in Futures

1. What market Session to trade only or Times to trade 

2. No trades on News Day / Fed Talk etc.. 

Other to be added 


Very Simple Strategy using EMA Cross and CCI as a confirmation 

Basic Principle to take a long When EMS cross and When CCI is at desired level only 


The CCI i like is below : 

//@version=5
indicator(title="Commodity Channel Index", shorttitle="CCI", format=format.price, precision=2, timeframe="", timeframe_gaps=true)
length = input.int(20, minval=1)
src = input(hlc3, title="Source")
ma = ta.sma(src, length)
cci = (src - ma) / (0.015 * ta.dev(src, length))
plot(cci, "CCI", color=#2962FF)
band1 = hline(100, "Upper Band", color=#787B86, linestyle=hline.style_dashed)
hline(0, "Middle Band", color=color.new(#787B86, 50))
band0 = hline(-100, "Lower Band", color=#787B86, linestyle=hline.style_dashed)
fill(band1, band0, color=color.rgb(33, 150, 243, 90), title="Background")

ma(source, length, type) =>
switch type
"SMA" => ta.sma(source, length)
"EMA" => ta.ema(source, length)
"SMMA (RMA)" => ta.rma(source, length)
"WMA" => ta.wma(source, length)
"VWMA" => ta.vwma(source, length)

typeMA = input.string(title = "Method", defval = "SMA", options=["SMA", "EMA", "SMMA (RMA)", "WMA", "VWMA"], group="Smoothing")
smoothingLength = input.int(title = "Length", defval = 5, minval = 1, maxval = 100, group="Smoothing")

smoothingLine = ma(cci, smoothingLength, typeMA)
plot(smoothingLine, title="Smoothing Line", color=#f37f20, display=display.none)




The EMA Cross i like is Below: 

//@version=3

strategy("EMA Strategy 13 48", shorttitle = "EMA Strategy 13 48", overlay=true, pyramiding = 3,default_qty_type = strategy.percent_of_equity, default_qty_value = 1000)


// === Inputs ===
// short ma
maFastSource = input(defval = close, title = "Fast MA Source")
maFastLength = input(defval = 13, title = "Fast MA Period", minval = 1)

// long ma
maSlowSource = input(defval = close, title = "Slow MA Source")
maSlowLength = input(defval = 48, title = "Slow MA Period", minval = 1)


// === Vars and Series ===
fastMA = ema(maFastSource, maFastLength)
slowMA = ema(maSlowSource, maSlowLength)

plot(fastMA, color=blue)
plot(slowMA, color=purple)

goLong() => crossover(fastMA, slowMA)
killLong() => crossunder(close, fastMA)
strategy.entry("Buy", strategy.long, when = goLong())
strategy.close("Buy", when = killLong())

// Shorting if using
goShort() => crossunder (fastMA, slowMA)
killShort() => crossover(fastMA, slowMA)
//strategy.entry("Sell", strategy.short, when = goShort())
//strategy.close("Sell", when = killShort())



KEEP IN MIND WHILE I KNOW THIS IS SIMPLE I WANT TO WORK WITH SOMEONE THAT WILL MAKE EDITS AND HELP WITH THIS AFTER BUILT 

Respondido

1
Desenvolvedor 1
Classificação
(4)
Projetos
9
11%
Arbitragem
4
0% / 75%
Expirado
1
11%
Carregado
Pedidos semelhantes
Hi, I need someone that can help me with a script in python for $SPY option strategy. Kindly let me know if you can and we proceed. It is needed urgently if you can do this project kindly drop a message in the comment sessions
Looking for a well versed Tradingview and python expert with good reviews to take up this project I have multiple watchlists with 10-50 stocks in each watchlist I have an indicator (pine script ) Plus 2-3 other parameters can we code an indicator or a system in python or wherever , giving alert every 15 mins and scanning for all buy signals every 15 mins ?? any platform .. python / excel / vb/ trading view
I want to develop metatrader to trading bot and i want an expert that has experience in this field that can do the work perfect well for me without error
Tradingview indicator 30 - 50 USD
Looking for a tradingview expert to do a quick job . It is an indicator so apply only if you are capable. Price is negotiable Check attached file and proofs that you can get it done perfectly
NinjaTrader 8 indicator that plots open prices of higher time frame bars. Time frames to choose from in the properties: 15sec, 30sec, 1min, 5min, 15min, 30min, 1hr, 4hr, 1day, 1week, 1month, 1 year (or any time based periods if that would make the development easier). Ability to customize lines is needed (style, color, thickness, etc.). Also, ability to extend certain lines all the way to the right by clicking on
Instrument I will trade: DAX Chart: 9 ranges (on Quantower) with 18 ranges (on multichart) Indicators: VWAP, Stocatic slow set (5/3/3) ,a 20-period exponential moving average, a 30-period exponential moving average N.B. “Momentum” indicator to be constructed only for convenience: When the 20 average is above the 30 it draws a single green 25 period average, while when the 20 average is below
I have a Trading View Strategy which is working well. Now, i want to Convert my trading platform to Meta trader. I need an Experienced Expert for Conversion. If this sounds as something that interest you, you can respond to my message
My trading platform is showing some list of error and i want want to add some features to correct the Error. I need an Expert in this field with Experience to fix the issues for me Below is the Source File
Looking for a tradingview expert to quickly code a 8 lined description for me (alert based) Apply if you are a proven expert in tradingview and have time to deliver this project under 2_3 days. I'll provide the file to the expert
Hello, I'm looking for someone to build an EA that will copy trades from MT4 & 5 over to DX trade and Match Trader. If you already have one built even better, I'll buy it. Talk soon

Informações sobre o projeto

Orçamento
30 - 100 USD
Prazo
para 1 dias

Cliente

(1)
Pedidos postados7
Número de arbitragens0