0% found this document useful (0 votes)
2K views13 pages

AlgoPoint Signals

A
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views13 pages

AlgoPoint Signals

A
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 13

//@version=5

indicator("AlgoPoint Signals", overlay=true, precision=0,


explicit_plot_zorder=true, max_labels_count=500)
// Get user input
emaEnergy = input.bool(true, "EMA Energy")
sensitivity = input.float(2.8, " Sensitivity (0.5 - 10)", 0.5, 10, step=0.1)
keltner_length = input(10, "Keltner Channel Length")
atrPeriod = input(10, "ATR Length")
factor = input.float(3.5, "Factor", step = 0.01)
showwatermark = input.bool(true,'Watermark')
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

// Keltner Channel function


keltner_channel(src, length) =>
ma = ta.sma(src, length)
rangec = high - low
upper = ma + rangec
lower = ma - rangec
[upper, lower]
randwatermark = math.round(math.random(1,3,6))
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

// Modified Supertrend function using Keltner Channel


title = randwatermark == 3 ? 'Social Accounts' : 'This Algo Created By AlgoPoint'
supertrend(_src, factor, atrLen, kel_length) =>
[upperKeltner, lowerKeltner] = keltner_channel(_src, kel_length)
rangec = upperKeltner - lowerKeltner
upperBand = _src + factor * rangec
lowerBand = _src - factor * rangec
prevLowerBand = nz(lowerBand[1])
prevUpperBand = nz(upperBand[1])
lowerBand := lowerBand > prevLowerBand or close[1] < prevLowerBand ?
lowerBand : prevLowerBand
upperBand := upperBand < prevUpperBand or close[1] > prevUpperBand ?
upperBand : prevUpperBand
int direction = na
float superTrend = na
prevSuperTrend = superTrend[1]

if na(rangec[1])
direction := 1
else if prevSuperTrend == prevUpperBand
direction := close > upperBand ? -1 : 1
else
direction := close < lowerBand ? 1 : -1
superTrend := direction == -1 ? lowerBand : upperBand
[superTrend, direction]
// Get Components
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
subtitle = randwatermark == 1 ? 'Get 20% discount with ALGO20 coupon for your next
purchase' : randwatermark == 2 ? 'Get All Leaked Codes:
www.algopoint.mysellix.io' : randwatermark == 3 ? 'Website: algopoint.mysellix.io \
nInstagram: @algopoint \nYoutube: @algopoint ' : 'Get All Leaked Codes:
www.algopoint.mysellix.io'
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema1 = ta.ema(high, 9)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema2 = ta.ema(high, 12)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema3 = ta.ema(high, 15)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema4 = ta.ema(high, 18)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema5 = ta.ema(high, 21)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema6 = ta.ema(high, 24)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema7 = ta.ema(high, 27)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema8 = ta.ema(high, 30)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema9 = ta.ema(high, 33)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema10 = ta.ema(high, 36)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema11 = ta.ema(high, 39)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema12 = ta.ema(high, 42)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema13 = ta.ema(high, 45)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema14 = ta.ema(high, 48)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ema15 = ta.ema(high, 51)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

// Colors
green = #2BBC4D, red = #C51D0B
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
emaEnergyColor(ma) => emaEnergy ? (close >= ma ? green : red) : na
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

// Plots
plot(ema1, "", emaEnergyColor(ema1), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema2, "", emaEnergyColor(ema2), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema3, "", emaEnergyColor(ema3), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema4, "", emaEnergyColor(ema4), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema5, "", emaEnergyColor(ema5), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema6, "", emaEnergyColor(ema6), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema7, "", emaEnergyColor(ema7), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema8, "", emaEnergyColor(ema8), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema9, "", emaEnergyColor(ema9), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema10, "", emaEnergyColor(ema10), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema11, "", emaEnergyColor(ema11), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema12, "", emaEnergyColor(ema12), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema13, "", emaEnergyColor(ema13), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema14, "", emaEnergyColor(ema14), editable=false)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plot(ema15, "", emaEnergyColor(ema15), editable=false)
[supertrend, direction] = supertrend(close, sensitivity, 11, keltner_length)
textstylist = table.new('bottom' + '_' + 'right', 1, 3)
bull = ta.crossover(close, supertrend)
bear = ta.crossunder(close, supertrend)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
y1 = low - (ta.atr(30) * 2)
y2 = high + (ta.atr(30) * 2)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
//=============================================================================
// INDICATOR 11 - Trend Confidence
//============================================================================
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

// CCI
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
TM_Long = ta.cci(close, 5) > 0
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
TM_Short = ta.cci(close, 5) < 0
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

