Building an strategy on tradingview (pine Script)

Other Komut dosyaları Diğer

İş Gereklilikleri

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 

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(4)
Projeler
9
11%
Arabuluculuk
4
0% / 75%
Süresi dolmuş
1
11%
Yüklendi
Benzer siparişler
We are seeking a cTrader EA/cBot developer to create a sophisticated trading system based on specific indicators and strategies. This system will incorporate dynamic linear regression channels, RSI signals, and meticulous risk management for profitable and sustainable trading outcomes. Key Responsibilities: Design and implement a cTrader EA/cBot that accurately aligns with provided trading system specifications
Hello programmer, I need someone that can help me with my ea project. I want to do ea Only reverse engineering (writing from scratch by analyzing the algorithm), without decompilation
Hello programmer, I need someone that can help me with my ea project. I want to do ea Only reverse engineering (writing from scratch by analyzing the algorithm), without decompilation
Hello great developers, I'm in need of an expert to code my telegram bot for me. I have all project details written in a document. Let me know if this in your area of expertise. I look forward to great working expertise. Thank you
A developer is sought to modify an existing EA. The changes to be made are on money management, adding an indicator between conditions, and (not essential) in adding a news filter. EA already works correctly but needs to be optimized
I am looking for a coder to help me code my custom Ninjatrader 8 strategy and make it work perfectly without any error, your expertise is highly needed in this job kindly reach out to me and let proceed
Hello I am looking for a professional in building a stock trading robot and make it work perfectly Specifically, I want to build a robot for trading in options from the IOF your expertise is highly needed in this project Kindly reach out and let proceed
When passing this indicator, the distances of the intersections cannot be important. i.e. if the approach of the ema characters that I have set in the graph converges at a distance, it should be shown to me correctly. it should show the convergence lines of the two intersections without or without the proximity and distance setting and give the necessary time warning.First of all, each ema intersection may need to be
Hello I have a TradingView indicator that is very accurate can you create a bot on NinjaTrader to help me make profitable trades. It is needed urgently if you can help me with this project kindly give me an answer in the comment session
I need Copy Trade program on MT5 to MT5 With Some Condition..... 1. Trade must be on Reverse (IF Master Buy then On Slave is Sell) 2. Custom Lots Size on Slave 3. Symbols Adjustment 4. TP and SL (on Slave TP and SL +.50 Added) 5. Open and Closed Order on Same time(Also On market Condition)

Proje bilgisi

Bütçe
30 - 100 USD
Son teslim tarihi
to 1 gün

Müşteri

(1)
Verilmiş siparişler7
Arabuluculuk sayısı0