Hello everyone, I watch this indicator from TRADINGRUSH (He design this indicator is not my own) BeepBoop,
I want to use it in my strategy on MT4, because i dont use tradingview
This is the code he has on Tradingview:
//(Improved) Beep Boop Indicator for Trending Markets
//New and Improved version of the Beep Boop Indicator
//
//@version=4
study(title="Beep Boop", shorttitle="Beep Boop", resolution="")
fast_length = input(title="Fast Length", type=input.integer, defval=12)
slow_length = input(title="Slow Length", type=input.integer, defval=26)
EMATrend = input(title="EMA Trend", type=input.integer, defval=50)
src = input(title="Source", type=input.source, defval=close)
signal_length = input(title="Signal Smoothing", type=input.integer, minval = 1, maxval = 50, defval = 9)
sma_source = input(title="Simple MA(Oscillator)", type=input.bool, defval=false)
sma_signal = input(title="Simple MA(Signal Line)", type=input.bool, defval=false)
ema_signal = input(title="Simple MA(Signal Line)", type=input.bool, defval=false)
col_grow_above = #26A69A
col_grow_below = #FF0000
col_fall_above = #FFFFFF
col_fall_below = #FFFFFF
col_macd = #0094ff
col_signal = #ff6a00
variant_doubleema(src,len) =>
v2 = ema(src, len)
v6 = 2 * v2 - ema(v2, len)
v6
variant_zerolagema(src, len) =>
price = src
l = (len - 1) / 2
d = (price + (price - price[l]))
z = ema(d, len)
z
//fast_ma = sma_source ? sma(src, fast_length) : ema(src, fast_length)
//slow_ma = sma_source ? sma(src, slow_length) : ema(src, slow_length)
//macd = fast_ma - slow_ma
//signal = sma_signal ? sma(macd, signal_length) : ema(macd, signal_length)
fast_ma = sma_source ? sma(src, fast_length) : ema_signal ? ema(src, fast_length) : variant_doubleema(src, fast_length)
slow_ma = sma_source ? sma(src, slow_length) : ema_signal ? ema(src, slow_length) : variant_doubleema(src, slow_length)
macd = fast_ma - slow_ma
signal = sma_signal ? sma(macd, signal_length) : ema_signal ? ema(macd, signal_length) : variant_doubleema(macd, signal_length)
hist = macd - signal
histplot = hist
if (hist > 0)
hist := 0.1
if (hist < 0)
hist := 0.09
//fastMA = ema(close, EMATrend)
fastMA = ema_signal ? ema(close, EMATrend) : variant_doubleema(close, EMATrend)
//fastMA = 0
plot(hist, title="Histogram", style=plot.style_columns, color=(hist == 0.1 ? ((hist == 0.1) and (close > fastMA) and (open > fastMA) and (low > fastMA) ? col_grow_above : col_fall_above) : ((hist == 0.09) and (close < fastMA) and (open < fastMA) and (high < fastMA)? col_grow_below : col_fall_below) ), transp=0 )
plot(histplot)
相似订单
Job Title: MT5 Expert Advisor for ICT Strategy with Fair Value Gap and Risk Management Job Description: I’m looking for a skilled MQL5 developer to create an MT5 Expert Advisor (EA) based on an ICT-style strategy that trades XAUUSD using multi-timeframe market structure and Fair Value Gap detection. Key features: 4H market direction using BOS/CHOCH 2H/1H detection of FVGs (gap between candle 1’s high and candle 3’s
1. Define the Reversal Pattern Tell them exactly which candlestick pattern you want to detect. For example: "I want to detect a Bullish Engulfing pattern: a bearish candle followed by a larger bullish candle that fully engulfs the body of the previous candle." Or: "I want to detect a Hammer pattern: a small body near the top of the candle with a long lower wick (at least twice the size of the body), and little to no
Техническое задание описывает необходимые функциональные изменения и дополнения существующего экспертного советника (EA), работающего на основе дивергенций (RSI/MACD) и использующего 8 различных вариантов открытия позиций. Цель задания - расширить функциональность советника таким образом, чтобы он мог: 1. Использовать внешний индикатор “All-in-One Candlestick Pattern Scanner” через функцию bridge для получения
Session Block Volatility D=TickVolumesInBlock/t(hrs(3)) ; in session block we will add tick volumes for the entire block r=D/2 ; this is radius of our absolute diameter VB=π.r^2.h/t(mins(180)) ; this is our equation for VB in each block, here we will divide by mins(180, constant) h=height(high-low %change in session block as is) then we will find Avg VB in time series of entire blocks in sessions(H1,H2,H3,H4) then
I would like to have a proof of concept application that allows me to take prices from MT5 into my own application, to enter orders from my application to my broker via the MT5 connection and to see my filled orders, working orders and P/L in my own application
I am looking for an experienced MQL4 developer to create a rebate farming Expert Advisor (EA) designed to consistently generate a minimum of 2 lots per day on a $500 account with low drawdown and safe logic . The primary goal is volume generation , not profitability — the EA should be optimized to maximize trade count or lot turnover for rebate/cashback purposes, while maintaining account safety. 🧠 Requirements
I would like to order a fully automated scalping EA suitable for Forex. It should open and close trades automatically (up to 20 trades per day) with low risk. It should execute trades Monday through Friday. My broker is Pepperstone Groupe Limited Razor account type and connected to Metatrader 5. I will first try the EA in the demo account for a week before using it in the live account
Looking for an Experienced Pine Script Coder I'm searching for a skilled Pine Script developer to refine and enhance an existing TradingView script which I coded. The goal is to improve structure, readability, and functionality. Tasks: ✔ Clean and optimize existing Pine Script ✔ Improve code structure for better visualization ✔ Re-code where necessary while maintaining accuracy ✔ List all indicators in a dedicated
Hi, I was trying was try to make a ninjatrade statregy and I ran to issues if you take a look at the files, the newstrategy file is connect with the 22062 image - for that strategy I got the ninjascript to desplay delta in the output. My issues is that I bough a 3r party software for orderflow, and I wanted to use stopping volume in the ninjatrade strategy buy I don't know how to access it, I don't know how to write
I run a trading discord and I have a plan for something related to a script/signal but I have no idea how realistic it is as im not very educated on anything in that realm. If I ran and idea by you , could you anyone me if its a service you can provide? and im wondering if pieces of that strategy can be turned into discord channel alerts rather than a tradingview signal if that makes sense