Building an strategy on tradingview (pine Script)

Other Scripts Other

Specification

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 

Responded

1
Developer 1
Rating
(3)
Projects
8
13%
Arbitration
4
0% / 75%
Overdue
1
13%
Loaded
Similar orders
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. If you already have one built even better, I'll buy it. Talk soon
Hello . Im in need of a script/ea/program whatver it might be, that creates a screenshot of my rectangle box that ive placed on the chart in mt5. For example if i draw a rectangle on the h4 timeframe from 2024 till 2021 it should screenshot the entire rectangle with the info. It should output it as png image
I need someone who can help me with the development of indicator on SMC concept. If you can do this job kindly send me a message and let's further our discussion
Hi There - I require a forex martingale calculator which will advise the correct trade setup as per my risk\reward money management rules. The calculator should have fields allowing me to input 1) Account Equity 2) Initial trade size 3) Pip step for next trade ie trade size multiplier 4) Maximum number of trades It should then calculate for me... what the result would be after x number of pips ie what the what the
Helllo!!! I have a tradingview indicator that I would like to do some modifications..Kindly bid this if you are available and all the necessary informations needed will be sent directly via the chat box..looking forward
Hello there and how have you been !!I I need a developer who is ready to take up a project ..I would like to convert Ninjatrader indicator to Tradingview all the details about the project will be sent directly to you via the inbox…
Hey Greetings. Am in need of a developer with experience in Tradingview that have successfully developed a profitable strategy for tradingview . I willing to buy already made profitable strategy for tradingview. If you have one or had develop some . Kindly apply for the job and let discuss about the price and timeline. Thanks
I need someone who have experience in building a stock trading robot? Specifically, I want to build a robot for trading in options from a foreign exchange. I think the first thing that has to be checked is the possibility to connect to the trading platform. I understand it is called FMR. Then we can start to discuss what the robot has to do exactly. basically, it has to search the table of options and look for
can you help me with a task i want an example script that basically uses python to interact with ninja trader so that it can gather / collect data from different workspaces. write a script for connection and fetching data from all the workspaces that account has

Project information

Budget
30 - 100 USD
Deadline
to 1 day(s)

Customer

(1)
Placed orders7
Arbitrage count0