Hi can you convert this indicator to ninjatrade 8 this indicator https://www.tradingview.com/v/EaO08ox7/

Other Dönüştürme

İş Gereklilikleri

 


// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/

// © tista


//@version=4

study(title="Stochastic RSI Divergences", format=format.price)


kPeriod = input(title="K Period", defval=3)

dPeriod = input(title="D Period", defval=3)

stochasticPeriod = input(title="Stochastic Period", defval=14)

rsiPeriod = input(title="RSI Period", defval=14)

lbR = input(title="Pivot Lookback Right", defval=5)

lbL = input(title="Pivot Lookback Left", defval=5)

rangeUpper = input(title="Max of Lookback Range", defval=60)

rangeLower = input(title="Min of Lookback Range", defval=5)

plotBull = input(title="Plot Bullish", defval=true)

plotHiddenBull = input(title="Plot Hidden Bullish", defval=false)

plotBear = input(title="Plot Bearish", defval=true)

plotHiddenBear = input(title="Plot Hidden Bearish", defval=false)


bearColor = color.red

bullColor = color.green

hiddenBullColor = color.green

hiddenBearColor = color.red

textColor = color.white

noneColor = color.new(color.white, 100)


rsi1 = rsi(close, rsiPeriod)

k = sma(stoch(rsi1, rsi1, rsi1, stochasticPeriod), kPeriod)

d = sma(k, dPeriod)

osc = k


plot(k, title="K", linewidth=2, color=color.yellow)

plot(d, title="D", linewidth=2, color=color.white)


plFound = na(pivotlow(osc, lbL, lbR)) ? false : true

phFound = na(pivothigh(osc, lbL, lbR)) ? false : true


_inRange(cond) =>

    bars = barssince(cond == true)

    rangeLower <= bars and bars <= rangeUpper


//------------------------------------------------------------------------------

// Regular Bullish


// Osc: Higher Low

oscHL = osc[lbR] > valuewhen(plFound, osc[lbR], 1) and _inRange(plFound[1])


// Price: Lower Low

priceLL = low[lbR] < valuewhen(plFound, low[lbR], 1)


bullCond = plotBull and priceLL and oscHL and plFound


plot(

plFound ? osc[lbR] : na,

offset=-lbR,

title="Regular Bullish",

linewidth=2,

color=(bullCond ? bullColor : noneColor),

transp=0

)


plotshape(

bullCond ? osc[lbR] : na,

offset=-lbR,

title="Regular Bullish Label",

text=" Bull ",

style=shape.labelup,

location=location.absolute,

color=bullColor,

textcolor=textColor,

transp=0

)


alertcondition(bullCond, title="Regular bullish divergence in OBV found", message="Check charts for a regular bullish divergence found with OBV")


//------------------------------------------------------------------------------

// Hidden Bullish


// Osc: Lower Low

oscLL = osc[lbR] < valuewhen(plFound, osc[lbR], 1) and _inRange(plFound[1])


// Price: Higher Low

priceHL = low[lbR] > valuewhen(plFound, low[lbR], 1)


hiddenBullCond = plotHiddenBull and priceHL and oscLL and plFound


plot(

plFound ? osc[lbR] : na,

offset=-lbR,

title="Hidden Bullish",

linewidth=2,

color=(hiddenBullCond ? hiddenBullColor : noneColor),

transp=0

)


plotshape(

hiddenBullCond ? osc[lbR] : na,

offset=-lbR,

title="Hidden Bullish Label",

text=" H Bull ",

style=shape.labelup,

location=location.absolute,

color=bullColor,

textcolor=textColor,

transp=0

)


alertcondition(hiddenBullCond, title="Hidden bullish divergence in OBV found", message="Check charts for a hidden bullish divergence found with OBV")


//------------------------------------------------------------------------------

// Regular Bearish


// Osc: Lower High

oscLH = osc[lbR] < valuewhen(phFound, osc[lbR], 1) and _inRange(phFound[1])


// Price: Higher High

priceHH = high[lbR] > valuewhen(phFound, high[lbR], 1)


bearCond = plotBear and priceHH and oscLH and phFound


