Write Tradingview Pine Script Code

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
Оценка
(23)
Проекты
34
21%
Арбитраж
15
27% / 67%
Просрочено
6
18%
Свободен
Похожие заказы
La entrada se produce cuando el precio cumple una condición sencilla. La salida se ejecuta por dos posibles condiciones excluyentes del tipo STOP+REVERSO con liquidación al cierre. Será aplicable SL y TP
Good day! NOTE: BUDGET NOT A CONSTRAINT FOR THE RIGHT DEVELOPER!!! I HAVE SIMPLY ENTERED $50 AS A ROUGH ESTIMATE. The Indicator provides no buffers but does have an event function. Can download and look at the Demo version. https://www.mql5.com/en/market/product/73721?source=Site+Market+MT4+Search+Rating006%3aGann 1. EA to buy and sell on the arrows of the indicator (Red or Green) 2. The Option of using the
I hope this message finds you well. I am currently seeking an experienced MQL developer to work on a project that involves modifying an existing trading robot and creating a new version with specific enhancements and customizations. I have the source code of a trading robot that I would like to modify. Requirements: Experience with MQL4 and MetaTrader 4 platform. Strong understanding of trading algorithms and
This is a Ready Made grid Automatic EA 1.Need some bug fixing and little modification. This EA has some bug like -Place Random Trade after MT4 Restart . Also not follow custom parameter grid distance, grid slippage . like if i set 300pips grid distance, some time it place trade at 400 pips distance . fix this bug 2.first trade open by RSI logic if rsi30 open buy trade Add Revise Order mode. (anti-martingle grid )
Gaku MT5 EA 30+ USD
I need an MQL5 EA with the same attributed / settings when you install on MT5. Link to the Indicator: Download the 'MA3 Trend MT5' Technical Indicator for MetaTrader 5 in MetaTrader Market (mql5.com) Also add to the settings attached Word document. Buy and Sell Order: 5 and 15 min should have same color. Same for Sell Trade
MA based two EA versions . Version 1.1 is limited price trading method.- The default SL value does not change. Version 3.1 is a Trailing SL method: When proceeding in the direction of profit, the stop loss line goes up. However, the stop loss amount does not change. EA's trading method can be named as above. work :-- In 3.1 version convert to mt5. Add Trading method options - drop down 2 types - Trailing SL method
I want someone who is really skilled at making zigzag indicators,because I want a zigzag that does not ignore any zigzag that occurs. Please, if you are a beginner, do not offer me an offer. I want someone skilled in zigzag indicators. Very important: I do not want the dull methods that beginners use to draw zigzags
I want someone who is really skilled at making zigzag indicators,because I want a zigzag that does not ignore any zigzag that occurs. Please, if you are a beginner, do not offer me an offer. I want someone skilled in zigzag indicators. Very important: I do not want the dull methods that beginners use to draw zigzags
In the Relative Strength Index(RSI) there will be levels 80 overbought and 20 over sold.. I want this two moving averages(MA) (period: 10, method: exponential,apply to: close )and(period: 200, method: exponential,apply to: close ) in the RSI box.. If the MA 10 reaches overbought area level 80 in the RSI and crosses below MA 200 in the overbought level 80.. can be applied to all timeframes.. a automated sell order is
The task is as follows: Create and EA, preferably in python, that can connect to MT5 (via API), with the following criteria: -Scans a multitude of triangular currency pairs (EUR/USD, USD/JPY, EUR/JPY as an example), and finds differences between the implied rate via the use of two currencies, ie in the example case EUR/USD*USD/JPY, and the actual rate. -Takes positions in a market neutral nature (short/long postions)

Информация о проекте

Бюджет
30 - 100 USD
Исполнителю
27 - 90 USD
Сроки выполнения
до 2 дн.