//color1 = ta.cci(close, 5) >= 0 ? #0022FC : #FC0400


//plot(MagicTrend, color=color1, linewidth=3)

// ADX
lenadx = 14
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
lensig = 14
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
limadx = 18
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

ADX_up = ta.change(high)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ADX_down = -ta.change(low)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
trur = ta.rma(ta.tr, lenadx)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
plus = fixnan(100 * ta.rma(ADX_up > ADX_down and ADX_up > 0 ? ADX_up : 0, lenadx) /
trur)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
minus = fixnan(100 * ta.rma(ADX_down > ADX_up and ADX_down > 0 ? ADX_down : 0,
lenadx) / trur)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
sum = plus + minus
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
adx = 100 * ta.rma(math.abs(plus - minus) / (sum == 0 ? 1 : sum), lensig)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

macol = adx > limadx and plus > minus ? color.lime : adx > limadx and plus <
minus ? color.red : color.black
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ADX_Long = adx > limadx and plus > minus
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ADX_Short = adx > limadx and plus < minus
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

//Acumulation/Distribution
ACC_Dist = ta.sma(ta.accdist, 21)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ACC_Long = ta.accdist > ACC_Dist
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
ACC_Short = ta.accdist < ACC_Dist
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

// MFI
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
MFI = ta.mfi(close , 14)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
MFI_SMA = ta.sma (MFI, 9)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
MFI_Long = MFI > MFI_SMA
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
MFI_Short = MFI < MFI_SMA
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
// Momentum Linear Regression

mom = ta.mom(close, 10)


// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
lrmom = ta.linreg(mom, 14, 0)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]

MOML_Long = lrmom > lrmom[1]


// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
MOML_Short = lrmom < lrmom[1]
if showwatermark
table.cell(textstylist, 0, 0, title, 0, 0, #b2b5be80, 'right',
text_size='large', bgcolor=color.new(color.blue, 100))
table.cell(textstylist, 0, 1, subtitle, 0, 0, #b2b5be80, 'right',
text_size='normal', bgcolor=color.new(color.blue, 100))
//
entry_long = true
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
entry_short = true
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
Long_Signal_Strength = 0
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
Short_Signal_Strength = 0
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
if entry_long
if TM_Long
Long_Signal_Strength += 1
if ADX_Long
Long_Signal_Strength += 1
if ACC_Long
Long_Signal_Strength += 1
if MFI_Long
Long_Signal_Strength += 1
if MOML_Long
Long_Signal_Strength += 1
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
if entry_short
if TM_Short
Short_Signal_Strength += 1
if ADX_Short
Short_Signal_Strength += 1
if ACC_Short
Short_Signal_Strength += 1
if MFI_Short
Short_Signal_Strength += 1
if MOML_Short
Short_Signal_Strength += 1
//Plot Buy/Sell Signals on chart
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
enter_Long_Text = "Buy\n" + str.tostring(Long_Signal_Strength)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
enter_Short_Text = "Sell\n" + str.tostring(Short_Signal_Strength)
// This code is created by algopoint. All other leaked algos is available at
algopoint.mysellix.io
// AlgoPoint Official Contact Adrress
// Instagram: algopoint
// Instagram: algopoint01
// Website: algopoint.mysellix.io
// Mail: [email protected]
//buy = bull ? label.new(bar_index, y1, text = enter_Long_Text, xloc =
xloc.bar_index, yloc = yloc.belowbar, color = #22c829, , textcolor = color.white,
size = size.normal) : na
//sell = bear ? label.new(bar_index, y2, text = enter_Short_Text, xloc =
xloc.bar_index, yloc = yloc.abovebar,color = #d31d1d, Style =
label.style_label_down, textcolor = color.white, size = size.normal) : na
//buy = bull ? label.new(bar_index, low - (100 * syminfo.mintick), yloc =
yloc.belowbar, text = enter_Long_Text, color = #22c829 , textcolor = color.white,
style = label.style_label_up)
//sell = bear ? label.new(bar_index, high + (100 * syminfo.mintick), yloc =
yloc.abovebar, text = enter_Short_Text, color = #d31d1d, textcolor = color.white,
style = label.style_label_down)
if bull
label.new(bar_index, low - (100 * syminfo.mintick), yloc = yloc.belowbar, text
= enter_Long_Text, color = #22c829 , textcolor = color.white, style =
label.style_label_up)

if bear
label.new(bar_index, high + (100 * syminfo.mintick), yloc = yloc.abovebar, text
= enter_Short_Text, color = #d31d1d, textcolor = color.white, style =
label.style_label_down)

You might also like