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
Похожие заказы
Project Summary: Create an alert-only MT4 EA for XAU/USD (5-minute chart) that detects a specific sequence of price action events and sends push notifications and optional sound/Telegram alerts when all conditions are met. ⸻ 1. Inputs / Settings • Enable/Disable Alerts → Boolean (true/false) • FVG minimum width (pips) → Default 2 • Order Block maximum width (pips) → Default 30 • Optional time filter → Default
I need a gambling bot that implements the Martingale Strategy for betting on roulette. It will be used on platforms like Betcity and Unibet to manage bets effectively. Scope of work - Develop a bot that implements the Martingale Strategy for roulette. - Ensure compatibility with Betcity and Unibet platforms. - Include functionalities for adjusting bet size and managing losses. - Integrate platform-specific features
We are a global, retail Forex brokerage operating in emerging markets. We run a lean, remote-first team and grow through trading communities, partners, and performance-driven execution. We’re looking for a hands-on Business Development Lead to own and scale growth through IBs, trading communities, and partner channels. This is a player-coach role focused on execution, not theory. What You’ll Do Recruit and manage
I trade currency pairs (EU, UJ, UCAD). Is there anyone who has an EA/BOT that trades in one direction only (buy or sell) within a specific time window (for example H2, H4, or H6) and achieves optimal performance when using a one-direction strategy? Please contact me — I’m open to buying the bot or hiring someone to code it . Tks all
Hello everyone, I am looking for an expert who is experienced with the Matriks IQ platform for the Turkish stock market. The project requires proficiency in C# coding within this environment. If you have prior experience or have developed algorithms on this platform, please reach out to me so we can discuss the details. Regards
1. Indicators, entries, & exits Strategy uses two Pivot Points Standard indicators (TradingView). The indicator has many options for pivot points/levels. Such as Fibonacci, Traditional, Classic, DM, etc. We can choose to either use one indicator with one pivot points/levels, or we can choose to use both indicators with two different options for pivot points/levels. there are two ways to enter
I would like to purchase a profitable MQL5 EA bot. The EA shouldn't use Grid, Martingale or other risky hedging techniques. It should be able to generate consistent profits over the long run. While you bid, please provide a concise description of how the EA works and send a demo file. It could be restricted only to the tester for now. Thank you