Building an strategy on tradingview (pine Script)

Other 脚本 其它

指定

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 

反馈

1
开发者 1
等级
(4)
项目
9
11%
仲裁
4
0% / 75%
逾期
1
11%
已载入
相似订单
I need someone who can help me with my ninjatrader code file and set up if you can be of help contact me in the comment session this project is needed urgently all requirement will be discussed in the chat bot
Hello how are you doing? Can you help me with a projects connecting trend lines to pivot points on a wave, for trendlines, color detention, and dynamic visualization? I have a project I’d like you to look at. I need a pine script code to capture the different Trendline colors that cross both above and below horizontal lines on the wave indicator
Hello how are you doing? Can you help me with a projects connecting trend lines to pivot points on a wave, for trendlines, color detention, and dynamic visualization? I have a project I’d like you to look at. I need a pine script code to capture the different Trendline colors that cross both above and below horizontal lines on the wave indicator
I need someone to provide a bot for adding telegram members from a group to another group. Or someone to do this for my defined groups. I need real and active members and real service. Fake adding can not be accepted
I'm in need of an expert in Pinescript and Amibroker Formula Language who can work on TradingView platform to code my trading strategies. Specifically, this includes two distinct strategies: 1. Demand and Supply Strategy 2. Breakout Strategy more details on message
Hello, I'm in need of a developer to code a telegram bot for me. I need it to send closed and/or opened trades info to a telegram channel. Let me know if this is within your expertise so we can discuss on how best to proceed. I look forward to amazing work experience. Thank you
Hello, I need someone to create a script with these parameters in Tradestation (EasyLanguage). Here's what I'm trying to achieve: STRATEGY: I will manually select and sell an OTM naked call. My goal is to let it expire OTM. However if price goes past the strike, this strategy will buy and sell 100 shares of the underlying to minimize risk that I have to buy/sell shares at a higher price. What I want EasyLanguage to
Hello Greetings Am in need of a developer that can sell already made profitable Renko chart strategy for Tradingview. KIndly apply for this Job if you have already made renko chart strategy and let discuss about the price Thanks
Tradingview php 30 - 100 USD
Hello i need to integrate the chart of tradingview in my website, with php if possible is there any developer that have knowlodge also in php here? please send me a message
Hello Our trade copier only allows a user to trade one TradeLocker account to another INTERNAL TradeLocker account. We need a trade copier for TradeLocker that allows users to trade copy from one TradeLocker account to another EXTERNAL TradeLocker account. Please give us your bid and you experience about this type of jobs

项目信息

预算
30 - 100 USD
开发人员
27 - 90 USD
截止日期
 1 天