plot(

phFound ? osc[lbR] : na,

offset=-lbR,

title="Regular Bearish",

linewidth=2,

color=(bearCond ? bearColor : noneColor),

transp=0

)


plotshape(

bearCond ? osc[lbR] : na,

offset=-lbR,

title="Regular Bearish Label",

text=" Bear ",

style=shape.labeldown,

location=location.absolute,

color=bearColor,

textcolor=textColor,

transp=0

)


alertcondition(bearCond, title="Regular bearish divergence in OBV found", message="Check charts for a regular bearish divergence found with OBV")


//------------------------------------------------------------------------------

// Hidden Bearish


// Osc: Higher High

oscHH = osc[lbR] > valuewhen(phFound, osc[lbR], 1) and _inRange(phFound[1])


// Price: Lower High

priceLH = high[lbR] < valuewhen(phFound, high[lbR], 1)


hiddenBearCond = plotHiddenBear and priceLH and oscHH and phFound


plot(

phFound ? osc[lbR] : na,

offset=-lbR,

title="Hidden Bearish",

linewidth=2,

color=(hiddenBearCond ? hiddenBearColor : noneColor),

transp=0

)


plotshape(

hiddenBearCond ? osc[lbR] : na,

offset=-lbR,

title="Hidden Bearish Label",

text=" H Bear ",

style=shape.labeldown,

location=location.absolute,

color=bearColor,

textcolor=textColor,

transp=0

)


alertcondition(hiddenBearCond, title="Hidden bearish divergence in OBV found", message="Check charts for a hidden bearish divergence found with OBV")


Yanıtlandı

1
Geliştirici 1
Derecelendirme
(57)
Projeler
72
22%
Arabuluculuk
13
46% / 15%
Süresi dolmuş
5
7%
Ücretsiz
2
Geliştirici 2
Derecelendirme
(3)
Projeler
1
0%
Arabuluculuk
2
0% / 100%
Süresi dolmuş
0
Çalışıyor
Benzer siparişler
👋 Hey, can you help me with code my script which is already working in pine script. moreover, I want a system where I can sell my trading bot and can give access with license. possible
I need to convert custom a indicator, I'm looking to convert from NinjaTrader to Quantower--are you familiar with Quantower and it's coding language? it's a rather simple indicator i just can't code on Quantower and would need that additional help--le me know. thanks
Hey I am in need of a proficient coder who is highly skilled in converting indicators from one trading platform to another, like the one we have here, the indicator is on metatrader 4 and would like to have an expert to convert this mt4 indicator to tradingview pinescript indicator, please if you can't do this kindly ignore this post, only apply just if you are able to do it thanks
I’m looking for someone to convert the orderblock indicator from pinescript to mql5; and than code a EA based on that orderblock indicator, and also a fvg indicator ( that source code I will provide )
Hey I am in need of a proficient coder who is highly skilled in converting indicators from one trading platform to another, like the one we have here, the indicator is on metatrader 4 and would like to have an expert to convert this mt4 indicator to tradingview pinescript indicator, please if you can't do this kindly ignore this post, only apply just if you are able to do it thanks
Hello How are you doing this is indicator that i need to convert it tradingvew... Please let me know if its possible to be converted, please...thanks very much I will be waiting for your response
Hello. I need some csv files contains the trading view historical candles data from 2000 to now in 1M timeframe for some symbols. Collected data should be the exact data that trading view candles reports. Thanks
I need someone to convert my tradingview Indicator to MT5, Its very smiple for Buying and Selling Indicator working fine in TradingView, After the Indicator ready we need to build EA to take the Buy and Sell Value and Open trade automatically in MT5, with all basic input setting including lot size, Automated SL and TP Management: The EA automatically manages the Stop Loss (SL) and Take Profit (TP) levels of open
Hi dear How are you doin?? I like to convert this mql4 indicator to Tradingview pin script Can you do it ?? Are you available for it ?? Thanks very much And waiting for your response
Hi dear How are you doin?? I like to convert this mql4 indicator to Tradingview pin script Can you do it ?? Are you available for it ?? Thanks very much And waiting for your response

Proje bilgisi

Bütçe
40 - 50 USD
Geliştirici için
36 - 45 USD